MENU navbar-image

Introduction

Ecosystem platform API: classifieds, auth, common routes, and Investment Platform module at /api/ecosystem.

Ecosystem API: sidebar groups for /api/ecosystem (startups, feasibility, consulting, commissions). Arabic Markdown: docs/api/*_AR.md; English: docs/api/*_EN.md and .scribe/*.en.md.

Classifieds & core API: routes below use X-AppApiToken from APP_API_TOKEN in .env for many endpoints. countryCode and languageCode query params apply when not set.

Authenticating requests

To authenticate requests, include an Authorization header with the value "Bearer {YOUR_AUTH_KEY}".

All authenticated endpoints are marked with a requires authentication badge in the documentation below.

You can retrieve your token by visiting your dashboard and clicking Generate API token.

Startups

GET api/ecosystem/startups

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/startups" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (500):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "App\\Http\\Resources\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Collections\\Traits\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Resources\\BaseResource.php",
    "result": null,
    "error": "App\\Http\\Resources\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Collections\\Traits\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Resources\\BaseResource.php",
    "exception": {
        "message": "App\\Http\\Resources\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Collections\\Traits\\EnumeratesValues.php on line 458",
        "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Resources\\BaseResource.php",
        "line": 30,
        "code": 0,
        "trace": [
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Collections\\Traits\\EnumeratesValues.php",
                "line": 458,
                "function": "__construct",
                "class": "App\\Http\\Resources\\BaseResource",
                "type": "->",
                "args": [
                    {
                        "id": 15,
                        "user_id": 16,
                        "post_id": null,
                        "country_code": "SA",
                        "slug": "mirsal-logistics",
                        "name": "مرسال الشحن",
                        "tagline": "شبكة نقل برية مبردة",
                        "description": "شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).",
                        "sector": "logistics",
                        "stage": "seed",
                        "status": "fundraising",
                        "website": "https://demo.platform.test/mirsal-logistics",
                        "logo_path": null,
                        "pitch_deck_path": null,
                        "founded_year": 2021,
                        "team_size": 21,
                        "revenue_monthly": "1017000.00",
                        "currency_code": "SAR",
                        "fundraising_target": "7500000.00",
                        "listing_fee_amount": null,
                        "listing_fee_paid_at": null,
                        "listing_fee_order_id": null,
                        "publish_terms_accepted_at": null,
                        "publish_terms_version": null,
                        "fundraising_raised": "2400000.00",
                        "score": "72.00",
                        "visits": 696,
                        "verified_at": "2026-03-21T00:47:32.000000Z",
                        "featured_at": null,
                        "submitted_at": "2026-01-21T00:47:32.000000Z",
                        "approved_at": "2026-02-21T00:47:32.000000Z",
                        "rejection_reason": null,
                        "deleted_at": null,
                        "created_at": "2026-05-21T00:47:32.000000Z",
                        "updated_at": "2026-05-21T00:47:32.000000Z",
                        "owner": {
                            "id": 16,
                            "name": "دانة الخالدي",
                            "username": "demo.founder12",
                            "photo_path": null,
                            "phone_intl": "",
                            "created_at_formatted": "2026-05-22 02:10",
                            "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                            "original_updated_at": null,
                            "original_last_activity": null,
                            "p_is_online": false,
                            "country_flag_url": null,
                            "remaining_posts": null
                        }
                    },
                    0
                ]
            },
            {
                "function": "Illuminate\\Support\\Traits\\{closure}",
                "class": "Illuminate\\Support\\Collection",
                "type": "->",
                "args": [
                    {
                        "id": 15,
                        "user_id": 16,
                        "post_id": null,
                        "country_code": "SA",
                        "slug": "mirsal-logistics",
                        "name": "مرسال الشحن",
                        "tagline": "شبكة نقل برية مبردة",
                        "description": "شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).",
                        "sector": "logistics",
                        "stage": "seed",
                        "status": "fundraising",
                        "website": "https://demo.platform.test/mirsal-logistics",
                        "logo_path": null,
                        "pitch_deck_path": null,
                        "founded_year": 2021,
                        "team_size": 21,
                        "revenue_monthly": "1017000.00",
                        "currency_code": "SAR",
                        "fundraising_target": "7500000.00",
                        "listing_fee_amount": null,
                        "listing_fee_paid_at": null,
                        "listing_fee_order_id": null,
                        "publish_terms_accepted_at": null,
                        "publish_terms_version": null,
                        "fundraising_raised": "2400000.00",
                        "score": "72.00",
                        "visits": 696,
                        "verified_at": "2026-03-21T00:47:32.000000Z",
                        "featured_at": null,
                        "submitted_at": "2026-01-21T00:47:32.000000Z",
                        "approved_at": "2026-02-21T00:47:32.000000Z",
                        "rejection_reason": null,
                        "deleted_at": null,
                        "created_at": "2026-05-21T00:47:32.000000Z",
                        "updated_at": "2026-05-21T00:47:32.000000Z",
                        "owner": {
                            "id": 16,
                            "name": "دانة الخالدي",
                            "username": "demo.founder12",
                            "photo_path": null,
                            "created_at": "2026-05-21T23:10:45.552675Z",
                            "phone_intl": "",
                            "created_at_formatted": "2026-05-22 02:10",
                            "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                            "original_updated_at": null,
                            "original_last_activity": null,
                            "p_is_online": false,
                            "country_flag_url": null,
                            "remaining_posts": null
                        }
                    },
                    0
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Collections\\Arr.php",
                "line": 754,
                "function": "array_map",
                "args": [
                    {},
                    [
                        {
                            "id": 15,
                            "user_id": 16,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "mirsal-logistics",
                            "name": "مرسال الشحن",
                            "tagline": "شبكة نقل برية مبردة",
                            "description": "شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).",
                            "sector": "logistics",
                            "stage": "seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/mirsal-logistics",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2021,
                            "team_size": 21,
                            "revenue_monthly": "1017000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "7500000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "2400000.00",
                            "score": "72.00",
                            "visits": 696,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 16,
                                "name": "دانة الخالدي",
                                "username": "demo.founder12",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:45.552675Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 16,
                            "user_id": 17,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "qimmah-edtech",
                            "name": "قمة التدريب",
                            "tagline": "تدريب مهني معتمد عن بُعد",
                            "description": "شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).",
                            "sector": "edtech",
                            "stage": "seed",
                            "status": "approved",
                            "website": "https://demo.platform.test/qimmah-edtech",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2022,
                            "team_size": 15,
                            "revenue_monthly": "745000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "4500000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "0.00",
                            "score": "70.00",
                            "visits": 680,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 17,
                                "name": "سلمان الشهري",
                                "username": "demo.founder13",
                                "photo_path": null,
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 22,
                            "user_id": 23,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "amlak-fintech",
                            "name": "أملاك للتقنية",
                            "tagline": "تقسيط إيجار تجاري مرن",
                            "description": "شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).",
                            "sector": "fintech",
                            "stage": "series_b",
                            "status": "closed_round",
                            "website": "https://demo.platform.test/amlak-fintech",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2017,
                            "team_size": 42,
                            "revenue_monthly": "1980000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "25000000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "25000000.00",
                            "score": "90.00",
                            "visits": 840,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": "2026-05-14T00:47:32.000000Z",
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 23,
                                "name": "فيصل الجهني",
                                "username": "demo.founder19",
                                "photo_path": null,
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 19,
                            "user_id": 20,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "khayr-agtech",
                            "name": "خير الزراعية",
                            "tagline": "سوق مباشر من المزارع للمستهلك",
                            "description": "شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).",
                            "sector": "agtech",
                            "stage": "seed",
                            "status": "approved",
                            "website": "https://demo.platform.test/khayr-agtech",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2023,
                            "team_size": 14,
                            "revenue_monthly": "697000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "4000000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "0.00",
                            "score": "67.00",
                            "visits": 656,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 20,
                                "name": "أمل الفهد",
                                "username": "demo.founder16",
                                "photo_path": null,
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 17,
                            "user_id": 18,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "wazen-pay",
                            "name": "وازن للمدفوعات",
                            "tagline": "محفظة رواتب للعمالة الميدانية",
                            "description": "شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).",
                            "sector": "fintech",
                            "stage": "pre_seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/wazen-pay",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2023,
                            "team_size": 10,
                            "revenue_monthly": "518000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "3500000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "750000.00",
                            "score": "68.00",
                            "visits": 664,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 18,
                                "name": "غادة البلوي",
                                "username": "demo.founder14",
                                "photo_path": null,
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 18,
                            "user_id": 19,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "bina-proptech",
                            "name": "بناء العقارية",
                            "tagline": "تقدير آلي لقيمة العقارات السكنية",
                            "description": "شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).",
                            "sector": "proptech",
                            "stage": "seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/bina-proptech",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2022,
                            "team_size": 12,
                            "revenue_monthly": "611000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "5000000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "1300000.00",
                            "score": "71.00",
                            "visits": 688,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 19,
                                "name": "تركي الرشيدي",
                                "username": "demo.founder15",
                                "photo_path": null,
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 20,
                            "user_id": 21,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "shams-solar",
                            "name": "شمس للطاقة",
                            "tagline": "تركيب ألواح شمسية للمنازل",
                            "description": "شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).",
                            "sector": "cleantech",
                            "stage": "series_a",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/shams-solar",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2020,
                            "team_size": 29,
                            "revenue_monthly": "1384000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "16000000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "6200000.00",
                            "score": "79.00",
                            "visits": 752,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 21,
                                "name": "بندر السديري",
                                "username": "demo.founder17",
                                "photo_path": null,
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 21,
                            "user_id": 22,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "cartx-ecommerce",
                            "name": "كارتكس",
                            "tagline": "تحسين معدل التحويل للمتاجر",
                            "description": "شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).",
                            "sector": "ecommerce",
                            "stage": "seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/cartx-ecommerce",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2023,
                            "team_size": 11,
                            "revenue_monthly": "561000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "4800000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "950000.00",
                            "score": "66.00",
                            "visits": 648,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 22,
                                "name": "موضي القحطاني",
                                "username": "demo.founder18",
                                "photo_path": null,
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 23,
                            "user_id": 24,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "tibb-labs",
                            "name": "طب لاب",
                            "tagline": "تشخيص مخبري منزلي سريع",
                            "description": "شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).",
                            "sector": "healthtech",
                            "stage": "seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/tibb-labs",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2021,
                            "team_size": 18,
                            "revenue_monthly": "884000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "6500000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "1400000.00",
                            "score": "74.00",
                            "visits": 712,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 24,
                                "name": "منى الحسين",
                                "username": "demo.founder20",
                                "photo_path": null,
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 24,
                            "user_id": 24,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "code-arabia",
                            "name": "كود العربية",
                            "tagline": "منصة توظيف مطورين عن بُعد",
                            "description": "شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).",
                            "sector": "technology",
                            "stage": "pre_seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/code-arabia",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2024,
                            "team_size": 7,
                            "revenue_monthly": "379000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "2800000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "400000.00",
                            "score": "64.00",
                            "visits": 632,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 24,
                                "name": "منى الحسين",
                                "username": "demo.founder20",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:46.243321Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        }
                    ],
                    [
                        0,
                        1,
                        2,
                        3,
                        4,
                        5,
                        6,
                        7,
                        8,
                        9
                    ]
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Collections\\Collection.php",
                "line": 809,
                "function": "map",
                "class": "Illuminate\\Support\\Arr",
                "type": "::",
                "args": [
                    [
                        {
                            "id": 15,
                            "user_id": 16,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "mirsal-logistics",
                            "name": "مرسال الشحن",
                            "tagline": "شبكة نقل برية مبردة",
                            "description": "شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).",
                            "sector": "logistics",
                            "stage": "seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/mirsal-logistics",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2021,
                            "team_size": 21,
                            "revenue_monthly": "1017000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "7500000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "2400000.00",
                            "score": "72.00",
                            "visits": 696,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 16,
                                "name": "دانة الخالدي",
                                "username": "demo.founder12",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:45.552675Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 16,
                            "user_id": 17,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "qimmah-edtech",
                            "name": "قمة التدريب",
                            "tagline": "تدريب مهني معتمد عن بُعد",
                            "description": "شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).",
                            "sector": "edtech",
                            "stage": "seed",
                            "status": "approved",
                            "website": "https://demo.platform.test/qimmah-edtech",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2022,
                            "team_size": 15,
                            "revenue_monthly": "745000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "4500000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "0.00",
                            "score": "70.00",
                            "visits": 680,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 17,
                                "name": "سلمان الشهري",
                                "username": "demo.founder13",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:45.756318Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 22,
                            "user_id": 23,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "amlak-fintech",
                            "name": "أملاك للتقنية",
                            "tagline": "تقسيط إيجار تجاري مرن",
                            "description": "شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).",
                            "sector": "fintech",
                            "stage": "series_b",
                            "status": "closed_round",
                            "website": "https://demo.platform.test/amlak-fintech",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2017,
                            "team_size": 42,
                            "revenue_monthly": "1980000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "25000000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "25000000.00",
                            "score": "90.00",
                            "visits": 840,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": "2026-05-14T00:47:32.000000Z",
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 23,
                                "name": "فيصل الجهني",
                                "username": "demo.founder19",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:45.824312Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 19,
                            "user_id": 20,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "khayr-agtech",
                            "name": "خير الزراعية",
                            "tagline": "سوق مباشر من المزارع للمستهلك",
                            "description": "شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).",
                            "sector": "agtech",
                            "stage": "seed",
                            "status": "approved",
                            "website": "https://demo.platform.test/khayr-agtech",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2023,
                            "team_size": 14,
                            "revenue_monthly": "697000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "4000000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "0.00",
                            "score": "67.00",
                            "visits": 656,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 20,
                                "name": "أمل الفهد",
                                "username": "demo.founder16",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:45.892996Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 17,
                            "user_id": 18,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "wazen-pay",
                            "name": "وازن للمدفوعات",
                            "tagline": "محفظة رواتب للعمالة الميدانية",
                            "description": "شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).",
                            "sector": "fintech",
                            "stage": "pre_seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/wazen-pay",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2023,
                            "team_size": 10,
                            "revenue_monthly": "518000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "3500000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "750000.00",
                            "score": "68.00",
                            "visits": 664,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 18,
                                "name": "غادة البلوي",
                                "username": "demo.founder14",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:45.965932Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 18,
                            "user_id": 19,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "bina-proptech",
                            "name": "بناء العقارية",
                            "tagline": "تقدير آلي لقيمة العقارات السكنية",
                            "description": "شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).",
                            "sector": "proptech",
                            "stage": "seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/bina-proptech",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2022,
                            "team_size": 12,
                            "revenue_monthly": "611000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "5000000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "1300000.00",
                            "score": "71.00",
                            "visits": 688,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 19,
                                "name": "تركي الرشيدي",
                                "username": "demo.founder15",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:46.034043Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 20,
                            "user_id": 21,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "shams-solar",
                            "name": "شمس للطاقة",
                            "tagline": "تركيب ألواح شمسية للمنازل",
                            "description": "شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).",
                            "sector": "cleantech",
                            "stage": "series_a",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/shams-solar",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2020,
                            "team_size": 29,
                            "revenue_monthly": "1384000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "16000000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "6200000.00",
                            "score": "79.00",
                            "visits": 752,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 21,
                                "name": "بندر السديري",
                                "username": "demo.founder17",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:46.101936Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 21,
                            "user_id": 22,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "cartx-ecommerce",
                            "name": "كارتكس",
                            "tagline": "تحسين معدل التحويل للمتاجر",
                            "description": "شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).",
                            "sector": "ecommerce",
                            "stage": "seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/cartx-ecommerce",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2023,
                            "team_size": 11,
                            "revenue_monthly": "561000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "4800000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "950000.00",
                            "score": "66.00",
                            "visits": 648,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 22,
                                "name": "موضي القحطاني",
                                "username": "demo.founder18",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:46.170855Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 23,
                            "user_id": 24,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "tibb-labs",
                            "name": "طب لاب",
                            "tagline": "تشخيص مخبري منزلي سريع",
                            "description": "شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).",
                            "sector": "healthtech",
                            "stage": "seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/tibb-labs",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2021,
                            "team_size": 18,
                            "revenue_monthly": "884000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "6500000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "1400000.00",
                            "score": "74.00",
                            "visits": 712,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 24,
                                "name": "منى الحسين",
                                "username": "demo.founder20",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:46.243321Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 24,
                            "user_id": 24,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "code-arabia",
                            "name": "كود العربية",
                            "tagline": "منصة توظيف مطورين عن بُعد",
                            "description": "شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).",
                            "sector": "technology",
                            "stage": "pre_seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/code-arabia",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2024,
                            "team_size": 7,
                            "revenue_monthly": "379000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "2800000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "400000.00",
                            "score": "64.00",
                            "visits": 632,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 24,
                                "name": "منى الحسين",
                                "username": "demo.founder20",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:46.243321Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        }
                    ],
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Eloquent\\Collection.php",
                "line": 418,
                "function": "map",
                "class": "Illuminate\\Support\\Collection",
                "type": "->",
                "args": [
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Collections\\Traits\\EnumeratesValues.php",
                "line": 458,
                "function": "map",
                "class": "Illuminate\\Database\\Eloquent\\Collection",
                "type": "->",
                "args": [
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Support\\Traits\\ForwardsCalls.php",
                "line": 23,
                "function": "mapInto",
                "class": "Illuminate\\Support\\Collection",
                "type": "->",
                "args": [
                    "App\\Modules\\Ecosystem\\Http\\Resources\\StartupResource"
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pagination\\AbstractPaginator.php",
                "line": 801,
                "function": "forwardCallTo",
                "class": "Illuminate\\Pagination\\AbstractPaginator",
                "type": "->",
                "args": [
                    [
                        {
                            "id": 15,
                            "user_id": 16,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "mirsal-logistics",
                            "name": "مرسال الشحن",
                            "tagline": "شبكة نقل برية مبردة",
                            "description": "شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).",
                            "sector": "logistics",
                            "stage": "seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/mirsal-logistics",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2021,
                            "team_size": 21,
                            "revenue_monthly": "1017000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "7500000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "2400000.00",
                            "score": "72.00",
                            "visits": 696,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 16,
                                "name": "دانة الخالدي",
                                "username": "demo.founder12",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:45.552675Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 16,
                            "user_id": 17,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "qimmah-edtech",
                            "name": "قمة التدريب",
                            "tagline": "تدريب مهني معتمد عن بُعد",
                            "description": "شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).",
                            "sector": "edtech",
                            "stage": "seed",
                            "status": "approved",
                            "website": "https://demo.platform.test/qimmah-edtech",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2022,
                            "team_size": 15,
                            "revenue_monthly": "745000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "4500000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "0.00",
                            "score": "70.00",
                            "visits": 680,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 17,
                                "name": "سلمان الشهري",
                                "username": "demo.founder13",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:45.756318Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 22,
                            "user_id": 23,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "amlak-fintech",
                            "name": "أملاك للتقنية",
                            "tagline": "تقسيط إيجار تجاري مرن",
                            "description": "شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).",
                            "sector": "fintech",
                            "stage": "series_b",
                            "status": "closed_round",
                            "website": "https://demo.platform.test/amlak-fintech",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2017,
                            "team_size": 42,
                            "revenue_monthly": "1980000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "25000000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "25000000.00",
                            "score": "90.00",
                            "visits": 840,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": "2026-05-14T00:47:32.000000Z",
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 23,
                                "name": "فيصل الجهني",
                                "username": "demo.founder19",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:45.824312Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 19,
                            "user_id": 20,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "khayr-agtech",
                            "name": "خير الزراعية",
                            "tagline": "سوق مباشر من المزارع للمستهلك",
                            "description": "شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).",
                            "sector": "agtech",
                            "stage": "seed",
                            "status": "approved",
                            "website": "https://demo.platform.test/khayr-agtech",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2023,
                            "team_size": 14,
                            "revenue_monthly": "697000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "4000000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "0.00",
                            "score": "67.00",
                            "visits": 656,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 20,
                                "name": "أمل الفهد",
                                "username": "demo.founder16",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:45.892996Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 17,
                            "user_id": 18,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "wazen-pay",
                            "name": "وازن للمدفوعات",
                            "tagline": "محفظة رواتب للعمالة الميدانية",
                            "description": "شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).",
                            "sector": "fintech",
                            "stage": "pre_seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/wazen-pay",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2023,
                            "team_size": 10,
                            "revenue_monthly": "518000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "3500000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "750000.00",
                            "score": "68.00",
                            "visits": 664,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 18,
                                "name": "غادة البلوي",
                                "username": "demo.founder14",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:45.965932Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 18,
                            "user_id": 19,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "bina-proptech",
                            "name": "بناء العقارية",
                            "tagline": "تقدير آلي لقيمة العقارات السكنية",
                            "description": "شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).",
                            "sector": "proptech",
                            "stage": "seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/bina-proptech",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2022,
                            "team_size": 12,
                            "revenue_monthly": "611000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "5000000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "1300000.00",
                            "score": "71.00",
                            "visits": 688,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 19,
                                "name": "تركي الرشيدي",
                                "username": "demo.founder15",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:46.034043Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 20,
                            "user_id": 21,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "shams-solar",
                            "name": "شمس للطاقة",
                            "tagline": "تركيب ألواح شمسية للمنازل",
                            "description": "شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).",
                            "sector": "cleantech",
                            "stage": "series_a",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/shams-solar",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2020,
                            "team_size": 29,
                            "revenue_monthly": "1384000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "16000000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "6200000.00",
                            "score": "79.00",
                            "visits": 752,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 21,
                                "name": "بندر السديري",
                                "username": "demo.founder17",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:46.101936Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 21,
                            "user_id": 22,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "cartx-ecommerce",
                            "name": "كارتكس",
                            "tagline": "تحسين معدل التحويل للمتاجر",
                            "description": "شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).",
                            "sector": "ecommerce",
                            "stage": "seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/cartx-ecommerce",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2023,
                            "team_size": 11,
                            "revenue_monthly": "561000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "4800000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "950000.00",
                            "score": "66.00",
                            "visits": 648,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 22,
                                "name": "موضي القحطاني",
                                "username": "demo.founder18",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:46.170855Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 23,
                            "user_id": 24,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "tibb-labs",
                            "name": "طب لاب",
                            "tagline": "تشخيص مخبري منزلي سريع",
                            "description": "شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).",
                            "sector": "healthtech",
                            "stage": "seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/tibb-labs",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2021,
                            "team_size": 18,
                            "revenue_monthly": "884000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "6500000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "1400000.00",
                            "score": "74.00",
                            "visits": 712,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 24,
                                "name": "منى الحسين",
                                "username": "demo.founder20",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:46.243321Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        },
                        {
                            "id": 24,
                            "user_id": 24,
                            "post_id": null,
                            "country_code": "SA",
                            "slug": "code-arabia",
                            "name": "كود العربية",
                            "tagline": "منصة توظيف مطورين عن بُعد",
                            "description": "شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).",
                            "sector": "technology",
                            "stage": "pre_seed",
                            "status": "fundraising",
                            "website": "https://demo.platform.test/code-arabia",
                            "logo_path": null,
                            "pitch_deck_path": null,
                            "founded_year": 2024,
                            "team_size": 7,
                            "revenue_monthly": "379000.00",
                            "currency_code": "SAR",
                            "fundraising_target": "2800000.00",
                            "listing_fee_amount": null,
                            "listing_fee_paid_at": null,
                            "listing_fee_order_id": null,
                            "publish_terms_accepted_at": null,
                            "publish_terms_version": null,
                            "fundraising_raised": "400000.00",
                            "score": "64.00",
                            "visits": 632,
                            "verified_at": "2026-03-21T00:47:32.000000Z",
                            "featured_at": null,
                            "submitted_at": "2026-01-21T00:47:32.000000Z",
                            "approved_at": "2026-02-21T00:47:32.000000Z",
                            "rejection_reason": null,
                            "deleted_at": null,
                            "created_at": "2026-05-21T00:47:32.000000Z",
                            "updated_at": "2026-05-21T00:47:32.000000Z",
                            "owner": {
                                "id": 24,
                                "name": "منى الحسين",
                                "username": "demo.founder20",
                                "photo_path": null,
                                "created_at": "2026-05-21T23:10:46.243321Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            }
                        }
                    ],
                    "mapInto",
                    [
                        "App\\Modules\\Ecosystem\\Http\\Resources\\StartupResource"
                    ]
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\CollectsResources.php",
                "line": 35,
                "function": "__call",
                "class": "Illuminate\\Pagination\\AbstractPaginator",
                "type": "->",
                "args": [
                    "mapInto",
                    [
                        "App\\Modules\\Ecosystem\\Http\\Resources\\StartupResource"
                    ]
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\Json\\ResourceCollection.php",
                "line": 53,
                "function": "collectResource",
                "class": "Illuminate\\Http\\Resources\\Json\\ResourceCollection",
                "type": "->",
                "args": [
                    {
                        "current_page": 1,
                        "data": [
                            {
                                "id": 15,
                                "user_id": 16,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "mirsal-logistics",
                                "name": "مرسال الشحن",
                                "tagline": "شبكة نقل برية مبردة",
                                "description": "شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).",
                                "sector": "logistics",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/mirsal-logistics",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2021,
                                "team_size": 21,
                                "revenue_monthly": "1017000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "7500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "2400000.00",
                                "score": "72.00",
                                "visits": 696,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 16,
                                    "name": "دانة الخالدي",
                                    "username": "demo.founder12",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.552675Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 16,
                                "user_id": 17,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "qimmah-edtech",
                                "name": "قمة التدريب",
                                "tagline": "تدريب مهني معتمد عن بُعد",
                                "description": "شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).",
                                "sector": "edtech",
                                "stage": "seed",
                                "status": "approved",
                                "website": "https://demo.platform.test/qimmah-edtech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2022,
                                "team_size": 15,
                                "revenue_monthly": "745000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "0.00",
                                "score": "70.00",
                                "visits": 680,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 17,
                                    "name": "سلمان الشهري",
                                    "username": "demo.founder13",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.756318Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 22,
                                "user_id": 23,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "amlak-fintech",
                                "name": "أملاك للتقنية",
                                "tagline": "تقسيط إيجار تجاري مرن",
                                "description": "شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).",
                                "sector": "fintech",
                                "stage": "series_b",
                                "status": "closed_round",
                                "website": "https://demo.platform.test/amlak-fintech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2017,
                                "team_size": 42,
                                "revenue_monthly": "1980000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "25000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "25000000.00",
                                "score": "90.00",
                                "visits": 840,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": "2026-05-14T00:47:32.000000Z",
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "username": "demo.founder19",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.824312Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 19,
                                "user_id": 20,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "khayr-agtech",
                                "name": "خير الزراعية",
                                "tagline": "سوق مباشر من المزارع للمستهلك",
                                "description": "شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).",
                                "sector": "agtech",
                                "stage": "seed",
                                "status": "approved",
                                "website": "https://demo.platform.test/khayr-agtech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 14,
                                "revenue_monthly": "697000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "0.00",
                                "score": "67.00",
                                "visits": 656,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 20,
                                    "name": "أمل الفهد",
                                    "username": "demo.founder16",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.892996Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 17,
                                "user_id": 18,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "wazen-pay",
                                "name": "وازن للمدفوعات",
                                "tagline": "محفظة رواتب للعمالة الميدانية",
                                "description": "شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).",
                                "sector": "fintech",
                                "stage": "pre_seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/wazen-pay",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 10,
                                "revenue_monthly": "518000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "3500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "750000.00",
                                "score": "68.00",
                                "visits": 664,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 18,
                                    "name": "غادة البلوي",
                                    "username": "demo.founder14",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.965932Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 18,
                                "user_id": 19,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "bina-proptech",
                                "name": "بناء العقارية",
                                "tagline": "تقدير آلي لقيمة العقارات السكنية",
                                "description": "شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).",
                                "sector": "proptech",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/bina-proptech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2022,
                                "team_size": 12,
                                "revenue_monthly": "611000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "5000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "1300000.00",
                                "score": "71.00",
                                "visits": 688,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 19,
                                    "name": "تركي الرشيدي",
                                    "username": "demo.founder15",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.034043Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 20,
                                "user_id": 21,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "shams-solar",
                                "name": "شمس للطاقة",
                                "tagline": "تركيب ألواح شمسية للمنازل",
                                "description": "شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).",
                                "sector": "cleantech",
                                "stage": "series_a",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/shams-solar",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2020,
                                "team_size": 29,
                                "revenue_monthly": "1384000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "16000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "6200000.00",
                                "score": "79.00",
                                "visits": 752,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "username": "demo.founder17",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.101936Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 21,
                                "user_id": 22,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "cartx-ecommerce",
                                "name": "كارتكس",
                                "tagline": "تحسين معدل التحويل للمتاجر",
                                "description": "شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).",
                                "sector": "ecommerce",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/cartx-ecommerce",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 11,
                                "revenue_monthly": "561000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4800000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "950000.00",
                                "score": "66.00",
                                "visits": 648,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "username": "demo.founder18",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.170855Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 23,
                                "user_id": 24,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "tibb-labs",
                                "name": "طب لاب",
                                "tagline": "تشخيص مخبري منزلي سريع",
                                "description": "شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).",
                                "sector": "healthtech",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/tibb-labs",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2021,
                                "team_size": 18,
                                "revenue_monthly": "884000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "6500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "1400000.00",
                                "score": "74.00",
                                "visits": 712,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "username": "demo.founder20",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.243321Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 24,
                                "user_id": 24,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "code-arabia",
                                "name": "كود العربية",
                                "tagline": "منصة توظيف مطورين عن بُعد",
                                "description": "شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).",
                                "sector": "technology",
                                "stage": "pre_seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/code-arabia",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2024,
                                "team_size": 7,
                                "revenue_monthly": "379000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "2800000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "400000.00",
                                "score": "64.00",
                                "visits": 632,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "username": "demo.founder20",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.243321Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            }
                        ],
                        "first_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=1",
                        "from": 1,
                        "last_page": 3,
                        "last_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=3",
                        "links": [
                            {
                                "url": null,
                                "label": "« Previous",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=1",
                                "label": "1",
                                "active": true
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                                "label": "2",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=3",
                                "label": "3",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                                "label": "Next »",
                                "active": false
                            }
                        ],
                        "next_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                        "path": "http://127.0.0.1:8000/api/ecosystem/startups",
                        "per_page": 10,
                        "prev_page_url": null,
                        "to": 10,
                        "total": 23
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\Json\\AnonymousResourceCollection.php",
                "line": 31,
                "function": "__construct",
                "class": "Illuminate\\Http\\Resources\\Json\\ResourceCollection",
                "type": "->",
                "args": [
                    {
                        "current_page": 1,
                        "data": [
                            {
                                "id": 15,
                                "user_id": 16,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "mirsal-logistics",
                                "name": "مرسال الشحن",
                                "tagline": "شبكة نقل برية مبردة",
                                "description": "شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).",
                                "sector": "logistics",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/mirsal-logistics",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2021,
                                "team_size": 21,
                                "revenue_monthly": "1017000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "7500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "2400000.00",
                                "score": "72.00",
                                "visits": 696,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 16,
                                    "name": "دانة الخالدي",
                                    "username": "demo.founder12",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.552675Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 16,
                                "user_id": 17,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "qimmah-edtech",
                                "name": "قمة التدريب",
                                "tagline": "تدريب مهني معتمد عن بُعد",
                                "description": "شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).",
                                "sector": "edtech",
                                "stage": "seed",
                                "status": "approved",
                                "website": "https://demo.platform.test/qimmah-edtech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2022,
                                "team_size": 15,
                                "revenue_monthly": "745000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "0.00",
                                "score": "70.00",
                                "visits": 680,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 17,
                                    "name": "سلمان الشهري",
                                    "username": "demo.founder13",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.756318Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 22,
                                "user_id": 23,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "amlak-fintech",
                                "name": "أملاك للتقنية",
                                "tagline": "تقسيط إيجار تجاري مرن",
                                "description": "شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).",
                                "sector": "fintech",
                                "stage": "series_b",
                                "status": "closed_round",
                                "website": "https://demo.platform.test/amlak-fintech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2017,
                                "team_size": 42,
                                "revenue_monthly": "1980000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "25000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "25000000.00",
                                "score": "90.00",
                                "visits": 840,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": "2026-05-14T00:47:32.000000Z",
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "username": "demo.founder19",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.824312Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 19,
                                "user_id": 20,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "khayr-agtech",
                                "name": "خير الزراعية",
                                "tagline": "سوق مباشر من المزارع للمستهلك",
                                "description": "شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).",
                                "sector": "agtech",
                                "stage": "seed",
                                "status": "approved",
                                "website": "https://demo.platform.test/khayr-agtech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 14,
                                "revenue_monthly": "697000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "0.00",
                                "score": "67.00",
                                "visits": 656,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 20,
                                    "name": "أمل الفهد",
                                    "username": "demo.founder16",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.892996Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 17,
                                "user_id": 18,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "wazen-pay",
                                "name": "وازن للمدفوعات",
                                "tagline": "محفظة رواتب للعمالة الميدانية",
                                "description": "شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).",
                                "sector": "fintech",
                                "stage": "pre_seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/wazen-pay",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 10,
                                "revenue_monthly": "518000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "3500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "750000.00",
                                "score": "68.00",
                                "visits": 664,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 18,
                                    "name": "غادة البلوي",
                                    "username": "demo.founder14",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.965932Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 18,
                                "user_id": 19,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "bina-proptech",
                                "name": "بناء العقارية",
                                "tagline": "تقدير آلي لقيمة العقارات السكنية",
                                "description": "شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).",
                                "sector": "proptech",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/bina-proptech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2022,
                                "team_size": 12,
                                "revenue_monthly": "611000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "5000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "1300000.00",
                                "score": "71.00",
                                "visits": 688,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 19,
                                    "name": "تركي الرشيدي",
                                    "username": "demo.founder15",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.034043Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 20,
                                "user_id": 21,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "shams-solar",
                                "name": "شمس للطاقة",
                                "tagline": "تركيب ألواح شمسية للمنازل",
                                "description": "شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).",
                                "sector": "cleantech",
                                "stage": "series_a",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/shams-solar",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2020,
                                "team_size": 29,
                                "revenue_monthly": "1384000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "16000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "6200000.00",
                                "score": "79.00",
                                "visits": 752,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "username": "demo.founder17",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.101936Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 21,
                                "user_id": 22,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "cartx-ecommerce",
                                "name": "كارتكس",
                                "tagline": "تحسين معدل التحويل للمتاجر",
                                "description": "شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).",
                                "sector": "ecommerce",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/cartx-ecommerce",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 11,
                                "revenue_monthly": "561000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4800000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "950000.00",
                                "score": "66.00",
                                "visits": 648,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "username": "demo.founder18",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.170855Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 23,
                                "user_id": 24,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "tibb-labs",
                                "name": "طب لاب",
                                "tagline": "تشخيص مخبري منزلي سريع",
                                "description": "شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).",
                                "sector": "healthtech",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/tibb-labs",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2021,
                                "team_size": 18,
                                "revenue_monthly": "884000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "6500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "1400000.00",
                                "score": "74.00",
                                "visits": 712,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "username": "demo.founder20",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.243321Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 24,
                                "user_id": 24,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "code-arabia",
                                "name": "كود العربية",
                                "tagline": "منصة توظيف مطورين عن بُعد",
                                "description": "شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).",
                                "sector": "technology",
                                "stage": "pre_seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/code-arabia",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2024,
                                "team_size": 7,
                                "revenue_monthly": "379000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "2800000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "400000.00",
                                "score": "64.00",
                                "visits": 632,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "username": "demo.founder20",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.243321Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            }
                        ],
                        "first_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=1",
                        "from": 1,
                        "last_page": 3,
                        "last_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=3",
                        "links": [
                            {
                                "url": null,
                                "label": "« Previous",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=1",
                                "label": "1",
                                "active": true
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                                "label": "2",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=3",
                                "label": "3",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                                "label": "Next »",
                                "active": false
                            }
                        ],
                        "next_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                        "path": "http://127.0.0.1:8000/api/ecosystem/startups",
                        "per_page": 10,
                        "prev_page_url": null,
                        "to": 10,
                        "total": 23
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\Json\\JsonResource.php",
                "line": 96,
                "function": "__construct",
                "class": "Illuminate\\Http\\Resources\\Json\\AnonymousResourceCollection",
                "type": "->",
                "args": [
                    {
                        "current_page": 1,
                        "data": [
                            {
                                "id": 15,
                                "user_id": 16,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "mirsal-logistics",
                                "name": "مرسال الشحن",
                                "tagline": "شبكة نقل برية مبردة",
                                "description": "شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).",
                                "sector": "logistics",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/mirsal-logistics",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2021,
                                "team_size": 21,
                                "revenue_monthly": "1017000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "7500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "2400000.00",
                                "score": "72.00",
                                "visits": 696,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 16,
                                    "name": "دانة الخالدي",
                                    "username": "demo.founder12",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.552675Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 16,
                                "user_id": 17,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "qimmah-edtech",
                                "name": "قمة التدريب",
                                "tagline": "تدريب مهني معتمد عن بُعد",
                                "description": "شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).",
                                "sector": "edtech",
                                "stage": "seed",
                                "status": "approved",
                                "website": "https://demo.platform.test/qimmah-edtech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2022,
                                "team_size": 15,
                                "revenue_monthly": "745000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "0.00",
                                "score": "70.00",
                                "visits": 680,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 17,
                                    "name": "سلمان الشهري",
                                    "username": "demo.founder13",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.756318Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 22,
                                "user_id": 23,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "amlak-fintech",
                                "name": "أملاك للتقنية",
                                "tagline": "تقسيط إيجار تجاري مرن",
                                "description": "شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).",
                                "sector": "fintech",
                                "stage": "series_b",
                                "status": "closed_round",
                                "website": "https://demo.platform.test/amlak-fintech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2017,
                                "team_size": 42,
                                "revenue_monthly": "1980000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "25000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "25000000.00",
                                "score": "90.00",
                                "visits": 840,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": "2026-05-14T00:47:32.000000Z",
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "username": "demo.founder19",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.824312Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 19,
                                "user_id": 20,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "khayr-agtech",
                                "name": "خير الزراعية",
                                "tagline": "سوق مباشر من المزارع للمستهلك",
                                "description": "شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).",
                                "sector": "agtech",
                                "stage": "seed",
                                "status": "approved",
                                "website": "https://demo.platform.test/khayr-agtech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 14,
                                "revenue_monthly": "697000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "0.00",
                                "score": "67.00",
                                "visits": 656,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 20,
                                    "name": "أمل الفهد",
                                    "username": "demo.founder16",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.892996Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 17,
                                "user_id": 18,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "wazen-pay",
                                "name": "وازن للمدفوعات",
                                "tagline": "محفظة رواتب للعمالة الميدانية",
                                "description": "شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).",
                                "sector": "fintech",
                                "stage": "pre_seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/wazen-pay",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 10,
                                "revenue_monthly": "518000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "3500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "750000.00",
                                "score": "68.00",
                                "visits": 664,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 18,
                                    "name": "غادة البلوي",
                                    "username": "demo.founder14",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.965932Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 18,
                                "user_id": 19,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "bina-proptech",
                                "name": "بناء العقارية",
                                "tagline": "تقدير آلي لقيمة العقارات السكنية",
                                "description": "شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).",
                                "sector": "proptech",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/bina-proptech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2022,
                                "team_size": 12,
                                "revenue_monthly": "611000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "5000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "1300000.00",
                                "score": "71.00",
                                "visits": 688,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 19,
                                    "name": "تركي الرشيدي",
                                    "username": "demo.founder15",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.034043Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 20,
                                "user_id": 21,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "shams-solar",
                                "name": "شمس للطاقة",
                                "tagline": "تركيب ألواح شمسية للمنازل",
                                "description": "شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).",
                                "sector": "cleantech",
                                "stage": "series_a",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/shams-solar",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2020,
                                "team_size": 29,
                                "revenue_monthly": "1384000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "16000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "6200000.00",
                                "score": "79.00",
                                "visits": 752,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "username": "demo.founder17",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.101936Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 21,
                                "user_id": 22,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "cartx-ecommerce",
                                "name": "كارتكس",
                                "tagline": "تحسين معدل التحويل للمتاجر",
                                "description": "شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).",
                                "sector": "ecommerce",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/cartx-ecommerce",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 11,
                                "revenue_monthly": "561000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4800000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "950000.00",
                                "score": "66.00",
                                "visits": 648,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "username": "demo.founder18",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.170855Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 23,
                                "user_id": 24,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "tibb-labs",
                                "name": "طب لاب",
                                "tagline": "تشخيص مخبري منزلي سريع",
                                "description": "شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).",
                                "sector": "healthtech",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/tibb-labs",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2021,
                                "team_size": 18,
                                "revenue_monthly": "884000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "6500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "1400000.00",
                                "score": "74.00",
                                "visits": 712,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "username": "demo.founder20",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.243321Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 24,
                                "user_id": 24,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "code-arabia",
                                "name": "كود العربية",
                                "tagline": "منصة توظيف مطورين عن بُعد",
                                "description": "شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).",
                                "sector": "technology",
                                "stage": "pre_seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/code-arabia",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2024,
                                "team_size": 7,
                                "revenue_monthly": "379000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "2800000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "400000.00",
                                "score": "64.00",
                                "visits": 632,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "username": "demo.founder20",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.243321Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            }
                        ],
                        "first_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=1",
                        "from": 1,
                        "last_page": 3,
                        "last_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=3",
                        "links": [
                            {
                                "url": null,
                                "label": "« Previous",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=1",
                                "label": "1",
                                "active": true
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                                "label": "2",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=3",
                                "label": "3",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                                "label": "Next »",
                                "active": false
                            }
                        ],
                        "next_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                        "path": "http://127.0.0.1:8000/api/ecosystem/startups",
                        "per_page": 10,
                        "prev_page_url": null,
                        "to": 10,
                        "total": 23
                    },
                    "App\\Modules\\Ecosystem\\Http\\Resources\\StartupResource"
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\Json\\JsonResource.php",
                "line": 81,
                "function": "newCollection",
                "class": "Illuminate\\Http\\Resources\\Json\\JsonResource",
                "type": "::",
                "args": [
                    {
                        "current_page": 1,
                        "data": [
                            {
                                "id": 15,
                                "user_id": 16,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "mirsal-logistics",
                                "name": "مرسال الشحن",
                                "tagline": "شبكة نقل برية مبردة",
                                "description": "شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).",
                                "sector": "logistics",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/mirsal-logistics",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2021,
                                "team_size": 21,
                                "revenue_monthly": "1017000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "7500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "2400000.00",
                                "score": "72.00",
                                "visits": 696,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 16,
                                    "name": "دانة الخالدي",
                                    "username": "demo.founder12",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.552675Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 16,
                                "user_id": 17,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "qimmah-edtech",
                                "name": "قمة التدريب",
                                "tagline": "تدريب مهني معتمد عن بُعد",
                                "description": "شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).",
                                "sector": "edtech",
                                "stage": "seed",
                                "status": "approved",
                                "website": "https://demo.platform.test/qimmah-edtech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2022,
                                "team_size": 15,
                                "revenue_monthly": "745000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "0.00",
                                "score": "70.00",
                                "visits": 680,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 17,
                                    "name": "سلمان الشهري",
                                    "username": "demo.founder13",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.756318Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 22,
                                "user_id": 23,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "amlak-fintech",
                                "name": "أملاك للتقنية",
                                "tagline": "تقسيط إيجار تجاري مرن",
                                "description": "شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).",
                                "sector": "fintech",
                                "stage": "series_b",
                                "status": "closed_round",
                                "website": "https://demo.platform.test/amlak-fintech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2017,
                                "team_size": 42,
                                "revenue_monthly": "1980000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "25000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "25000000.00",
                                "score": "90.00",
                                "visits": 840,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": "2026-05-14T00:47:32.000000Z",
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "username": "demo.founder19",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.824312Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 19,
                                "user_id": 20,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "khayr-agtech",
                                "name": "خير الزراعية",
                                "tagline": "سوق مباشر من المزارع للمستهلك",
                                "description": "شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).",
                                "sector": "agtech",
                                "stage": "seed",
                                "status": "approved",
                                "website": "https://demo.platform.test/khayr-agtech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 14,
                                "revenue_monthly": "697000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "0.00",
                                "score": "67.00",
                                "visits": 656,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 20,
                                    "name": "أمل الفهد",
                                    "username": "demo.founder16",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.892996Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 17,
                                "user_id": 18,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "wazen-pay",
                                "name": "وازن للمدفوعات",
                                "tagline": "محفظة رواتب للعمالة الميدانية",
                                "description": "شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).",
                                "sector": "fintech",
                                "stage": "pre_seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/wazen-pay",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 10,
                                "revenue_monthly": "518000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "3500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "750000.00",
                                "score": "68.00",
                                "visits": 664,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 18,
                                    "name": "غادة البلوي",
                                    "username": "demo.founder14",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.965932Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 18,
                                "user_id": 19,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "bina-proptech",
                                "name": "بناء العقارية",
                                "tagline": "تقدير آلي لقيمة العقارات السكنية",
                                "description": "شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).",
                                "sector": "proptech",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/bina-proptech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2022,
                                "team_size": 12,
                                "revenue_monthly": "611000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "5000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "1300000.00",
                                "score": "71.00",
                                "visits": 688,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 19,
                                    "name": "تركي الرشيدي",
                                    "username": "demo.founder15",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.034043Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 20,
                                "user_id": 21,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "shams-solar",
                                "name": "شمس للطاقة",
                                "tagline": "تركيب ألواح شمسية للمنازل",
                                "description": "شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).",
                                "sector": "cleantech",
                                "stage": "series_a",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/shams-solar",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2020,
                                "team_size": 29,
                                "revenue_monthly": "1384000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "16000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "6200000.00",
                                "score": "79.00",
                                "visits": 752,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "username": "demo.founder17",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.101936Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 21,
                                "user_id": 22,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "cartx-ecommerce",
                                "name": "كارتكس",
                                "tagline": "تحسين معدل التحويل للمتاجر",
                                "description": "شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).",
                                "sector": "ecommerce",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/cartx-ecommerce",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 11,
                                "revenue_monthly": "561000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4800000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "950000.00",
                                "score": "66.00",
                                "visits": 648,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "username": "demo.founder18",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.170855Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 23,
                                "user_id": 24,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "tibb-labs",
                                "name": "طب لاب",
                                "tagline": "تشخيص مخبري منزلي سريع",
                                "description": "شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).",
                                "sector": "healthtech",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/tibb-labs",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2021,
                                "team_size": 18,
                                "revenue_monthly": "884000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "6500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "1400000.00",
                                "score": "74.00",
                                "visits": 712,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "username": "demo.founder20",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.243321Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 24,
                                "user_id": 24,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "code-arabia",
                                "name": "كود العربية",
                                "tagline": "منصة توظيف مطورين عن بُعد",
                                "description": "شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).",
                                "sector": "technology",
                                "stage": "pre_seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/code-arabia",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2024,
                                "team_size": 7,
                                "revenue_monthly": "379000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "2800000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "400000.00",
                                "score": "64.00",
                                "visits": 632,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "username": "demo.founder20",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.243321Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            }
                        ],
                        "first_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=1",
                        "from": 1,
                        "last_page": 3,
                        "last_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=3",
                        "links": [
                            {
                                "url": null,
                                "label": "« Previous",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=1",
                                "label": "1",
                                "active": true
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                                "label": "2",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=3",
                                "label": "3",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                                "label": "Next »",
                                "active": false
                            }
                        ],
                        "next_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                        "path": "http://127.0.0.1:8000/api/ecosystem/startups",
                        "per_page": 10,
                        "prev_page_url": null,
                        "to": 10,
                        "total": 23
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Modules\\Ecosystem\\Services\\StartupService.php",
                "line": 75,
                "function": "collection",
                "class": "Illuminate\\Http\\Resources\\Json\\JsonResource",
                "type": "::",
                "args": [
                    {
                        "current_page": 1,
                        "data": [
                            {
                                "id": 15,
                                "user_id": 16,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "mirsal-logistics",
                                "name": "مرسال الشحن",
                                "tagline": "شبكة نقل برية مبردة",
                                "description": "شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).",
                                "sector": "logistics",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/mirsal-logistics",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2021,
                                "team_size": 21,
                                "revenue_monthly": "1017000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "7500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "2400000.00",
                                "score": "72.00",
                                "visits": 696,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 16,
                                    "name": "دانة الخالدي",
                                    "username": "demo.founder12",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.552675Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 16,
                                "user_id": 17,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "qimmah-edtech",
                                "name": "قمة التدريب",
                                "tagline": "تدريب مهني معتمد عن بُعد",
                                "description": "شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).",
                                "sector": "edtech",
                                "stage": "seed",
                                "status": "approved",
                                "website": "https://demo.platform.test/qimmah-edtech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2022,
                                "team_size": 15,
                                "revenue_monthly": "745000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "0.00",
                                "score": "70.00",
                                "visits": 680,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 17,
                                    "name": "سلمان الشهري",
                                    "username": "demo.founder13",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.756318Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 22,
                                "user_id": 23,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "amlak-fintech",
                                "name": "أملاك للتقنية",
                                "tagline": "تقسيط إيجار تجاري مرن",
                                "description": "شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).",
                                "sector": "fintech",
                                "stage": "series_b",
                                "status": "closed_round",
                                "website": "https://demo.platform.test/amlak-fintech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2017,
                                "team_size": 42,
                                "revenue_monthly": "1980000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "25000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "25000000.00",
                                "score": "90.00",
                                "visits": 840,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": "2026-05-14T00:47:32.000000Z",
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "username": "demo.founder19",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.824312Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 19,
                                "user_id": 20,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "khayr-agtech",
                                "name": "خير الزراعية",
                                "tagline": "سوق مباشر من المزارع للمستهلك",
                                "description": "شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).",
                                "sector": "agtech",
                                "stage": "seed",
                                "status": "approved",
                                "website": "https://demo.platform.test/khayr-agtech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 14,
                                "revenue_monthly": "697000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "0.00",
                                "score": "67.00",
                                "visits": 656,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 20,
                                    "name": "أمل الفهد",
                                    "username": "demo.founder16",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.892996Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 17,
                                "user_id": 18,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "wazen-pay",
                                "name": "وازن للمدفوعات",
                                "tagline": "محفظة رواتب للعمالة الميدانية",
                                "description": "شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).",
                                "sector": "fintech",
                                "stage": "pre_seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/wazen-pay",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 10,
                                "revenue_monthly": "518000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "3500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "750000.00",
                                "score": "68.00",
                                "visits": 664,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 18,
                                    "name": "غادة البلوي",
                                    "username": "demo.founder14",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:45.965932Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 18,
                                "user_id": 19,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "bina-proptech",
                                "name": "بناء العقارية",
                                "tagline": "تقدير آلي لقيمة العقارات السكنية",
                                "description": "شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).",
                                "sector": "proptech",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/bina-proptech",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2022,
                                "team_size": 12,
                                "revenue_monthly": "611000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "5000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "1300000.00",
                                "score": "71.00",
                                "visits": 688,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 19,
                                    "name": "تركي الرشيدي",
                                    "username": "demo.founder15",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.034043Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 20,
                                "user_id": 21,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "shams-solar",
                                "name": "شمس للطاقة",
                                "tagline": "تركيب ألواح شمسية للمنازل",
                                "description": "شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).",
                                "sector": "cleantech",
                                "stage": "series_a",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/shams-solar",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2020,
                                "team_size": 29,
                                "revenue_monthly": "1384000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "16000000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "6200000.00",
                                "score": "79.00",
                                "visits": 752,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "username": "demo.founder17",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.101936Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 21,
                                "user_id": 22,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "cartx-ecommerce",
                                "name": "كارتكس",
                                "tagline": "تحسين معدل التحويل للمتاجر",
                                "description": "شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).",
                                "sector": "ecommerce",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/cartx-ecommerce",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2023,
                                "team_size": 11,
                                "revenue_monthly": "561000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "4800000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "950000.00",
                                "score": "66.00",
                                "visits": 648,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "username": "demo.founder18",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.170855Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 23,
                                "user_id": 24,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "tibb-labs",
                                "name": "طب لاب",
                                "tagline": "تشخيص مخبري منزلي سريع",
                                "description": "شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).",
                                "sector": "healthtech",
                                "stage": "seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/tibb-labs",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2021,
                                "team_size": 18,
                                "revenue_monthly": "884000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "6500000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "1400000.00",
                                "score": "74.00",
                                "visits": 712,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "username": "demo.founder20",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.243321Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            },
                            {
                                "id": 24,
                                "user_id": 24,
                                "post_id": null,
                                "country_code": "SA",
                                "slug": "code-arabia",
                                "name": "كود العربية",
                                "tagline": "منصة توظيف مطورين عن بُعد",
                                "description": "شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).",
                                "sector": "technology",
                                "stage": "pre_seed",
                                "status": "fundraising",
                                "website": "https://demo.platform.test/code-arabia",
                                "logo_path": null,
                                "pitch_deck_path": null,
                                "founded_year": 2024,
                                "team_size": 7,
                                "revenue_monthly": "379000.00",
                                "currency_code": "SAR",
                                "fundraising_target": "2800000.00",
                                "listing_fee_amount": null,
                                "listing_fee_paid_at": null,
                                "listing_fee_order_id": null,
                                "publish_terms_accepted_at": null,
                                "publish_terms_version": null,
                                "fundraising_raised": "400000.00",
                                "score": "64.00",
                                "visits": 632,
                                "verified_at": "2026-03-21T00:47:32.000000Z",
                                "featured_at": null,
                                "submitted_at": "2026-01-21T00:47:32.000000Z",
                                "approved_at": "2026-02-21T00:47:32.000000Z",
                                "rejection_reason": null,
                                "deleted_at": null,
                                "created_at": "2026-05-21T00:47:32.000000Z",
                                "updated_at": "2026-05-21T00:47:32.000000Z",
                                "owner": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "username": "demo.founder20",
                                    "photo_path": null,
                                    "created_at": "2026-05-21T23:10:46.243321Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                }
                            }
                        ],
                        "first_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=1",
                        "from": 1,
                        "last_page": 3,
                        "last_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=3",
                        "links": [
                            {
                                "url": null,
                                "label": "« Previous",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=1",
                                "label": "1",
                                "active": true
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                                "label": "2",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=3",
                                "label": "3",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                                "label": "Next »",
                                "active": false
                            }
                        ],
                        "next_page_url": "http://127.0.0.1:8000/api/ecosystem/startups?page=2",
                        "path": "http://127.0.0.1:8000/api/ecosystem/startups",
                        "per_page": 10,
                        "prev_page_url": null,
                        "to": 10,
                        "total": 23
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController.php",
                "line": 45,
                "function": "list",
                "class": "App\\Modules\\Ecosystem\\Services\\StartupService",
                "type": "->",
                "args": [
                    []
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\ControllerDispatcher.php",
                "line": 46,
                "function": "index",
                "class": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController",
                "type": "->",
                "args": []
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Route.php",
                "line": 265,
                "function": "dispatch",
                "class": "Illuminate\\Routing\\ControllerDispatcher",
                "type": "->",
                "args": [
                    {
                        "uri": "api/ecosystem/startups",
                        "methods": [
                            "GET",
                            "HEAD"
                        ],
                        "action": {
                            "middleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                            "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                            "namespace": null,
                            "prefix": "api/ecosystem",
                            "where": []
                        },
                        "isFallback": false,
                        "controller": {
                            "locale": null,
                            "countryCode": null,
                            "cacheExpiration": 86400,
                            "perPage": 10,
                            "disk": {},
                            "cookieExpiration": 1440
                        },
                        "defaults": [],
                        "wheres": [],
                        "parameters": [],
                        "parameterNames": [],
                        "computedMiddleware": [
                            "api",
                            "throttle:ecosystem-api"
                        ],
                        "compiled": {}
                    },
                    {
                        "locale": null,
                        "countryCode": null,
                        "cacheExpiration": 86400,
                        "perPage": 10,
                        "disk": {},
                        "cookieExpiration": 1440
                    },
                    "index"
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Route.php",
                "line": 211,
                "function": "runController",
                "class": "Illuminate\\Routing\\Route",
                "type": "->",
                "args": []
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
                "line": 808,
                "function": "run",
                "class": "Illuminate\\Routing\\Route",
                "type": "->",
                "args": []
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 169,
                "function": "Illuminate\\Routing\\{closure}",
                "class": "Illuminate\\Routing\\Router",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\ThrottleRequests.php",
                "line": 123,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\ThrottleRequests.php",
                "line": 88,
                "function": "handleRequestUsingNamedLimiter",
                "class": "Illuminate\\Routing\\Middleware\\ThrottleRequests",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {},
                    "ecosystem-api",
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Routing\\Middleware\\ThrottleRequests",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {},
                    "ecosystem-api"
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\LastUserActivity.php",
                "line": 46,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\LastUserActivity",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\BannedUser.php",
                "line": 45,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\BannedUser",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\DemoRestriction.php",
                "line": 56,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\DemoRestriction",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Services\\Auth\\App\\Http\\Middleware\\IsVerifiedUser.php",
                "line": 40,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Services\\Auth\\App\\Http\\Middleware\\IsVerifiedUser",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\GetLocalization.php",
                "line": 56,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\GetLocalization",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\RequirementsChecker.php",
                "line": 44,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\RequirementsChecker",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\SubstituteBindings.php",
                "line": 50,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Routing\\Middleware\\SubstituteBindings",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\ThrottleRequests.php",
                "line": 123,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\ThrottleRequests.php",
                "line": 88,
                "function": "handleRequestUsingNamedLimiter",
                "class": "Illuminate\\Routing\\Middleware\\ThrottleRequests",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {},
                    "api",
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Routing\\Middleware\\ThrottleRequests",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {},
                    "api"
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\sanctum\\src\\Http\\Middleware\\EnsureFrontendRequestsAreStateful.php",
                "line": 26,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 169,
                "function": "Laravel\\Sanctum\\Http\\Middleware\\{closure}",
                "class": "Laravel\\Sanctum\\Http\\Middleware\\EnsureFrontendRequestsAreStateful",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 126,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\sanctum\\src\\Http\\Middleware\\EnsureFrontendRequestsAreStateful.php",
                "line": 25,
                "function": "then",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Laravel\\Sanctum\\Http\\Middleware\\EnsureFrontendRequestsAreStateful",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\VerifyAPIAccess.php",
                "line": 47,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\VerifyAPIAccess",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\Installed.php",
                "line": 103,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\Installed.php",
                "line": 45,
                "function": "handleApi",
                "class": "App\\Http\\Middleware\\Installed",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\Installed",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 126,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
                "line": 807,
                "function": "then",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
                "line": 786,
                "function": "runRouteWithinStack",
                "class": "Illuminate\\Routing\\Router",
                "type": "->",
                "args": [
                    {
                        "uri": "api/ecosystem/startups",
                        "methods": [
                            "GET",
                            "HEAD"
                        ],
                        "action": {
                            "middleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                            "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                            "namespace": null,
                            "prefix": "api/ecosystem",
                            "where": []
                        },
                        "isFallback": false,
                        "controller": {
                            "locale": null,
                            "countryCode": null,
                            "cacheExpiration": 86400,
                            "perPage": 10,
                            "disk": {},
                            "cookieExpiration": 1440
                        },
                        "defaults": [],
                        "wheres": [],
                        "parameters": [],
                        "parameterNames": [],
                        "computedMiddleware": [
                            "api",
                            "throttle:ecosystem-api"
                        ],
                        "compiled": {}
                    },
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
                "line": 750,
                "function": "runRoute",
                "class": "Illuminate\\Routing\\Router",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {
                        "uri": "api/ecosystem/startups",
                        "methods": [
                            "GET",
                            "HEAD"
                        ],
                        "action": {
                            "middleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                            "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                            "namespace": null,
                            "prefix": "api/ecosystem",
                            "where": []
                        },
                        "isFallback": false,
                        "controller": {
                            "locale": null,
                            "countryCode": null,
                            "cacheExpiration": 86400,
                            "perPage": 10,
                            "disk": {},
                            "cookieExpiration": 1440
                        },
                        "defaults": [],
                        "wheres": [],
                        "parameters": [],
                        "parameterNames": [],
                        "computedMiddleware": [
                            "api",
                            "throttle:ecosystem-api"
                        ],
                        "compiled": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
                "line": 739,
                "function": "dispatchToRoute",
                "class": "Illuminate\\Routing\\Router",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
                "line": 200,
                "function": "dispatch",
                "class": "Illuminate\\Routing\\Router",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 169,
                "function": "Illuminate\\Foundation\\Http\\{closure}",
                "class": "Illuminate\\Foundation\\Http\\Kernel",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\barryvdh\\laravel-debugbar\\src\\Middleware\\InjectDebugbar.php",
                "line": 59,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Barryvdh\\Debugbar\\Middleware\\InjectDebugbar",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\packages\\larapen\\honeypot\\src\\app\\Http\\Middleware\\ProtectAgainstSpam.php",
                "line": 15,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Larapen\\Honeypot\\app\\Http\\Middleware\\ProtectAgainstSpam",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest.php",
                "line": 21,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull.php",
                "line": 31,
                "function": "handle",
                "class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest.php",
                "line": 21,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TrimStrings.php",
                "line": 51,
                "function": "handle",
                "class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Foundation\\Http\\Middleware\\TrimStrings",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\ValidatePostSize.php",
                "line": 27,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Http\\Middleware\\ValidatePostSize",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\PreventRequestsDuringMaintenance.php",
                "line": 114,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\PreventRequestsDuringMaintenance",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\HandleCors.php",
                "line": 61,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Http\\Middleware\\HandleCors",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\TrustProxies.php",
                "line": 58,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Http\\Middleware\\TrustProxies",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 126,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
                "line": 175,
                "function": "then",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
                "line": 144,
                "function": "sendRequestThroughRouter",
                "class": "Illuminate\\Foundation\\Http\\Kernel",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
                "line": 256,
                "function": "handle",
                "class": "Illuminate\\Foundation\\Http\\Kernel",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
                "line": 249,
                "function": "callLaravelRoute",
                "class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
                "line": 86,
                "function": "makeApiCall",
                "class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {
                        "uri": "api/ecosystem/startups",
                        "methods": [
                            "GET",
                            "HEAD"
                        ],
                        "action": {
                            "middleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                            "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                            "namespace": null,
                            "prefix": "api/ecosystem",
                            "where": []
                        },
                        "isFallback": false,
                        "controller": {
                            "locale": null,
                            "countryCode": null,
                            "cacheExpiration": 86400,
                            "perPage": 10,
                            "disk": {},
                            "cookieExpiration": 1440
                        },
                        "defaults": [],
                        "wheres": [],
                        "parameters": [],
                        "parameterNames": [],
                        "computedMiddleware": [
                            "api",
                            "throttle:ecosystem-api"
                        ],
                        "compiled": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
                "line": 39,
                "function": "makeResponseCall",
                "class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
                "type": "->",
                "args": [
                    {
                        "custom": [],
                        "httpMethods": [
                            "GET"
                        ],
                        "uri": "api/ecosystem/startups",
                        "metadata": {
                            "custom": [],
                            "groupName": "Startups",
                            "groupDescription": "",
                            "subgroup": "",
                            "subgroupDescription": "",
                            "title": "",
                            "description": "",
                            "authenticated": false
                        },
                        "headers": {
                            "Content-Type": "application/json",
                            "Accept": "application/json",
                            "Content-Language": "en",
                            "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                            "X-AppType": "docs"
                        },
                        "urlParameters": [],
                        "cleanUrlParameters": [],
                        "queryParameters": [],
                        "cleanQueryParameters": [],
                        "bodyParameters": [],
                        "cleanBodyParameters": [],
                        "fileParameters": [],
                        "responses": [],
                        "responseFields": [],
                        "auth": [],
                        "controller": {
                            "name": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController"
                        },
                        "method": {
                            "name": "index",
                            "class": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController"
                        },
                        "route": {
                            "uri": "api/ecosystem/startups",
                            "methods": [
                                "GET",
                                "HEAD"
                            ],
                            "action": {
                                "middleware": [
                                    "api",
                                    "throttle:ecosystem-api"
                                ],
                                "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                                "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                                "namespace": null,
                                "prefix": "api/ecosystem",
                                "where": []
                            },
                            "isFallback": false,
                            "controller": {
                                "locale": null,
                                "countryCode": null,
                                "cacheExpiration": 86400,
                                "perPage": 10,
                                "disk": {},
                                "cookieExpiration": 1440
                            },
                            "defaults": [],
                            "wheres": [],
                            "parameters": [],
                            "parameterNames": [],
                            "computedMiddleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "compiled": {}
                        }
                    },
                    {
                        "only": [
                            "GET *"
                        ],
                        "except": [],
                        "config": {
                            "app.env": "local",
                            "app.debug": false
                        },
                        "queryParams": [],
                        "bodyParams": [],
                        "fileParams": [],
                        "cookies": []
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
                "line": 240,
                "function": "__invoke",
                "class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
                "type": "->",
                "args": [
                    {
                        "custom": [],
                        "httpMethods": [
                            "GET"
                        ],
                        "uri": "api/ecosystem/startups",
                        "metadata": {
                            "custom": [],
                            "groupName": "Startups",
                            "groupDescription": "",
                            "subgroup": "",
                            "subgroupDescription": "",
                            "title": "",
                            "description": "",
                            "authenticated": false
                        },
                        "headers": {
                            "Content-Type": "application/json",
                            "Accept": "application/json",
                            "Content-Language": "en",
                            "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                            "X-AppType": "docs"
                        },
                        "urlParameters": [],
                        "cleanUrlParameters": [],
                        "queryParameters": [],
                        "cleanQueryParameters": [],
                        "bodyParameters": [],
                        "cleanBodyParameters": [],
                        "fileParameters": [],
                        "responses": [],
                        "responseFields": [],
                        "auth": [],
                        "controller": {
                            "name": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController"
                        },
                        "method": {
                            "name": "index",
                            "class": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController"
                        },
                        "route": {
                            "uri": "api/ecosystem/startups",
                            "methods": [
                                "GET",
                                "HEAD"
                            ],
                            "action": {
                                "middleware": [
                                    "api",
                                    "throttle:ecosystem-api"
                                ],
                                "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                                "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                                "namespace": null,
                                "prefix": "api/ecosystem",
                                "where": []
                            },
                            "isFallback": false,
                            "controller": {
                                "locale": null,
                                "countryCode": null,
                                "cacheExpiration": 86400,
                                "perPage": 10,
                                "disk": {},
                                "cookieExpiration": 1440
                            },
                            "defaults": [],
                            "wheres": [],
                            "parameters": [],
                            "parameterNames": [],
                            "computedMiddleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "compiled": {}
                        }
                    },
                    {
                        "only": [
                            "GET *"
                        ],
                        "except": [],
                        "config": {
                            "app.env": "local",
                            "app.debug": false
                        },
                        "queryParams": [],
                        "bodyParams": [],
                        "fileParams": [],
                        "cookies": []
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
                "line": 165,
                "function": "iterateThroughStrategies",
                "class": "Knuckles\\Scribe\\Extracting\\Extractor",
                "type": "->",
                "args": [
                    "responses",
                    {
                        "custom": [],
                        "httpMethods": [
                            "GET"
                        ],
                        "uri": "api/ecosystem/startups",
                        "metadata": {
                            "custom": [],
                            "groupName": "Startups",
                            "groupDescription": "",
                            "subgroup": "",
                            "subgroupDescription": "",
                            "title": "",
                            "description": "",
                            "authenticated": false
                        },
                        "headers": {
                            "Content-Type": "application/json",
                            "Accept": "application/json",
                            "Content-Language": "en",
                            "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                            "X-AppType": "docs"
                        },
                        "urlParameters": [],
                        "cleanUrlParameters": [],
                        "queryParameters": [],
                        "cleanQueryParameters": [],
                        "bodyParameters": [],
                        "cleanBodyParameters": [],
                        "fileParameters": [],
                        "responses": [],
                        "responseFields": [],
                        "auth": [],
                        "controller": {
                            "name": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController"
                        },
                        "method": {
                            "name": "index",
                            "class": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController"
                        },
                        "route": {
                            "uri": "api/ecosystem/startups",
                            "methods": [
                                "GET",
                                "HEAD"
                            ],
                            "action": {
                                "middleware": [
                                    "api",
                                    "throttle:ecosystem-api"
                                ],
                                "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                                "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                                "namespace": null,
                                "prefix": "api/ecosystem",
                                "where": []
                            },
                            "isFallback": false,
                            "controller": {
                                "locale": null,
                                "countryCode": null,
                                "cacheExpiration": 86400,
                                "perPage": 10,
                                "disk": {},
                                "cookieExpiration": 1440
                            },
                            "defaults": [],
                            "wheres": [],
                            "parameters": [],
                            "parameterNames": [],
                            "computedMiddleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "compiled": {}
                        }
                    },
                    [],
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
                "line": 97,
                "function": "fetchResponses",
                "class": "Knuckles\\Scribe\\Extracting\\Extractor",
                "type": "->",
                "args": [
                    {
                        "custom": [],
                        "httpMethods": [
                            "GET"
                        ],
                        "uri": "api/ecosystem/startups",
                        "metadata": {
                            "custom": [],
                            "groupName": "Startups",
                            "groupDescription": "",
                            "subgroup": "",
                            "subgroupDescription": "",
                            "title": "",
                            "description": "",
                            "authenticated": false
                        },
                        "headers": {
                            "Content-Type": "application/json",
                            "Accept": "application/json",
                            "Content-Language": "en",
                            "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                            "X-AppType": "docs"
                        },
                        "urlParameters": [],
                        "cleanUrlParameters": [],
                        "queryParameters": [],
                        "cleanQueryParameters": [],
                        "bodyParameters": [],
                        "cleanBodyParameters": [],
                        "fileParameters": [],
                        "responses": [],
                        "responseFields": [],
                        "auth": [],
                        "controller": {
                            "name": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController"
                        },
                        "method": {
                            "name": "index",
                            "class": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController"
                        },
                        "route": {
                            "uri": "api/ecosystem/startups",
                            "methods": [
                                "GET",
                                "HEAD"
                            ],
                            "action": {
                                "middleware": [
                                    "api",
                                    "throttle:ecosystem-api"
                                ],
                                "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                                "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                                "namespace": null,
                                "prefix": "api/ecosystem",
                                "where": []
                            },
                            "isFallback": false,
                            "controller": {
                                "locale": null,
                                "countryCode": null,
                                "cacheExpiration": 86400,
                                "perPage": 10,
                                "disk": {},
                                "cookieExpiration": 1440
                            },
                            "defaults": [],
                            "wheres": [],
                            "parameters": [],
                            "parameterNames": [],
                            "computedMiddleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "compiled": {}
                        }
                    },
                    []
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
                "line": 125,
                "function": "processRoute",
                "class": "Knuckles\\Scribe\\Extracting\\Extractor",
                "type": "->",
                "args": [
                    {
                        "uri": "api/ecosystem/startups",
                        "methods": [
                            "GET",
                            "HEAD"
                        ],
                        "action": {
                            "middleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                            "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\StartupController@index",
                            "namespace": null,
                            "prefix": "api/ecosystem",
                            "where": []
                        },
                        "isFallback": false,
                        "controller": {
                            "locale": null,
                            "countryCode": null,
                            "cacheExpiration": 86400,
                            "perPage": 10,
                            "disk": {},
                            "cookieExpiration": 1440
                        },
                        "defaults": [],
                        "wheres": [],
                        "parameters": [],
                        "parameterNames": [],
                        "computedMiddleware": [
                            "api",
                            "throttle:ecosystem-api"
                        ],
                        "compiled": {}
                    },
                    []
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
                "line": 72,
                "function": "extractEndpointsInfoFromLaravelApp",
                "class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
                "type": "->",
                "args": [
                    [
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {}
                    ],
                    [
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 500,
                                    "content": "{\"success\":false,\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"result\":null,\"error\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"exception\":{\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458\",\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"line\":30,\"code\":0,\"trace\":[{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"__construct\",\"class\":\"App\\\\Http\\\\Resources\\\\BaseResource\",\"type\":\"->\",\"args\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},0]},{\"function\":\"Illuminate\\\\Support\\\\Traits\\\\{closure}\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},0]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Arr.php\",\"line\":754,\"function\":\"array_map\",\"args\":[{},[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],[0,1,2,3,4,5,6,7,8,9]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Collection.php\",\"line\":809,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Arr\",\"type\":\"::\",\"args\":[[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Database\\\\Eloquent\\\\Collection.php\",\"line\":418,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"map\",\"class\":\"Illuminate\\\\Database\\\\Eloquent\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Support\\\\Traits\\\\ForwardsCalls.php\",\"line\":23,\"function\":\"mapInto\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pagination\\\\AbstractPaginator.php\",\"line\":801,\"function\":\"forwardCallTo\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\CollectsResources.php\",\"line\":35,\"function\":\"__call\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection.php\",\"line\":53,\"function\":\"collectResource\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"« Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next »\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection.php\",\"line\":31,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"« Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next »\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":96,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"« Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next »\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23},\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":81,\"function\":\"newCollection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"« Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next »\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Services\\\\StartupService.php\",\"line\":75,\"function\":\"collection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"« Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next »\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController.php\",\"line\":34,\"function\":\"list\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Services\\\\StartupService\",\"type\":\"->\",\"args\":[[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\ControllerDispatcher.php\",\"line\":46,\"function\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":265,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\ControllerDispatcher\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"index\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":211,\"function\":\"runController\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":808,\"function\":\"run\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Routing\\\\{closure}\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\LastUserActivity.php\",\"line\":46,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\LastUserActivity\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\BannedUser.php\",\"line\":45,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\BannedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\DemoRestriction.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\DemoRestriction\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser.php\",\"line\":40,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\GetLocalization.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\GetLocalization\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\RequirementsChecker.php\",\"line\":44,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\RequirementsChecker\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings.php\",\"line\":50,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":123,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":88,\"function\":\"handleRequestUsingNamedLimiter\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\",{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":26,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\{closure}\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":25,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\VerifyAPIAccess.php\",\"line\":47,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\VerifyAPIAccess\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":103,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":45,\"function\":\"handleApi\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":807,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":786,\"function\":\"runRouteWithinStack\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":750,\"function\":\"runRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":739,\"function\":\"dispatchToRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":200,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Foundation\\\\Http\\\\{closure}\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\barryvdh\\\\laravel-debugbar\\\\src\\\\Middleware\\\\InjectDebugbar.php\",\"line\":59,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Barryvdh\\\\Debugbar\\\\Middleware\\\\InjectDebugbar\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\packages\\\\larapen\\\\honeypot\\\\src\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam.php\",\"line\":15,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Larapen\\\\Honeypot\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull.php\",\"line\":31,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings.php\",\"line\":51,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize.php\",\"line\":27,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance.php\",\"line\":114,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\HandleCors.php\",\"line\":61,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\HandleCors\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\TrustProxies.php\",\"line\":58,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\TrustProxies\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":175,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":144,\"function\":\"sendRequestThroughRouter\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":256,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":249,\"function\":\"callLaravelRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":86,\"function\":\"makeApiCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":39,\"function\":\"makeResponseCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":240,\"function\":\"__invoke\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":165,\"function\":\"iterateThroughStrategies\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[\"responses\",{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":97,\"function\":\"fetchResponses\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":125,\"function\":\"processRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":72,\"function\":\"extractEndpointsInfoFromLaravelApp\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}],[],[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":50,\"function\":\"extractEndpointsInfoAndWriteToDisk\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[{},false]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Commands\\\\GenerateDocumentation.php\",\"line\":55,\"function\":\"get\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":36,\"function\":\"handle\",\"class\":\"Knuckles\\\\Scribe\\\\Commands\\\\GenerateDocumentation\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Util.php\",\"line\":43,\"function\":\"Illuminate\\\\Container\\\\{closure}\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":96,\"function\":\"unwrapIfClosure\",\"class\":\"Illuminate\\\\Container\\\\Util\",\"type\":\"::\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":35,\"function\":\"callBoundMethod\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Container.php\",\"line\":754,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],[],null]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":211,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\Container\",\"type\":\"->\",\"args\":[[{},\"handle\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Command\\\\Command.php\",\"line\":318,\"function\":\"execute\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":180,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Command\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":1074,\"function\":\"run\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":341,\"function\":\"doRunCommand\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":192,\"function\":\"doRun\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Console\\\\Kernel.php\",\"line\":197,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Application.php\",\"line\":1234,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Console\\\\Kernel\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\artisan\",\"line\":13,\"function\":\"handleCommand\",\"class\":\"Illuminate\\\\Foundation\\\\Application\",\"type\":\"->\",\"args\":[{}]}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{id}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "792",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "792"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Startup not found.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "Must be 2 characters.",
                                    "required": false,
                                    "example": "uy",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "aasxuphfzoodpj",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tagline": {
                                    "name": "tagline",
                                    "description": "Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "ysyr",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 50000 characters.",
                                    "required": false,
                                    "example": "Vel molestias qui ut enim iure voluptates.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "vhjadwugnfjwzbfrpsov",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": false,
                                    "example": "pre_seed",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "website": {
                                    "name": "website",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "whlicyzjiuhagssmpjv",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "founded_year": {
                                    "name": "founded_year",
                                    "description": "Must be at least 1900. Must not be greater than 2027.",
                                    "required": false,
                                    "example": 22,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "team_size": {
                                    "name": "team_size",
                                    "description": "Must be at least 1. Must not be greater than 10000.",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "revenue_monthly": {
                                    "name": "revenue_monthly",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 20,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "xrw",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "fundraising_target": {
                                    "name": "fundraising_target",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 3,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "uy",
                                "name": "aasxuphfzoodpj",
                                "tagline": "ysyr",
                                "description": "Vel molestias qui ut enim iure voluptates.",
                                "sector": "vhjadwugnfjwzbfrpsov",
                                "stage": "pre_seed",
                                "website": "whlicyzjiuhagssmpjv",
                                "founded_year": 22,
                                "team_size": 5,
                                "revenue_monthly": 20,
                                "currency_code": "xrw",
                                "fundraising_target": 3
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{id}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "84",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "84"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "Must be 2 characters.",
                                    "required": false,
                                    "example": "cx",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "wfnzrcvdz",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tagline": {
                                    "name": "tagline",
                                    "description": "Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "wutcwwitvlod",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 50000 characters.",
                                    "required": false,
                                    "example": "Quia sed veniam repudiandae molestiae eos.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "mxuofbler",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": false,
                                    "example": "idea",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "website": {
                                    "name": "website",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "iwnknplvomjocshy",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "founded_year": {
                                    "name": "founded_year",
                                    "description": "Must be at least 1900. Must not be greater than 2027.",
                                    "required": false,
                                    "example": 8,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "team_size": {
                                    "name": "team_size",
                                    "description": "Must be at least 1. Must not be greater than 10000.",
                                    "required": false,
                                    "example": 22,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "revenue_monthly": {
                                    "name": "revenue_monthly",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 36,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "rjf",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "fundraising_target": {
                                    "name": "fundraising_target",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 73,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The <code>id</code> of an existing record in the posts table.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "cx",
                                "name": "wfnzrcvdz",
                                "tagline": "wutcwwitvlod",
                                "description": "Quia sed veniam repudiandae molestiae eos.",
                                "sector": "mxuofbler",
                                "stage": "idea",
                                "website": "iwnknplvomjocshy",
                                "founded_year": 8,
                                "team_size": 22,
                                "revenue_monthly": 36,
                                "currency_code": "rjf",
                                "fundraising_target": 73,
                                "post_id": 1
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{id}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "6118135",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "6118135"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{id}/submit-review",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "15",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "15"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{id}/kpi",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "929223",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "929223"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "83924",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "83924"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "6542",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "6542"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "cxpfupzc",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "role_title": {
                                    "name": "role_title",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "lqauwptvjkuoghmkmfulklj",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "Must be a valid email address. Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "bud18@example.com",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://hintz.net/",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "is_founder": {
                                    "name": "is_founder",
                                    "description": "",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 83,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 12,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "cxpfupzc",
                                "role_title": "lqauwptvjkuoghmkmfulklj",
                                "email": "bud18@example.com",
                                "linkedin_url": "http://hintz.net/",
                                "is_founder": false,
                                "sort_order": 83,
                                "user_id": 12
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team/{memberId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "2",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "347",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "2",
                                "memberId": "347"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "qeoajazjaokqfwmgpb",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "role_title": {
                                    "name": "role_title",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "clhwnjxcfxxdrttzgiidj",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "Must be a valid email address. Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "sally.erdman@example.net",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://kautzer.com/",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "is_founder": {
                                    "name": "is_founder",
                                    "description": "",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 69,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "qeoajazjaokqfwmgpb",
                                "role_title": "clhwnjxcfxxdrttzgiidj",
                                "email": "sally.erdman@example.net",
                                "linkedin_url": "http://kautzer.com/",
                                "is_founder": false,
                                "sort_order": 69,
                                "user_id": 3
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team/{memberId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "7",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "4",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "7",
                                "memberId": "4"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "338",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "338"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "4709",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "4709"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "yayhqikpprrkyoijgy",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "Modi neque nam corrupti voluptas necessitatibus ad quo et.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "achieved_at": {
                                    "name": "achieved_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:12",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "yayhqikpprrkyoijgy",
                                "description": "Modi neque nam corrupti voluptas necessitatibus ad quo et.",
                                "achieved_at": "2026-05-21T04:42:12",
                                "sort_order": 1
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones/{milestoneId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "64",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "64",
                                "milestoneId": "8"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "drrhijbcbcmyys",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "Molestias quis facere et dolorem.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "achieved_at": {
                                    "name": "achieved_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:12",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 19,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "drrhijbcbcmyys",
                                "description": "Molestias quis facere et dolorem.",
                                "achieved_at": "2026-05-21T04:42:12",
                                "sort_order": 19
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones/{milestoneId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "482",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "39",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "482",
                                "milestoneId": "39"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/media",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "9873",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "9873"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/media",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "87",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "87"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "file": {
                                    "name": "file",
                                    "description": "Must be a file. Must not be greater than 10240 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "type": {
                                    "name": "type",
                                    "description": "",
                                    "required": false,
                                    "example": "document",
                                    "type": "string",
                                    "enumValues": [
                                        "image",
                                        "document",
                                        "video"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "cpsldhyluebfbhcdazejvjw",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 16,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "type": "document",
                                "title": "cpsldhyluebfbhcdazejvjw",
                                "sort_order": 16
                            },
                            "fileParameters": {
                                "file": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/media/{mediaId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "9",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "mediaId": {
                                    "name": "mediaId",
                                    "description": "",
                                    "required": true,
                                    "example": "472339",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "9",
                                "mediaId": "472339"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/logo",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "83",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "83"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "logo": {
                                    "name": "logo",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": [],
                            "fileParameters": {
                                "logo": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/pitch-deck",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "61",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "61"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "pitch_deck": {
                                    "name": "pitch_deck",
                                    "description": "Must be a file. Must not be greater than 20480 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": [],
                            "fileParameters": {
                                "pitch_deck": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "66",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "99",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "66",
                                "roundId": "99"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "2",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "2"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "glxfqtky",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Itaque maxime aliquid eos veritatis.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": true,
                                    "example": "series_a",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "instrument": {
                                    "name": "instrument",
                                    "description": "",
                                    "required": true,
                                    "example": "safe",
                                    "type": "string",
                                    "enumValues": [
                                        "equity",
                                        "safe",
                                        "convertible_note"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 29,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "minimum_investment": {
                                    "name": "minimum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 27,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_investment": {
                                    "name": "maximum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 9,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "pre_money_valuation": {
                                    "name": "pre_money_valuation",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 81,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_valuation_cap": {
                                    "name": "safe_valuation_cap",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 22,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_discount_percent": {
                                    "name": "safe_discount_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 10,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "ipl",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:13",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "glxfqtky",
                                "description": "Itaque maxime aliquid eos veritatis.",
                                "stage": "series_a",
                                "instrument": "safe",
                                "target_amount": 29,
                                "minimum_investment": 27,
                                "maximum_investment": 9,
                                "pre_money_valuation": 81,
                                "safe_valuation_cap": 22,
                                "safe_discount_percent": 10,
                                "currency_code": "ipl",
                                "closes_at": "2026-05-21T04:42:13"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "12",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "5",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "12",
                                "roundId": "5"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "aizvchpss",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Voluptatibus vel perferendis soluta a sunt veniam tenetur est.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": true,
                                    "example": "growth",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "instrument": {
                                    "name": "instrument",
                                    "description": "",
                                    "required": true,
                                    "example": "equity",
                                    "type": "string",
                                    "enumValues": [
                                        "equity",
                                        "safe",
                                        "convertible_note"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 49,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "minimum_investment": {
                                    "name": "minimum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 78,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_investment": {
                                    "name": "maximum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 76,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "pre_money_valuation": {
                                    "name": "pre_money_valuation",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 7,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_valuation_cap": {
                                    "name": "safe_valuation_cap",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 19,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_discount_percent": {
                                    "name": "safe_discount_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 13,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "qgf",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:13",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "aizvchpss",
                                "description": "Voluptatibus vel perferendis soluta a sunt veniam tenetur est.",
                                "stage": "growth",
                                "instrument": "equity",
                                "target_amount": 49,
                                "minimum_investment": 78,
                                "maximum_investment": 76,
                                "pre_money_valuation": 7,
                                "safe_valuation_cap": 19,
                                "safe_discount_percent": 13,
                                "currency_code": "qgf",
                                "closes_at": "2026-05-21T04:42:13"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/open",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "55",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "918",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "55",
                                "roundId": "918"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/close",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "82088",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "931689552",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "82088",
                                "roundId": "931689552"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "746",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "4925",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "746",
                                "roundId": "4925"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "20",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "989",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "20",
                                "roundId": "989"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "amount": {
                                    "name": "amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 71,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "kxh",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": false,
                                    "example": "jfuxvqftdtsmzp",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "syndicate_id": {
                                    "name": "syndicate_id",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 89,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "amount": 71,
                                "currency_code": "kxh",
                                "notes": "jfuxvqftdtsmzp",
                                "syndicate_id": 89
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments/{commitmentId}/confirm",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "9539845",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "3076585",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "commitmentId": {
                                    "name": "commitmentId",
                                    "description": "",
                                    "required": true,
                                    "example": "itaque",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "9539845",
                                "roundId": "3076585",
                                "commitmentId": "itaque"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments/{commitmentId}/cancel",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "98",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "commitmentId": {
                                    "name": "commitmentId",
                                    "description": "",
                                    "required": true,
                                    "example": "qui",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "1",
                                "roundId": "98",
                                "commitmentId": "qui"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/due-diligence",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "706398",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "8",
                                "roundId": "706398"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/due-diligence/{itemId}/toggle",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "42644280",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "itemId": {
                                    "name": "itemId",
                                    "description": "",
                                    "required": true,
                                    "example": "accusamus",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "42644280",
                                "roundId": "1",
                                "itemId": "accusamus"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "55244475",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "55244475"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "holder_name": {
                                    "name": "holder_name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "nfweimfsbcdtptxmumgp",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "holder_type": {
                                    "name": "holder_type",
                                    "description": "",
                                    "required": true,
                                    "example": "other",
                                    "type": "string",
                                    "enumValues": [
                                        "founder",
                                        "investor",
                                        "employee",
                                        "advisor",
                                        "other"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 20,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "funding_round_id": {
                                    "name": "funding_round_id",
                                    "description": "",
                                    "required": false,
                                    "example": 16,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ownership_percent": {
                                    "name": "ownership_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 13,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "shares": {
                                    "name": "shares",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 33,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "invested_amount": {
                                    "name": "invested_amount",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 52,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "gur",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": false,
                                    "example": "ckunnjmscekco",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "holder_name": "nfweimfsbcdtptxmumgp",
                                "holder_type": "other",
                                "user_id": 20,
                                "funding_round_id": 16,
                                "ownership_percent": 13,
                                "shares": 33,
                                "invested_amount": 52,
                                "currency_code": "gur",
                                "notes": "ckunnjmscekco"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table/{entryId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entryId": {
                                    "name": "entryId",
                                    "description": "",
                                    "required": true,
                                    "example": "4",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "3",
                                "entryId": "4"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "holder_name": {
                                    "name": "holder_name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "zxgdgzzsrobe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "holder_type": {
                                    "name": "holder_type",
                                    "description": "",
                                    "required": true,
                                    "example": "other",
                                    "type": "string",
                                    "enumValues": [
                                        "founder",
                                        "investor",
                                        "employee",
                                        "advisor",
                                        "other"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "funding_round_id": {
                                    "name": "funding_round_id",
                                    "description": "",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ownership_percent": {
                                    "name": "ownership_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 23,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "shares": {
                                    "name": "shares",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 82,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "invested_amount": {
                                    "name": "invested_amount",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 29,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "emz",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": false,
                                    "example": "asxnwr",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "holder_name": "zxgdgzzsrobe",
                                "holder_type": "other",
                                "user_id": 3,
                                "funding_round_id": 5,
                                "ownership_percent": 23,
                                "shares": 82,
                                "invested_amount": 29,
                                "currency_code": "emz",
                                "notes": "asxnwr"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table/{entryId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "645094",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entryId": {
                                    "name": "entryId",
                                    "description": "",
                                    "required": true,
                                    "example": "6",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "645094",
                                "entryId": "6"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/packages",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":[{\"id\":1,\"tier\":\"basic\",\"label\":\"Basic\",\"name\":\"أساسي\",\"description\":\"تقرير جدوى مع تحليل العائد ROI\",\"price\":\"999.00\",\"currencyCode\":\"SAR\",\"features\":[\"questionnaire\",\"roi\",\"html_report\"],\"includesConsultation\":false},{\"id\":2,\"tier\":\"standard\",\"label\":\"Standard\",\"name\":\"قياسي\",\"description\":\"تقرير كامل مع IRR وNPV وأقسام السوق\",\"price\":\"2499.00\",\"currencyCode\":\"SAR\",\"features\":[\"questionnaire\",\"roi\",\"irr\",\"npv\",\"html_report\",\"market_sections\"],\"includesConsultation\":false},{\"id\":3,\"tier\":\"premium\",\"label\":\"Premium\",\"name\":\"مميز\",\"description\":\"تقرير مؤسسي + جلسة استشارية مع خبير\",\"price\":\"4999.00\",\"currencyCode\":\"SAR\",\"features\":[\"questionnaire\",\"roi\",\"irr\",\"npv\",\"html_report\",\"consultation\"],\"includesConsultation\":true}]}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/templates",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":[{\"id\":3,\"sector\":\"fintech\",\"name\":\"Fintech\",\"description\":\"Template for financial technology startups\",\"questionCount\":5},{\"id\":4,\"sector\":\"healthtech\",\"name\":\"HealthTech\",\"description\":\"قالب دراسة جدوى للصحة الرقمية\",\"questionCount\":3},{\"id\":5,\"sector\":\"legal\",\"name\":\"Legal \\/ RegTech\",\"description\":\"قالب لخدمات قانونية وتقنية امتثال\",\"questionCount\":2},{\"id\":2,\"sector\":\"retail\",\"name\":\"Retail \\/ E-commerce\",\"description\":\"Template for retail and e-commerce ventures\",\"questionCount\":5},{\"id\":1,\"sector\":\"technology\",\"name\":\"Technology \\/ SaaS\",\"description\":\"Template for software and technology startups\",\"questionCount\":6}]}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/templates/{id}",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the template.",
                                    "required": true,
                                    "example": "04",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "04"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":4,\"sector\":\"healthtech\",\"name\":\"HealthTech\",\"description\":\"قالب دراسة جدوى للصحة الرقمية\",\"questionnaire\":[{\"id\":\"product\",\"type\":\"text\",\"label\":\"المنتج الطبي\\/الرقمي\",\"required\":true},{\"id\":\"regulatory\",\"type\":\"text\",\"label\":\"متطلبات تنظيمية\",\"required\":true},{\"id\":\"growth_rate\",\"type\":\"number\",\"label\":\"نمو سنوي %\",\"required\":true}],\"defaultFinancials\":{\"discount_rate\":0.14,\"operating_margin\":0.18,\"annual_revenue_y1\":400000,\"annual_revenue_y2\":1200000,\"annual_revenue_y3\":2800000,\"initial_investment\":800000}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/studies",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Create feasibility study",
                                "description": "Supports bilingual fields and multipart attachments (`gallery_images[]`, `documents[]`).",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "package_id": {
                                    "name": "package_id",
                                    "description": "Package ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "template_id": {
                                    "name": "template_id",
                                    "description": "Template ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "Arabic title.",
                                    "required": true,
                                    "example": "Feasibility study — SaaS",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "startup_id": {
                                    "name": "startup_id",
                                    "description": "optional Linked startup ID.",
                                    "required": false,
                                    "example": 9,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "title_en": {
                                    "name": "title_en",
                                    "description": "optional English title.",
                                    "required": false,
                                    "example": "explicabo",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "optional Arabic description.",
                                    "required": false,
                                    "example": "Voluptatem numquam eos odio rerum voluptatem laudantium autem.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description_en": {
                                    "name": "description_en",
                                    "description": "optional English description.",
                                    "required": false,
                                    "example": "quas",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "optional Sector (Arabic).",
                                    "required": false,
                                    "example": "quis",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector_en": {
                                    "name": "sector_en",
                                    "description": "optional Sector (English).",
                                    "required": false,
                                    "example": "rerum",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "cover_image": {
                                    "name": "cover_image",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "gallery_images": {
                                    "name": "gallery_images",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "documents": {
                                    "name": "documents",
                                    "description": "Must be a file. Must not be greater than 20480 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "package_id": 1,
                                "template_id": 1,
                                "title": "Feasibility study — SaaS",
                                "startup_id": 9,
                                "title_en": "explicabo",
                                "description": "Voluptatem numquam eos odio rerum voluptatem laudantium autem.",
                                "description_en": "quas",
                                "sector": "quis",
                                "sector_en": "rerum"
                            },
                            "fileParameters": {
                                "cover_image": null,
                                "gallery_images": [
                                    null
                                ],
                                "documents": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "0"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/answers",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "6318",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "6318"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "answers": {
                                    "name": "answers",
                                    "description": "",
                                    "required": true,
                                    "example": [],
                                    "type": "object",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials": {
                                    "name": "financials",
                                    "description": "",
                                    "required": false,
                                    "example": null,
                                    "type": "object",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.initial_investment": {
                                    "name": "financials.initial_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 76,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.annual_cash_flows": {
                                    "name": "financials.annual_cash_flows",
                                    "description": "",
                                    "required": false,
                                    "example": [
                                        219.274051
                                    ],
                                    "type": "number[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.discount_rate": {
                                    "name": "financials.discount_rate",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 23,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.projected_revenue": {
                                    "name": "financials.projected_revenue",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 63,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.projected_costs": {
                                    "name": "financials.projected_costs",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 63,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "answers": [],
                                "financials": {
                                    "initial_investment": 76,
                                    "annual_cash_flows": [
                                        219.274051
                                    ],
                                    "discount_rate": 23,
                                    "projected_revenue": 63,
                                    "projected_costs": 63
                                }
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/calculate",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "718",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "718"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/request-payment",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "1458",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "1458"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/confirm-payment",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Confirm online payment",
                                "description": "Marks study as paid and applies platform/provider commission split. Returns `commission` object in `result`.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_KEY}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "5",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "5"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hEdafav6Ze84k6PD1V5g3bc"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/mark-paid",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "29",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "29"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/generate-report",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "5",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "5"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/export",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/requests",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 500,
                                    "content": "{\"success\":false,\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"result\":null,\"error\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"exception\":{\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458\",\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"line\":30,\"code\":0,\"trace\":[{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"__construct\",\"class\":\"App\\\\Http\\\\Resources\\\\BaseResource\",\"type\":\"->\",\"args\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},0]},{\"function\":\"Illuminate\\\\Support\\\\Traits\\\\{closure}\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},0]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Arr.php\",\"line\":754,\"function\":\"array_map\",\"args\":[{},[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],[0,1,2,3,4,5,6,7,8,9]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Collection.php\",\"line\":809,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Arr\",\"type\":\"::\",\"args\":[[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Database\\\\Eloquent\\\\Collection.php\",\"line\":418,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"map\",\"class\":\"Illuminate\\\\Database\\\\Eloquent\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Support\\\\Traits\\\\ForwardsCalls.php\",\"line\":23,\"function\":\"mapInto\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pagination\\\\AbstractPaginator.php\",\"line\":801,\"function\":\"forwardCallTo\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\CollectsResources.php\",\"line\":35,\"function\":\"__call\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection.php\",\"line\":53,\"function\":\"collectResource\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection.php\",\"line\":31,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":96,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37},\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":81,\"function\":\"newCollection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Services\\\\ConsultingService.php\",\"line\":53,\"function\":\"collection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController.php\",\"line\":34,\"function\":\"listRequests\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Services\\\\ConsultingService\",\"type\":\"->\",\"args\":[[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\ControllerDispatcher.php\",\"line\":46,\"function\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":265,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\ControllerDispatcher\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"index\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":211,\"function\":\"runController\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":808,\"function\":\"run\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Routing\\\\{closure}\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\LastUserActivity.php\",\"line\":46,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\LastUserActivity\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\BannedUser.php\",\"line\":45,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\BannedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\DemoRestriction.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\DemoRestriction\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser.php\",\"line\":40,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\GetLocalization.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\GetLocalization\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\RequirementsChecker.php\",\"line\":44,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\RequirementsChecker\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings.php\",\"line\":50,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":123,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":88,\"function\":\"handleRequestUsingNamedLimiter\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\",{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":26,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\{closure}\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":25,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\VerifyAPIAccess.php\",\"line\":47,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\VerifyAPIAccess\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":103,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":45,\"function\":\"handleApi\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":807,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":786,\"function\":\"runRouteWithinStack\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":750,\"function\":\"runRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":739,\"function\":\"dispatchToRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":200,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Foundation\\\\Http\\\\{closure}\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\barryvdh\\\\laravel-debugbar\\\\src\\\\Middleware\\\\InjectDebugbar.php\",\"line\":59,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Barryvdh\\\\Debugbar\\\\Middleware\\\\InjectDebugbar\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\packages\\\\larapen\\\\honeypot\\\\src\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam.php\",\"line\":15,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Larapen\\\\Honeypot\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull.php\",\"line\":31,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings.php\",\"line\":51,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize.php\",\"line\":27,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance.php\",\"line\":114,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\HandleCors.php\",\"line\":61,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\HandleCors\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\TrustProxies.php\",\"line\":58,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\TrustProxies\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":175,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":144,\"function\":\"sendRequestThroughRouter\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":256,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":249,\"function\":\"callLaravelRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":86,\"function\":\"makeApiCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":39,\"function\":\"makeResponseCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":240,\"function\":\"__invoke\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":165,\"function\":\"iterateThroughStrategies\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[\"responses\",{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":97,\"function\":\"fetchResponses\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":125,\"function\":\"processRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":72,\"function\":\"extractEndpointsInfoFromLaravelApp\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}],[],[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":50,\"function\":\"extractEndpointsInfoAndWriteToDisk\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[{},false]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Commands\\\\GenerateDocumentation.php\",\"line\":55,\"function\":\"get\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":36,\"function\":\"handle\",\"class\":\"Knuckles\\\\Scribe\\\\Commands\\\\GenerateDocumentation\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Util.php\",\"line\":43,\"function\":\"Illuminate\\\\Container\\\\{closure}\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":96,\"function\":\"unwrapIfClosure\",\"class\":\"Illuminate\\\\Container\\\\Util\",\"type\":\"::\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":35,\"function\":\"callBoundMethod\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Container.php\",\"line\":754,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],[],null]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":211,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\Container\",\"type\":\"->\",\"args\":[[{},\"handle\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Command\\\\Command.php\",\"line\":318,\"function\":\"execute\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":180,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Command\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":1074,\"function\":\"run\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":341,\"function\":\"doRunCommand\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":192,\"function\":\"doRun\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Console\\\\Kernel.php\",\"line\":197,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Application.php\",\"line\":1234,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Console\\\\Kernel\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\artisan\",\"line\":13,\"function\":\"handleCommand\",\"class\":\"Illuminate\\\\Foundation\\\\Application\",\"type\":\"->\",\"args\":[{}]}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "4693",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4693"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Consulting request not found.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Create consulting request",
                                "description": "Use `category` matching active `consulting_service_catalog.code`. `financial` uses `financial_accounting` commission rates.\nMultipart: `gallery_images[]`, `documents[]`.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_KEY}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "startup_id": {
                                    "name": "startup_id",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 18,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "category": {
                                    "name": "category",
                                    "description": "Catalog code.",
                                    "required": true,
                                    "example": "legal",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "",
                                    "required": true,
                                    "example": "repudiandae",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "budget_min": {
                                    "name": "budget_min",
                                    "description": "optional",
                                    "required": false,
                                    "example": 269.40432,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "budget_max": {
                                    "name": "budget_max",
                                    "description": "optional",
                                    "required": false,
                                    "example": 23310.31072,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "pnv",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "deadline_at": {
                                    "name": "deadline_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:07",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "title_en": {
                                    "name": "title_en",
                                    "description": "optional",
                                    "required": false,
                                    "example": "voluptas",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "",
                                    "required": true,
                                    "example": "Dolore iusto porro iste nesciunt totam vel.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description_en": {
                                    "name": "description_en",
                                    "description": "optional",
                                    "required": false,
                                    "example": "natus",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "optional",
                                    "required": false,
                                    "example": "unde",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector_en": {
                                    "name": "sector_en",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "twfyzmyurbfw",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "cover_image": {
                                    "name": "cover_image",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "gallery_images": {
                                    "name": "gallery_images",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "documents": {
                                    "name": "documents",
                                    "description": "Must be a file. Must not be greater than 20480 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "startup_id": 18,
                                "category": "legal",
                                "title": "repudiandae",
                                "budget_min": 269.40432,
                                "budget_max": 23310.31072,
                                "currency_code": "pnv",
                                "deadline_at": "2026-05-21T04:42:07",
                                "title_en": "voluptas",
                                "description": "Dolore iusto porro iste nesciunt totam vel.",
                                "description_en": "natus",
                                "sector": "unde",
                                "sector_en": "twfyzmyurbfw"
                            },
                            "fileParameters": {
                                "cover_image": null,
                                "gallery_images": [
                                    null
                                ],
                                "documents": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer a3f6hb1DEdvk4PV5acg6Z8e"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}/cancel",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "741652902",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "741652902"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}/proposals",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "8251",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8251"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "amount": {
                                    "name": "amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 53,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "ecc",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "delivery_days": {
                                    "name": "delivery_days",
                                    "description": "Must be at least 1. Must not be greater than 365.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "proposal_text": {
                                    "name": "proposal_text",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": true,
                                    "example": "lfeedkealhaqjfz",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "amount": 53,
                                "currency_code": "ecc",
                                "delivery_days": 2,
                                "proposal_text": "lfeedkealhaqjfz"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}/proposals/{proposalId}/accept",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "8166",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "proposalId": {
                                    "name": "proposalId",
                                    "description": "",
                                    "required": true,
                                    "example": "132789987",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8166",
                                "proposalId": "132789987"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/engagements",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "5339",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "5339"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/complete",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "51",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "51"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/review",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "2774",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "2774"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "rating": {
                                    "name": "rating",
                                    "description": "Must be at least 1. Must not be greater than 5.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "comment": {
                                    "name": "comment",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "y",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "rating": 1,
                                "comment": "y"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/milestones/{milestoneId}/fund",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "8674048",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "55",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8674048",
                                "milestoneId": "55"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/milestones/{milestoneId}/release",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "314",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "034940",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "314",
                                "milestoneId": "034940"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consultant/profile/{userId}",
                            "metadata": {
                                "groupName": "Consultant & Providers",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": "26",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": "26"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":10,\"userId\":26,\"bio\":null,\"specialties\":[],\"hourlyRate\":null,\"currencyCode\":null,\"ratingAvg\":null,\"reviewsCount\":null,\"isVerified\":false,\"user\":{\"id\":26,\"name\":\"لينا الخريجي\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consultant/profile",
                            "metadata": {
                                "groupName": "Consultant & Providers",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/consultant/profile",
                            "metadata": {
                                "groupName": "Consultant & Providers",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "bio": {
                                    "name": "bio",
                                    "description": "Must not be greater than 10000 characters.",
                                    "required": false,
                                    "example": "uqiba",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "specialties": {
                                    "name": "specialties",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": [
                                        "osnivesnktl"
                                    ],
                                    "type": "string[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "hourly_rate": {
                                    "name": "hourly_rate",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 57,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "htn",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "bio": "uqiba",
                                "specialties": [
                                    "osnivesnktl"
                                ],
                                "hourly_rate": 57,
                                "currency_code": "htn"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/founder/profile",
                            "metadata": {
                                "groupName": "Founder",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/founder/profile",
                            "metadata": {
                                "groupName": "Founder",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "headline": {
                                    "name": "headline",
                                    "description": "Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "lzoxyednsfne",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "bio": {
                                    "name": "bio",
                                    "description": "Must not be greater than 10000 characters.",
                                    "required": false,
                                    "example": "cjnnnqo",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://beatty.org/vitae-consequatur-vitae-ut-rem-distinctio-eligendi-totam.html",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "twitter_url": {
                                    "name": "twitter_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "https://shields.com/reiciendis-et-sed-magni-nihil-quis-at.html",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "experience_years": {
                                    "name": "experience_years",
                                    "description": "Must be at least 0. Must not be greater than 80.",
                                    "required": false,
                                    "example": 10,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "headline": "lzoxyednsfne",
                                "bio": "cjnnnqo",
                                "linkedin_url": "http://beatty.org/vitae-consequatur-vitae-ut-rem-distinctio-eligendi-totam.html",
                                "twitter_url": "https://shields.com/reiciendis-et-sed-magni-nihil-quis-at.html",
                                "experience_years": 10
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/profile",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/investor/profile",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "investor_type": {
                                    "name": "investor_type",
                                    "description": "",
                                    "required": false,
                                    "example": "corporate",
                                    "type": "string",
                                    "enumValues": [
                                        "angel",
                                        "vc",
                                        "family_office",
                                        "corporate",
                                        "syndicate"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "organization_name": {
                                    "name": "organization_name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "lhdvmzhyptblqvszldhvu",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "bio": {
                                    "name": "bio",
                                    "description": "Must not be greater than 10000 characters.",
                                    "required": false,
                                    "example": "avsm",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://kerluke.com/aut-incidunt-eos-velit-cupiditate-nesciunt-ab",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ticket_min": {
                                    "name": "ticket_min",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 20,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ticket_max": {
                                    "name": "ticket_max",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 22,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "wfo",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "is_accredited": {
                                    "name": "is_accredited",
                                    "description": "",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "preferred_sectors": {
                                    "name": "preferred_sectors",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": [
                                        "vjwggpdcafupikynatmqg"
                                    ],
                                    "type": "string[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "preferred_stages": {
                                    "name": "preferred_stages",
                                    "description": "Must not be greater than 32 characters.",
                                    "required": false,
                                    "example": [
                                        "ypazuoqnnmxosunaf"
                                    ],
                                    "type": "string[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "preferred_country_code": {
                                    "name": "preferred_country_code",
                                    "description": "Must be 2 characters.",
                                    "required": false,
                                    "example": "ac",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "investor_type": "corporate",
                                "organization_name": "lhdvmzhyptblqvszldhvu",
                                "bio": "avsm",
                                "linkedin_url": "http://kerluke.com/aut-incidunt-eos-velit-cupiditate-nesciunt-ab",
                                "ticket_min": 20,
                                "ticket_max": 22,
                                "currency_code": "wfo",
                                "is_accredited": false,
                                "preferred_sectors": [
                                    "vjwggpdcafupikynatmqg"
                                ],
                                "preferred_stages": [
                                    "ypazuoqnnmxosunaf"
                                ],
                                "preferred_country_code": "ac"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/investor/profile/submit-kyc",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/portfolio",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/matches",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/watchlist",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/investor/watchlist/{startupId}",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "885",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "885"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "mtariftgcmm",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "notes": "mtariftgcmm"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/investor/watchlist/{startupId}",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "0"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "startup_id": {
                                    "name": "startup_id",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 40,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "funding_round_id": {
                                    "name": "funding_round_id",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 34,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "krfpbpxp",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Doloremque nam similique fugit rerum omnis eveniet impedit.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 26,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "carry_percent": {
                                    "name": "carry_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 18,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "minimum_commitment": {
                                    "name": "minimum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 1,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_commitment": {
                                    "name": "maximum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 90,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "qar",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:10",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "startup_id": 40,
                                "funding_round_id": 34,
                                "name": "krfpbpxp",
                                "description": "Doloremque nam similique fugit rerum omnis eveniet impedit.",
                                "target_amount": 26,
                                "carry_percent": 18,
                                "minimum_commitment": 1,
                                "maximum_commitment": 90,
                                "currency_code": "qar",
                                "closes_at": "2026-05-21T04:42:10"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "4933",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4933"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "6",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "6"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "ratohlar",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Expedita aut ut quas velit ullam aperiam.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 72,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "carry_percent": {
                                    "name": "carry_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 1,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "minimum_commitment": {
                                    "name": "minimum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 88,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_commitment": {
                                    "name": "maximum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 4,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:10",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "ratohlar",
                                "description": "Expedita aut ut quas velit ullam aperiam.",
                                "target_amount": 72,
                                "carry_percent": 1,
                                "minimum_commitment": 88,
                                "maximum_commitment": 4,
                                "closes_at": "2026-05-21T04:42:10"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/open",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "24760",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "24760"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/close",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "15",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "15"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/dashboard",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "82",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "82"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/join",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "4347",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4347"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/leave",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "73430",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "73430"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/members",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "28",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "28"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/members/{memberId}/approve",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "4",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "05",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4",
                                "memberId": "05"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/members/{memberId}/reject",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "2",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "770832",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "2",
                                "memberId": "770832"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/commitments/{commitmentId}",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "commitmentId": {
                                    "name": "commitmentId",
                                    "description": "",
                                    "required": true,
                                    "example": "1778017",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "commitmentId": "1778017"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/{id}/hold",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the escrow.",
                                    "required": true,
                                    "example": "7",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "7"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/{id}/release",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the escrow.",
                                    "required": true,
                                    "example": "9562",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "9562"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/{id}/refund",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the escrow.",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/investors/{userId}/approve-kyc",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": "57",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": "57"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/investors/{userId}/reject-kyc",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": "6",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": "6"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/approve",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "075",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "075"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/reject",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "rejection_reason": {
                                    "name": "rejection_reason",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": true,
                                    "example": "dm",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "rejection_reason": "dm"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/fundraising",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "669",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "669"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/close-round",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "7",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "7"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/suspend",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "551",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "551"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/auth/login",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Log in",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address or username (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "user@demosite.com",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "123456",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The user's mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "quas",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "email": "user@demosite.com",
                                "password": "123456",
                                "auth_field": "email",
                                "phone": null,
                                "phone_country": null,
                                "captcha_key": "quas"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/logout/{userId}",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Log out",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "The ID of the user to logout.",
                                    "required": false,
                                    "example": 4,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": 4
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 400,
                                    "content": "{\"success\":false,\"message\":\"An error occurred and the logout failed.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 3fVDZa4hPdvgaEeb6kc8651"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/auth/password/forgot",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Forgot password",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address or username (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "user@demosite.com",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The user's mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "qui",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "email": "user@demosite.com",
                                "auth_field": "email",
                                "phone": null,
                                "phone_country": null,
                                "captcha_key": "qui"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/auth/password/reset",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Reset password",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address or username (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "token": {
                                    "name": "token",
                                    "description": "",
                                    "required": true,
                                    "example": "ratione",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The user's mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password_confirmation": {
                                    "name": "password_confirmation",
                                    "description": "The confirmation of the user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "dolorum",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "email": "john.doe@domain.tld",
                                "token": "ratione",
                                "phone_country": null,
                                "password": "js!X07$z61hLA",
                                "auth_field": "email",
                                "phone": null,
                                "password_confirmation": "js!X07$z61hLA",
                                "captcha_key": "dolorum"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/connect/{provider}",
                            "metadata": {
                                "groupName": "Social Auth",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get target URL",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "provider": {
                                    "name": "provider",
                                    "description": "The provider's name - Possible values: facebook, linkedin, or google.",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "provider": null
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"API endpoint not found.\"}",
                                    "headers": {
                                        "cache-control": "no-cache, private",
                                        "content-type": "application/json",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/connect/{provider}/callback",
                            "metadata": {
                                "groupName": "Social Auth",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get user info",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "provider": {
                                    "name": "provider",
                                    "description": "The provider's name - Possible values: facebook, linkedin, or google.",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "provider": null
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"API endpoint not found.\"}",
                                    "headers": {
                                        "cache-control": "no-cache, private",
                                        "content-type": "application/json",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/verify/{entityMetadataKey}/{entityId}/resend/email",
                            "metadata": {
                                "groupName": "Verification",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Email: Re-send link",
                                "description": "Re-send email verification link to the user",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "entityMetadataKey": {
                                    "name": "entityMetadataKey",
                                    "description": "The slug of the entity to verify ('users' or 'posts').",
                                    "required": true,
                                    "example": "users",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entityId": {
                                    "name": "entityId",
                                    "description": "The entity/model identifier (ID).",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "entityMetadataKey": "users",
                                "entityId": 3
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":false,\"message\":\"Your Email address is already verified.\",\"result\":{\"id\":3,\"name\":\"خالد الشمري\",\"username\":\"demo.founder3\",\"two_factor_enabled\":false,\"two_factor_method\":\"email\",\"updated_at\":\"2026-05-21T00:47:21.000000Z\",\"original_updated_at\":\"2026-05-21 00:47:21\",\"original_last_activity\":null,\"created_at_formatted\":\"2026-05-21 01:10\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"p_is_online\":false,\"country_flag_url\":\"http:\\/\\/127.0.0.1:8000\\/images\\/flags\\/circle\\/16\\/sa.png\"},\"extra\":{\"isUnverifiedField\":false,\"fieldVerificationSent\":false,\"resendUrl\":\"http:\\/\\/127.0.0.1:8000\\/auth\\/verify\\/users\\/3\\/resend\\/email\",\"field\":\"email\",\"fieldValue\":\"demo.founder3@platform.test\",\"fieldHiddenValue\":\"de**********************est\",\"resendLocked\":false}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/verify/{entityMetadataKey}/{entityId}/resend/sms",
                            "metadata": {
                                "groupName": "Verification",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "SMS: Re-send code",
                                "description": "Re-send mobile phone verification token by SMS",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "entityMetadataKey": {
                                    "name": "entityMetadataKey",
                                    "description": "The slug of the entity to verify ('users' or 'posts').",
                                    "required": true,
                                    "example": "users",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entityId": {
                                    "name": "entityId",
                                    "description": "The entity/model identifier (ID).",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "entityMetadataKey": "users",
                                "entityId": 3
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":false,\"message\":\"Your Phone Number is already verified.\",\"result\":{\"id\":3,\"name\":\"خالد الشمري\",\"username\":\"demo.founder3\",\"two_factor_enabled\":false,\"two_factor_method\":\"email\",\"updated_at\":\"2026-05-21T00:47:21.000000Z\",\"original_updated_at\":\"2026-05-21 00:47:21\",\"original_last_activity\":null,\"created_at_formatted\":\"2026-05-21 01:10\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"p_is_online\":false,\"country_flag_url\":\"http:\\/\\/127.0.0.1:8000\\/images\\/flags\\/circle\\/16\\/sa.png\"},\"extra\":{\"isUnverifiedField\":false,\"fieldVerificationSent\":false,\"resendUrl\":\"http:\\/\\/127.0.0.1:8000\\/api\\/auth\\/verify\\/users\\/3\\/resend\\/sms\",\"field\":\"phone\",\"fieldValue\":\"\",\"fieldHiddenValue\":\"********\",\"resendLocked\":false}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/verify/{entityMetadataKey}/{field}/{token?}",
                            "metadata": {
                                "groupName": "Verification",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Verification",
                                "description": "Verify the user's email address or mobile phone number",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "entityMetadataKey": {
                                    "name": "entityMetadataKey",
                                    "description": "The slug of the entity to verify ('users' or 'posts').",
                                    "required": true,
                                    "example": "users",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "field": {
                                    "name": "field",
                                    "description": "The field to verify.",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "token": {
                                    "name": "token",
                                    "description": "The verification token.",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "entityMetadataKey": "users",
                                "field": "email",
                                "token": null
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 400,
                                    "content": "{\"success\":false,\"message\":\"The verification token or code is missing.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/genders",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List genders",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"1\":{\"id\":1,\"name\":\"MALE\",\"label\":\"Male\",\"title\":\"Mr.\"},\"2\":{\"id\":2,\"name\":\"FEMALE\",\"label\":\"Female\",\"title\":\"Mrs\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/genders/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get gender",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The gender's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"MALE\",\"label\":\"Male\",\"title\":\"Mr.\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/userTypes",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List user types",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"2\":{\"id\":2,\"name\":\"INDIVIDUAL\",\"label\":\"Individual\"},\"1\":{\"id\":1,\"name\":\"PROFESSIONAL\",\"label\":\"Professional\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/userTypes/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get user type",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user type's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"PROFESSIONAL\",\"label\":\"Professional\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List users",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 403,
                                    "content": "{\"success\":false,\"message\":\"Forbidden\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get user",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_KEY}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 3
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: country,userType,gender,countPostsViews,countPosts,countSavedPosts.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":3,\"name\":\"خالد الشمري\",\"username\":\"demo.founder3\",\"two_factor_enabled\":false,\"two_factor_method\":\"email\",\"updated_at\":\"2026-05-21T00:47:21.000000Z\",\"original_updated_at\":\"2026-05-21 00:47:21\",\"original_last_activity\":null,\"created_at_formatted\":\"2026-05-21 01:10\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"p_is_online\":false,\"country_flag_url\":\"http:\\/\\/127.0.0.1:8000\\/images\\/flags\\/circle\\/16\\/sa.png\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hg48va6fEPcdeDVZbk1a563"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/users",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store user",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The mobile phone number of the user (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Field to allow user to accept or not the website terms.",
                                    "required": true,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_type_id": {
                                    "name": "user_type_id",
                                    "description": "The ID of user type.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "gender_id": {
                                    "name": "gender_id",
                                    "description": "The ID of gender.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "photo_path": {
                                    "name": "photo_path",
                                    "description": "The file of user photo.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Field to hide or show the user phone number in public.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "username": {
                                    "name": "username",
                                    "description": "The user's username.",
                                    "required": false,
                                    "example": "john_doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password_confirmation": {
                                    "name": "password_confirmation",
                                    "description": "The confirmation of the user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "disable_comments": {
                                    "name": "disable_comments",
                                    "description": "Field to disable or enable comments on the user's listings.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "create_from_ip": {
                                    "name": "create_from_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Field to allow user to accept or not marketing offers sending.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "time_zone": {
                                    "name": "time_zone",
                                    "description": "The user's time zone.",
                                    "required": false,
                                    "example": "America/New_York",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "alias",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "John Doe",
                                "country_code": "US",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "password": "js!X07$z61hLA",
                                "accept_terms": true,
                                "email": "john.doe@domain.tld",
                                "language_code": "en",
                                "user_type_id": 1,
                                "gender_id": 1,
                                "phone_hidden": false,
                                "username": "john_doe",
                                "password_confirmation": "js!X07$z61hLA",
                                "disable_comments": true,
                                "create_from_ip": "127.0.0.1",
                                "accept_marketing_offers": false,
                                "time_zone": "America/New_York",
                                "captcha_key": "alias"
                            },
                            "fileParameters": {
                                "photo_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users/{id}/stats",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "User's mini stats",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 3
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer g8EaZv3hD4Vc6kd1Pbea56f"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users/{id}/photo/delete",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete user's photo",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer Ev86efPD35c6Zkaab4dh1gV"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}/photo",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update user's photo",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "photo_path": {
                                    "name": "photo_path",
                                    "description": "Must be a file. Must be at least 0 kilobytes. Must not be greater than 2500 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "latest_update_ip": "127.0.0.1"
                            },
                            "fileParameters": {
                                "photo_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hfPbZa153Dv8V4Ed6ageck6"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}/preferences",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update user's preferences",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "disable_comments": {
                                    "name": "disable_comments",
                                    "description": "Field to disable or enable comments on the user's listings.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Field to allow user to accept or not the website terms.",
                                    "required": true,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Field to allow user to accept or not marketing offers sending.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "time_zone": {
                                    "name": "time_zone",
                                    "description": "The user's time zone.",
                                    "required": false,
                                    "example": "America/New_York",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "disable_comments": true,
                                "latest_update_ip": "127.0.0.1",
                                "accept_terms": true,
                                "accept_marketing_offers": false,
                                "time_zone": "America/New_York"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 483Zbcf5ake1dP6agvDhE6V"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}/save-theme-preference",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update the user's theme preference",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "theme": {
                                    "name": "theme",
                                    "description": "The user's theme preference value.",
                                    "required": true,
                                    "example": "light, dark or system",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "theme": "light, dark or system"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update user",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The mobile phone number of the user (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "username": {
                                    "name": "username",
                                    "description": "The user's username.",
                                    "required": false,
                                    "example": "john_doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address (Required when 'auth_field' value is 'email').",
                                    "required": true,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_type_id": {
                                    "name": "user_type_id",
                                    "description": "The ID of user type.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "gender_id": {
                                    "name": "gender_id",
                                    "description": "The ID of gender.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "photo_path": {
                                    "name": "photo_path",
                                    "description": "The file of user photo.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "remove_photo": {
                                    "name": "remove_photo",
                                    "description": "Enable the user photo removal ('0' or '1'). When its value is '1' the user's photo file will be removed and the 'photo_path' column will be empty.",
                                    "required": false,
                                    "example": 0,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Field to hide or show the user phone number in public.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password_confirmation": {
                                    "name": "password_confirmation",
                                    "description": "The confirmation of the user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "disable_comments": {
                                    "name": "disable_comments",
                                    "description": "Field to disable or enable comments on the user's listings.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Field to allow user to accept or not the website terms.",
                                    "required": true,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Field to allow user to accept or not marketing offers sending.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "time_zone": {
                                    "name": "time_zone",
                                    "description": "The user's time zone.",
                                    "required": false,
                                    "example": "America/New_York",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "John Doe",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "username": "john_doe",
                                "email": "john.doe@domain.tld",
                                "country_code": "US",
                                "language_code": "en",
                                "user_type_id": 1,
                                "gender_id": 1,
                                "remove_photo": 0,
                                "phone_hidden": false,
                                "password": "js!X07$z61hLA",
                                "password_confirmation": "js!X07$z61hLA",
                                "disable_comments": true,
                                "latest_update_ip": "127.0.0.1",
                                "accept_terms": true,
                                "accept_marketing_offers": false,
                                "time_zone": "America/New_York"
                            },
                            "fileParameters": {
                                "photo_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer vaf4dcakb6EZVgD8e3hP156"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/users/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete user",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 3h1d6cvbkgDEfaaP854Z6eV"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/postTypes",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List listing types",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"1\":{\"id\":1,\"name\":\"INDIVIDUAL\",\"label\":\"Individual\"},\"2\":{\"id\":2,\"name\":\"PROFESSIONAL\",\"label\":\"Professional\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/postTypes/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get listing type",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The listing type's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"INDIVIDUAL\",\"label\":\"Individual\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/reportTypes",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List report types",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"id\":5,\"name\":\"Other\"},{\"id\":4,\"name\":\"Wrong category\"},{\"id\":3,\"name\":\"Spam\"},{\"id\":2,\"name\":\"Duplicate\"},{\"id\":1,\"name\":\"Fraud\"}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/reportTypes/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get report type",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The report type's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"Fraud\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/posts",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List listings",
                                "description": "Note: The main picture of the listings is fetched via a 'picture' attribute (added as fake column),\nthat provide default picture as image placeholder when the listing has no pictures.\nIn addition, for performance reasons, default picture is also provided when the 'pictures' table is not embed in the endpoint.\nSo you need to embed the picture table like: /api/posts?embed=pictures to retrieve right main picture data.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "op": {
                                    "name": "op",
                                    "description": "Type of listings list (optional) - Possible value: search,premium,latest,free,premiumFirst,similar.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "postId": {
                                    "name": "postId",
                                    "description": "Base Listing's ID to get similar listings (optional) - Mandatory to get similar listings (when op=similar).",
                                    "required": false,
                                    "example": null,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "distance": {
                                    "name": "distance",
                                    "description": "Distance to get similar listings (optional) - Also optional when the type of similar listings is based on the current listing's category. Mandatory when the type of similar listings is based on the current listing's location. So, its usage is limited to get similar listings (when op=similar) based on the current listing's location.",
                                    "required": false,
                                    "example": null,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "belongLoggedUser": {
                                    "name": "belongLoggedUser",
                                    "description": "Force users to be logged to get data that belongs to him. Authentication token needs to be sent in the header, and the \"op\" parameter needs to be null or unset - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pendingApproval": {
                                    "name": "pendingApproval",
                                    "description": "To list a user's listings in pending approval. Authentication token needs to be sent in the header, and the \"op\" parameter needs to be null or unset - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "archived": {
                                    "name": "archived",
                                    "description": "To list a user's archived listings. Authentication token needs to be sent in the header, and the \"op\" parameter need be null or unset - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user,category,parent,postType,city,currency,savedByLoggedUser,pictures,payment,package.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "op": null,
                                "postId": null,
                                "distance": null,
                                "belongLoggedUser": false,
                                "pendingApproval": true,
                                "archived": true,
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No listings found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/posts/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get listing",
                                "description": "Note: The main picture of the listing is fetched via a 'picture' attribute (added as fake column),\nthat provide default picture as image placeholder when the listing has no pictures.\nIn addition, for performance reasons, default picture is also provided when the 'pictures' table is not embed in the endpoint.\nSo you need to embed the picture table like: /api/posts/1?embed=pictures to retrieve right main picture data.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The post/listing's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 2
                            },
                            "queryParameters": {
                                "unactivatedIncluded": {
                                    "name": "unactivatedIncluded",
                                    "description": "Include or not unactivated entries - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "belongLoggedUser": {
                                    "name": "belongLoggedUser",
                                    "description": "Force users to be logged to get data that belongs to him - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "noCache": {
                                    "name": "noCache",
                                    "description": "Disable the cache for this request - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user,category,parent,postType,city,currency,savedByLoggedUser,pictures,payment,package,fieldsValues.",
                                    "required": false,
                                    "example": "user,postType",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "detailed": {
                                    "name": "detailed",
                                    "description": "Allow getting the listing's details with all its relationships (No need to set the 'embed' parameter).",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "unactivatedIncluded": true,
                                "belongLoggedUser": false,
                                "noCache": false,
                                "embed": "user,postType",
                                "detailed": false
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Listing not found\",\"result\":null,\"error\":\"Listing not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/posts",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store listing",
                                "description": "For both types of listing's creation (Single step or Multi steps).\nNote: The field 'admin_code' is only available when the listing's country's 'admin_type' column is set to 1 or 2.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "category_id": {
                                    "name": "category_id",
                                    "description": "The category's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "The listing's title.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "The listing's description.",
                                    "required": true,
                                    "example": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "contact_name": {
                                    "name": "contact_name",
                                    "description": "The listing's author name.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The listing's author mobile number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "city_id": {
                                    "name": "city_id",
                                    "description": "The city's ID.",
                                    "required": true,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Accept the website terms and conditions.",
                                    "required": true,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pictures": {
                                    "name": "pictures",
                                    "description": "The listing's pictures.",
                                    "required": true,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The listing's author email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_type_id": {
                                    "name": "post_type_id",
                                    "description": "The listing type's ID.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin_code": {
                                    "name": "admin_code",
                                    "description": "The administrative division's code.",
                                    "required": false,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "price": {
                                    "name": "price",
                                    "description": "The price.",
                                    "required": true,
                                    "example": 5000,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "negotiable": {
                                    "name": "negotiable",
                                    "description": "Negotiable price or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Mobile phone number will be hidden in public or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "create_from_ip": {
                                    "name": "create_from_ip",
                                    "description": "The listing's author IP address.",
                                    "required": false,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Accept to receive marketing offers or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "is_permanent": {
                                    "name": "is_permanent",
                                    "description": "Is it permanent post or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tags": {
                                    "name": "tags",
                                    "description": "Comma-separated tags list.",
                                    "required": false,
                                    "example": "car,automotive,tesla,cyber,truck",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "package_id": {
                                    "name": "package_id",
                                    "description": "The package's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payment_method_id": {
                                    "name": "payment_method_id",
                                    "description": "The payment method's ID (required when the selected package's price is > 0).",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "quisquam",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "category_id": 1,
                                "title": "John Doe",
                                "description": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                "contact_name": "John Doe",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "city_id": 5,
                                "accept_terms": false,
                                "email": "john.doe@domain.tld",
                                "country_code": "US",
                                "post_type_id": 1,
                                "admin_code": "0",
                                "price": 5000,
                                "negotiable": false,
                                "phone_hidden": false,
                                "create_from_ip": "127.0.0.1",
                                "accept_marketing_offers": false,
                                "is_permanent": false,
                                "tags": "car,automotive,tesla,cyber,truck",
                                "package_id": 2,
                                "payment_method_id": 5,
                                "captcha_key": "quisquam"
                            },
                            "fileParameters": {
                                "pictures": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer DP431h6Z6V5fbedacgav8kE"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/posts/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update listing",
                                "description": "Note: The fields 'pictures', 'package_id' and 'payment_method_id' are only available with the single step listing edition.\nThe field 'admin_code' is only available when the listing's country's 'admin_type' column is set to 1 or 2.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The post/listing's ID.",
                                    "required": true,
                                    "example": 14,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 14
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "category_id": {
                                    "name": "category_id",
                                    "description": "The category's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "The listing's title.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "The listing's description.",
                                    "required": true,
                                    "example": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "contact_name": {
                                    "name": "contact_name",
                                    "description": "The listing's author name.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The listing's author mobile number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "city_id": {
                                    "name": "city_id",
                                    "description": "The city's ID.",
                                    "required": true,
                                    "example": 20,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Accept the website terms and conditions.",
                                    "required": true,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The listing's author email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_type_id": {
                                    "name": "post_type_id",
                                    "description": "The listing type's ID.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin_code": {
                                    "name": "admin_code",
                                    "description": "The administrative division's code.",
                                    "required": false,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "price": {
                                    "name": "price",
                                    "description": "The price.",
                                    "required": true,
                                    "example": 5000,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "negotiable": {
                                    "name": "negotiable",
                                    "description": "Negotiable price or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Mobile phone number will be hidden in public or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The listing's author IP address.",
                                    "required": false,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Accept to receive marketing offers or no.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "is_permanent": {
                                    "name": "is_permanent",
                                    "description": "Is it permanent post or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tags": {
                                    "name": "tags",
                                    "description": "Comma-separated tags list.",
                                    "required": false,
                                    "example": "car,automotive,tesla,cyber,truck",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pictures": {
                                    "name": "pictures",
                                    "description": "The listing's pictures.",
                                    "required": true,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "package_id": {
                                    "name": "package_id",
                                    "description": "The package's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payment_method_id": {
                                    "name": "payment_method_id",
                                    "description": "The payment method's ID (Required when the selected package's price is > 0).",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "category_id": 1,
                                "title": "John Doe",
                                "description": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                "contact_name": "John Doe",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "city_id": 20,
                                "accept_terms": false,
                                "email": "john.doe@domain.tld",
                                "country_code": "US",
                                "post_type_id": 1,
                                "admin_code": "0",
                                "price": 5000,
                                "negotiable": false,
                                "phone_hidden": false,
                                "latest_update_ip": "127.0.0.1",
                                "accept_marketing_offers": true,
                                "is_permanent": false,
                                "tags": "car,automotive,tesla,cyber,truck",
                                "package_id": 2,
                                "payment_method_id": 5
                            },
                            "fileParameters": {
                                "pictures": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 6c14hZfDdgP58va3Ebak6Ve"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/posts/{ids}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete listing(s)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of listing(s).",
                                    "required": true,
                                    "example": "111111,222222,333333",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "111111,222222,333333"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer f1V5ZaPba4h6D683kEcegdv"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/categories",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List categories",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "parentId": {
                                    "name": "parentId",
                                    "description": "The ID of the parent category of the sub categories to retrieve.",
                                    "required": false,
                                    "example": 0,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "nestedIncluded": {
                                    "name": "nestedIncluded",
                                    "description": "If parent ID is not provided, are nested entries will be included? - Possible values: 0,1.",
                                    "required": false,
                                    "example": 0,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: parent,children.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "parentId": 0,
                                "nestedIncluded": 0,
                                "embed": null,
                                "sort": "-lft",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"id\":122,\"parent_id\":null,\"name\":\"Local Events\",\"slug\":\"local-events\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-regular fa-calendar-days\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":144,\"rgt\":158,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\",\"parentClosure\":null},{\"id\":114,\"parent_id\":null,\"name\":\"Learning\",\"slug\":\"learning\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-graduation-cap\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":134,\"rgt\":143,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\",\"parentClosure\":null}],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=6\",\"prev\":null,\"next\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":6,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=5\",\"label\":\"5\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=6\",\"label\":\"6\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories\",\"per_page\":2,\"to\":2,\"total\":12}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/categories/{slugOrId}",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get category",
                                "description": "Get category by its unique slug or ID.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "slugOrId": {
                                    "name": "slugOrId",
                                    "description": "The slug or ID of the category.",
                                    "required": true,
                                    "example": "cars",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "slugOrId": "cars"
                            },
                            "queryParameters": {
                                "parentCatSlug": {
                                    "name": "parentCatSlug",
                                    "description": "The slug of the parent category to retrieve used when category's slug provided instead of ID.",
                                    "required": false,
                                    "example": "automobiles",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "parentCatSlug": "automobiles"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":2,\"parent_id\":1,\"name\":\"Cars\",\"slug\":\"cars\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"bi bi-folder-fill\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":2,\"rgt\":3,\"depth\":1,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/categories/{id}/fields",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List category's fields",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the category.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The unique ID of the post.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "language_code": "en",
                                "post_id": 1
                            },
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":[{\"id\":1,\"belongs_to\":\"post\",\"name\":\"Car Brand\",\"type\":\"select\",\"max\":null,\"default_value\":\"\",\"required\":1,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":1,\"field_id\":1,\"value\":\"Toyota\",\"parent_id\":null,\"lft\":1,\"rgt\":2,\"depth\":null},{\"id\":2,\"field_id\":1,\"value\":\"BMW\",\"parent_id\":null,\"lft\":3,\"rgt\":4,\"depth\":null},{\"id\":3,\"field_id\":1,\"value\":\"Mercedes-Benz\",\"parent_id\":null,\"lft\":5,\"rgt\":6,\"depth\":null},{\"id\":4,\"field_id\":1,\"value\":\"Chevrolet\",\"parent_id\":null,\"lft\":7,\"rgt\":8,\"depth\":null},{\"id\":5,\"field_id\":1,\"value\":\"Cadillac\",\"parent_id\":null,\"lft\":9,\"rgt\":10,\"depth\":null},{\"id\":6,\"field_id\":1,\"value\":\"Buick\",\"parent_id\":null,\"lft\":11,\"rgt\":12,\"depth\":null},{\"id\":7,\"field_id\":1,\"value\":\"GMC\",\"parent_id\":null,\"lft\":13,\"rgt\":14,\"depth\":null},{\"id\":8,\"field_id\":1,\"value\":\"Ford\",\"parent_id\":null,\"lft\":15,\"rgt\":16,\"depth\":null},{\"id\":9,\"field_id\":1,\"value\":\"Chrysler\",\"parent_id\":null,\"lft\":17,\"rgt\":18,\"depth\":null},{\"id\":10,\"field_id\":1,\"value\":\"Dodge\",\"parent_id\":null,\"lft\":19,\"rgt\":20,\"depth\":null},{\"id\":11,\"field_id\":1,\"value\":\"Jeep\",\"parent_id\":null,\"lft\":21,\"rgt\":22,\"depth\":null},{\"id\":12,\"field_id\":1,\"value\":\"Tesla\",\"parent_id\":null,\"lft\":23,\"rgt\":24,\"depth\":null},{\"id\":13,\"field_id\":1,\"value\":\"Lexus\",\"parent_id\":null,\"lft\":25,\"rgt\":26,\"depth\":null},{\"id\":14,\"field_id\":1,\"value\":\"Suzuki\",\"parent_id\":null,\"lft\":27,\"rgt\":28,\"depth\":null},{\"id\":15,\"field_id\":1,\"value\":\"Mazda\",\"parent_id\":null,\"lft\":29,\"rgt\":30,\"depth\":null},{\"id\":16,\"field_id\":1,\"value\":\"Honda\",\"parent_id\":null,\"lft\":31,\"rgt\":32,\"depth\":null},{\"id\":17,\"field_id\":1,\"value\":\"Acura\",\"parent_id\":null,\"lft\":33,\"rgt\":34,\"depth\":null},{\"id\":18,\"field_id\":1,\"value\":\"Mitsubishi\",\"parent_id\":null,\"lft\":35,\"rgt\":36,\"depth\":null},{\"id\":19,\"field_id\":1,\"value\":\"Nissan\",\"parent_id\":null,\"lft\":37,\"rgt\":38,\"depth\":null},{\"id\":20,\"field_id\":1,\"value\":\"Infiniti\",\"parent_id\":null,\"lft\":39,\"rgt\":40,\"depth\":null},{\"id\":21,\"field_id\":1,\"value\":\"Audi\",\"parent_id\":null,\"lft\":41,\"rgt\":42,\"depth\":null},{\"id\":22,\"field_id\":1,\"value\":\"Volkswagen\",\"parent_id\":null,\"lft\":43,\"rgt\":44,\"depth\":null},{\"id\":23,\"field_id\":1,\"value\":\"Porsche\",\"parent_id\":null,\"lft\":45,\"rgt\":46,\"depth\":null},{\"id\":24,\"field_id\":1,\"value\":\"Opel\",\"parent_id\":null,\"lft\":47,\"rgt\":48,\"depth\":null},{\"id\":25,\"field_id\":1,\"value\":\"Jaguar\",\"parent_id\":null,\"lft\":49,\"rgt\":50,\"depth\":null},{\"id\":26,\"field_id\":1,\"value\":\"Land Rover\",\"parent_id\":null,\"lft\":51,\"rgt\":52,\"depth\":null},{\"id\":27,\"field_id\":1,\"value\":\"MINI\",\"parent_id\":null,\"lft\":53,\"rgt\":54,\"depth\":null},{\"id\":28,\"field_id\":1,\"value\":\"Aston Martin\",\"parent_id\":null,\"lft\":55,\"rgt\":56,\"depth\":null},{\"id\":29,\"field_id\":1,\"value\":\"Bentley\",\"parent_id\":null,\"lft\":57,\"rgt\":58,\"depth\":null},{\"id\":30,\"field_id\":1,\"value\":\"Rolls-Royce\",\"parent_id\":null,\"lft\":59,\"rgt\":60,\"depth\":null},{\"id\":31,\"field_id\":1,\"value\":\"McLaren\",\"parent_id\":null,\"lft\":61,\"rgt\":62,\"depth\":null},{\"id\":32,\"field_id\":1,\"value\":\"Fiat\",\"parent_id\":null,\"lft\":63,\"rgt\":64,\"depth\":null},{\"id\":33,\"field_id\":1,\"value\":\"Alfa Romeo\",\"parent_id\":null,\"lft\":65,\"rgt\":66,\"depth\":null},{\"id\":34,\"field_id\":1,\"value\":\"Maserati\",\"parent_id\":null,\"lft\":67,\"rgt\":68,\"depth\":null},{\"id\":35,\"field_id\":1,\"value\":\"Ferrari\",\"parent_id\":null,\"lft\":69,\"rgt\":70,\"depth\":null},{\"id\":36,\"field_id\":1,\"value\":\"Lamborghini\",\"parent_id\":null,\"lft\":71,\"rgt\":72,\"depth\":null},{\"id\":37,\"field_id\":1,\"value\":\"Pagani\",\"parent_id\":null,\"lft\":73,\"rgt\":74,\"depth\":null},{\"id\":38,\"field_id\":1,\"value\":\"Lancia\",\"parent_id\":null,\"lft\":75,\"rgt\":76,\"depth\":null},{\"id\":39,\"field_id\":1,\"value\":\"Renault\",\"parent_id\":null,\"lft\":77,\"rgt\":78,\"depth\":null},{\"id\":40,\"field_id\":1,\"value\":\"Peugeot\",\"parent_id\":null,\"lft\":79,\"rgt\":80,\"depth\":null},{\"id\":41,\"field_id\":1,\"value\":\"Citroen\",\"parent_id\":null,\"lft\":81,\"rgt\":82,\"depth\":null},{\"id\":42,\"field_id\":1,\"value\":\"Bugatti\",\"parent_id\":null,\"lft\":83,\"rgt\":84,\"depth\":null},{\"id\":43,\"field_id\":1,\"value\":\"Tata\",\"parent_id\":null,\"lft\":85,\"rgt\":86,\"depth\":null},{\"id\":44,\"field_id\":1,\"value\":\"Hyundai\",\"parent_id\":null,\"lft\":87,\"rgt\":88,\"depth\":null},{\"id\":45,\"field_id\":1,\"value\":\"Kia\",\"parent_id\":null,\"lft\":89,\"rgt\":90,\"depth\":null},{\"id\":46,\"field_id\":1,\"value\":\"Daewoo\",\"parent_id\":null,\"lft\":91,\"rgt\":92,\"depth\":null},{\"id\":47,\"field_id\":1,\"value\":\"Volvo\",\"parent_id\":null,\"lft\":93,\"rgt\":94,\"depth\":null},{\"id\":48,\"field_id\":1,\"value\":\"Saab\",\"parent_id\":null,\"lft\":95,\"rgt\":96,\"depth\":null},{\"id\":49,\"field_id\":1,\"value\":\"Lada\",\"parent_id\":null,\"lft\":97,\"rgt\":98,\"depth\":null},{\"id\":50,\"field_id\":1,\"value\":\"Volga\",\"parent_id\":null,\"lft\":99,\"rgt\":100,\"depth\":null},{\"id\":51,\"field_id\":1,\"value\":\"Zil\",\"parent_id\":null,\"lft\":101,\"rgt\":102,\"depth\":null},{\"id\":52,\"field_id\":1,\"value\":\"GAZ\",\"parent_id\":null,\"lft\":103,\"rgt\":104,\"depth\":null},{\"id\":53,\"field_id\":1,\"value\":\"Geely\",\"parent_id\":null,\"lft\":105,\"rgt\":106,\"depth\":null},{\"id\":54,\"field_id\":1,\"value\":\"Chery\",\"parent_id\":null,\"lft\":107,\"rgt\":108,\"depth\":null},{\"id\":55,\"field_id\":1,\"value\":\"Hongqi\",\"parent_id\":null,\"lft\":109,\"rgt\":110,\"depth\":null},{\"id\":56,\"field_id\":1,\"value\":\"Dacia\",\"parent_id\":null,\"lft\":111,\"rgt\":112,\"depth\":null},{\"id\":57,\"field_id\":1,\"value\":\"Daihatsu\",\"parent_id\":null,\"lft\":113,\"rgt\":114,\"depth\":null},{\"id\":58,\"field_id\":1,\"value\":\"FIAT\",\"parent_id\":null,\"lft\":115,\"rgt\":116,\"depth\":null},{\"id\":59,\"field_id\":1,\"value\":\"Genesis\",\"parent_id\":null,\"lft\":117,\"rgt\":118,\"depth\":null},{\"id\":60,\"field_id\":1,\"value\":\"Isuzu\",\"parent_id\":null,\"lft\":119,\"rgt\":120,\"depth\":null},{\"id\":61,\"field_id\":1,\"value\":\"Lincoln\",\"parent_id\":null,\"lft\":121,\"rgt\":122,\"depth\":null},{\"id\":62,\"field_id\":1,\"value\":\"Lotus\",\"parent_id\":null,\"lft\":123,\"rgt\":124,\"depth\":null},{\"id\":63,\"field_id\":1,\"value\":\"Ram\",\"parent_id\":null,\"lft\":125,\"rgt\":126,\"depth\":null},{\"id\":64,\"field_id\":1,\"value\":\"Ram\",\"parent_id\":null,\"lft\":127,\"rgt\":128,\"depth\":null},{\"id\":65,\"field_id\":1,\"value\":\"SEAT\",\"parent_id\":null,\"lft\":129,\"rgt\":130,\"depth\":null},{\"id\":66,\"field_id\":1,\"value\":\"Skoda\",\"parent_id\":null,\"lft\":131,\"rgt\":132,\"depth\":null},{\"id\":67,\"field_id\":1,\"value\":\"Smart\",\"parent_id\":null,\"lft\":133,\"rgt\":134,\"depth\":null},{\"id\":68,\"field_id\":1,\"value\":\"Subaru\",\"parent_id\":null,\"lft\":135,\"rgt\":136,\"depth\":null},{\"id\":69,\"field_id\":1,\"value\":\"Other\",\"parent_id\":null,\"lft\":137,\"rgt\":138,\"depth\":null}]},{\"id\":2,\"belongs_to\":\"post\",\"name\":\"Car Model\",\"type\":\"text\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":0,\"help\":\"\",\"active\":1,\"options\":[]},{\"id\":3,\"belongs_to\":\"post\",\"name\":\"Year of registration\",\"type\":\"number\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":0,\"help\":\"\",\"active\":1,\"options\":[]},{\"id\":5,\"belongs_to\":\"post\",\"name\":\"Fuel Type\",\"type\":\"select\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":70,\"field_id\":5,\"value\":\"Essence\",\"parent_id\":null,\"lft\":139,\"rgt\":140,\"depth\":null},{\"id\":71,\"field_id\":5,\"value\":\"Diesel\",\"parent_id\":null,\"lft\":141,\"rgt\":142,\"depth\":null}]},{\"id\":7,\"belongs_to\":\"post\",\"name\":\"Transmission\",\"type\":\"radio\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":76,\"field_id\":7,\"value\":\"Automatic\",\"parent_id\":null,\"lft\":151,\"rgt\":152,\"depth\":null},{\"id\":77,\"field_id\":7,\"value\":\"Manual\",\"parent_id\":null,\"lft\":153,\"rgt\":154,\"depth\":null}]},{\"id\":8,\"belongs_to\":\"post\",\"name\":\"Condition\",\"type\":\"select\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":78,\"field_id\":8,\"value\":\"New\",\"parent_id\":null,\"lft\":155,\"rgt\":156,\"depth\":null},{\"id\":79,\"field_id\":8,\"value\":\"Used\",\"parent_id\":null,\"lft\":157,\"rgt\":158,\"depth\":null}]},{\"id\":4,\"belongs_to\":\"post\",\"name\":\"Mileage\",\"type\":\"text\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":0,\"help\":\"\",\"active\":1,\"options\":[]},{\"id\":6,\"belongs_to\":\"post\",\"name\":\"Features\",\"type\":\"checkbox_multiple\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":72,\"field_id\":6,\"value\":\"Air Conditioner\",\"parent_id\":null,\"lft\":143,\"rgt\":144,\"depth\":null},{\"id\":73,\"field_id\":6,\"value\":\"GPS\",\"parent_id\":null,\"lft\":145,\"rgt\":146,\"depth\":null},{\"id\":74,\"field_id\":6,\"value\":\"Security System\",\"parent_id\":null,\"lft\":147,\"rgt\":148,\"depth\":null},{\"id\":75,\"field_id\":6,\"value\":\"Spare Tire\",\"parent_id\":null,\"lft\":149,\"rgt\":150,\"depth\":null}]}],\"extra\":{\"errors\":[],\"oldInput\":null}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/categories/{id}/fields",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List category's fields",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the category.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The unique ID of the post.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "language_code": "en",
                                "post_id": 1
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List countries",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Language": "en",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the country relationships for Eager Loading - Possible values: currency,continent.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "includeNonActive": {
                                    "name": "includeNonActive",
                                    "description": "Allow including the non-activated countries in the list.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "iti": {
                                    "name": "iti",
                                    "description": "Allow getting option data for the phone number input. Possible value: 'i18n' or 'onlyCountries'.",
                                    "required": false,
                                    "example": "'onlyCountries'",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The code of the current country (Only when the 'iti' parameter is filled to true).",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "includeNonActive": false,
                                "iti": "'onlyCountries'",
                                "countryCode": null,
                                "sort": "-name",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 400,
                                    "content": "{\"success\":false,\"message\":\"No data available. Only \\\"i18n\\\" and \\\"onlyCountries\\\" are accepted for the \\\"iti\\\" parameter.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{code}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get country",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The country's ISO 3166-1 code.",
                                    "required": true,
                                    "example": "DE",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "DE"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the country relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": "currency",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": "currency"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Country not found\",\"result\":null,\"error\":\"Country not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{countryCode}/subAdmins1",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List admin. divisions (1)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The country code of the country of the cities to retrieve.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "countryCode": "US"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (1) relationships for Eager Loading - Possible values: country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "q": {
                                    "name": "q",
                                    "description": "Get the administrative division list related to the entered keyword.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "q": null,
                                "sort": "-name",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No administrative divisions found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{countryCode}/subAdmins2",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List admin. divisions (2)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The country code of the country of the cities to retrieve.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "countryCode": "US"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (2) relationships for Eager Loading - Possible values: country,subAdmin1.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin1Code": {
                                    "name": "admin1Code",
                                    "description": "Get the administrative division 2 list related to the administrative division 1 code.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "q": {
                                    "name": "q",
                                    "description": "Get the administrative division 2 list related to the entered keyword.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "admin1Code": null,
                                "q": null,
                                "sort": "-name",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No administrative divisions found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{countryCode}/cities",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List cities",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The country code of the country of the cities to retrieve.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "countryCode": "US"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the city relationships for Eager Loading - Possible values: country,subAdmin1,subAdmin2.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin1Code": {
                                    "name": "admin1Code",
                                    "description": "Get the city list related to the administrative division 1 code.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin2Code": {
                                    "name": "admin2Code",
                                    "description": "Get the city list related to the administrative division 2 code.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "q": {
                                    "name": "q",
                                    "description": "Get the city list related to the entered keyword.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "autocomplete": {
                                    "name": "autocomplete",
                                    "description": "Allow getting the city list in the autocomplete data format. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "string|array The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name,population.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "admin1Code": null,
                                "admin2Code": null,
                                "q": null,
                                "autocomplete": false,
                                "sort": "-name",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No cities found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/subAdmins1/{code}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get admin. division (1)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The administrative division (1)'s code.",
                                    "required": true,
                                    "example": "CH.VD",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "CH.VD"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (1) relationships for Eager Loading - Possible values: country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No administrative divisions found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD\",\"per_page\":39,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/subAdmins2/{code}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get admin. division (2)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The administrative division (2)'s code.",
                                    "required": true,
                                    "example": "CH.VD.2225",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "CH.VD.2225"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (2) relationships for Eager Loading - Possible values: country,subAdmin1.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Administrative division not found\",\"result\":null,\"error\":\"Administrative division not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/cities/{id}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get city",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The city's ID.",
                                    "required": true,
                                    "example": 12544,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 12544
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the city relationships for Eager Loading - Possible values: country,subAdmin1,subAdmin2.",
                                    "required": false,
                                    "example": "country",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": "country"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"City not found\",\"result\":null,\"error\":\"City not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/savedPosts",
                            "metadata": {
                                "groupName": "Saved Posts",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store/Delete saved listing",
                                "description": "Save a post/listing in favorite, or remove it from favorite.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post/listing's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "post_id": 2
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hdP6k3gaZ16e5afEbvDV8c4"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/savedPosts",
                            "metadata": {
                                "groupName": "Saved Posts",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List saved listings",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: post,city,pictures,user.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "country_code": "US",
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 6h63PDefgdak5Ev1cZbV8a4"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/savedPosts/{ids}",
                            "metadata": {
                                "groupName": "Saved Posts",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete saved listing(s)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of saved post/listing(s).",
                                    "required": true,
                                    "example": "1,2,3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "1,2,3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hkcP6Ee6aba3fVg58DZ4vd1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/savedSearches",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store/Delete saved search",
                                "description": "Save a search result in favorite, or remove it from favorite.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "url": {
                                    "name": "url",
                                    "description": "Search URL to save.",
                                    "required": true,
                                    "example": "https://demo.laraclassifier.com/search/?q=test&l=",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "count_posts": {
                                    "name": "count_posts",
                                    "description": "The number of posts found for the URL.",
                                    "required": true,
                                    "example": 29,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "url": "https://demo.laraclassifier.com/search/?q=test&l=",
                                "count_posts": 29
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer dvfEP56DeV8Zkc63gha1ba4"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/savedSearches",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List saved searches",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: user,country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer VPg36a4kf5vEZ8he6Dacbd1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/savedSearches/{id}",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get saved search",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the saved search.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: user,country,pictures,postType,category,city,country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer bh8ce15kgfPaD6634EvVdZa"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/savedSearches/{ids}",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete saved search(es)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of saved search(es).",
                                    "required": true,
                                    "example": "1,2,3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "1,2,3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer afe531v6cg6adVbEZPDkh48"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/pictures/{id}",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get picture",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The picture's ID.",
                                    "required": true,
                                    "example": 298,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 298
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The list of the picture relationships separated by comma for Eager Loading.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Picture not found\",\"result\":null,\"error\":\"Picture not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/pictures",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store picture",
                                "description": "Note: This endpoint is only available for the multi steps post edition.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "count_packages": {
                                    "name": "count_packages",
                                    "description": "The number of available packages.",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "count_payment_methods": {
                                    "name": "count_payment_methods",
                                    "description": "The number of available payment methods.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pictures": {
                                    "name": "pictures",
                                    "description": "The files to upload.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "US",
                                "count_packages": 3,
                                "count_payment_methods": 1,
                                "post_id": 2
                            },
                            "fileParameters": {
                                "pictures": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hE46e68ck3DZva5dbfPVa1g"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/pictures/{id}",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete picture",
                                "description": "Note: This endpoint is only available for the multi steps form edition.\nFor newly created listings, the post's ID needs to be added in the request input with the key 'new_post_id'.\nThe 'new_post_id' and 'new_post_tmp_token' fields need to be removed or unset during the listing edition steps.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The picture's ID.",
                                    "required": true,
                                    "example": 999999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "post_id": 2
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer ZaEVDfcdP6v6h3481b5gkae"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/pictures/reorder",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Reorder pictures",
                                "description": "Note: This endpoint is only available for the multi steps form edition.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "X-Action": "bulk",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "body": {
                                    "name": "body",
                                    "description": "Encoded json of the new pictures' positions array [['id' => 2, 'position' => 1], ['id' => 1, 'position' => 2], ...]",
                                    "required": true,
                                    "example": "saepe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "post_id": 2,
                                "body": "saepe"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 8ga43EkhbaP5c6DdeZV61vf"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/posts/{postId}/pictures",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List pictures",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "postId": {
                                    "name": "postId",
                                    "description": "",
                                    "required": true,
                                    "example": 346316,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "postId": 346316
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The list of the picture relationships separated by comma for Eager Loading. Possible values: post.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "postId": {
                                    "name": "postId",
                                    "description": "List of pictures related to a listing (using the listing ID).",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest": {
                                    "name": "latest",
                                    "description": "Get only the first picture after ordering (as object instead of collection). Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: position, created_at.",
                                    "required": false,
                                    "example": "-position",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "postId": 1,
                                "latest": false,
                                "sort": "-position",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No pictures found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures\",\"per_page\":10,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/packages/promotion",
                            "metadata": {
                                "groupName": "Packages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List packages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the package relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "-lft"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No packages found\",\"result\":{\"data\":[]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/packages/subscription",
                            "metadata": {
                                "groupName": "Packages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List packages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the package relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "-lft"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No packages found\",\"result\":{\"data\":[]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/packages/{id}",
                            "metadata": {
                                "groupName": "Packages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get package",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The package's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 2
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the package relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": "currency",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": "currency"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Package not found\",\"result\":null,\"error\":\"Package not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/paymentMethods",
                            "metadata": {
                                "groupName": "Payment Methods",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payment methods",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "Country code. Select only the payment methods related to a country.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "countryCode": "US",
                                "sort": "-lft"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No payment methods found\",\"result\":{\"data\":[]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/paymentMethods/{id}",
                            "metadata": {
                                "groupName": "Payment Methods",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get payment method",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "Can be the ID (int) or name (string) of the payment method.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Payment method not found\",\"result\":null,\"error\":\"Payment method not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/promotion",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payments",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "valid": {
                                    "name": "valid",
                                    "description": "Allow getting the valid payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "active": {
                                    "name": "active",
                                    "description": "Allow getting the active payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "valid": false,
                                "active": false,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer EDfd3aPhZ4b5aek8cVv66g1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/subscription",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payments",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "valid": {
                                    "name": "valid",
                                    "description": "Allow getting the valid payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "active": {
                                    "name": "active",
                                    "description": "Allow getting the active payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "valid": false,
                                "active": false,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer e4D61k3VdEPh6va5fgZabc8"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/subscription/users/{userId}/payments",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payments",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": 1
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "valid": {
                                    "name": "valid",
                                    "description": "Allow getting the valid payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "active": {
                                    "name": "active",
                                    "description": "Allow getting the active payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "valid": false,
                                "active": false,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 1abhD5ZVafg3cE86ekv64dP"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/{id}",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get payment",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The payment's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 2
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer fP6a8bgd3Zk1av5DVche4E6"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/payments",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store payment",
                                "description": "Note: This endpoint is only available for the multi steps form edition.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "package": {
                                    "name": "package",
                                    "description": "Selected package ID.",
                                    "required": false,
                                    "example": 8,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "package": 8
                            },
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payable_id": {
                                    "name": "payable_id",
                                    "description": "The payable's ID (ID of the listing or user).",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payable_type": {
                                    "name": "payable_type",
                                    "description": "The payable model's name - Possible values: Post,User.",
                                    "required": true,
                                    "example": "Post",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "package_id": {
                                    "name": "package_id",
                                    "description": "The package's ID (Auto filled when the query parameter 'package' is set).",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payment_method_id": {
                                    "name": "payment_method_id",
                                    "description": "The payment method's ID (required when the selected package's price is > 0).",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "US",
                                "payable_id": 2,
                                "payable_type": "Post",
                                "package_id": 1,
                                "payment_method_id": 5
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer bZaPda6h3ecgV5E1f6k8D4v"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/threads",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store thread",
                                "description": "Start a conversation. Creation of a new thread.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "The thread's creator name.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The thread's creator email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The thread's creator mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "iure",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "body": {
                                    "name": "body",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "Modi temporibus voluptas expedita voluptatibus voluptas veniam.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The related post ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "file_path": {
                                    "name": "file_path",
                                    "description": "The thread attached file.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "necessitatibus",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "John Doe",
                                "auth_field": "email",
                                "email": "john.doe@domain.tld",
                                "phone": "iure",
                                "phone_country": null,
                                "body": "Modi temporibus voluptas expedita voluptatibus voluptas veniam.",
                                "post_id": 2,
                                "captcha_key": "necessitatibus"
                            },
                            "fileParameters": {
                                "file_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List threads",
                                "description": "Get all logged user's threads.\nFilters:\n- unread: Get the logged user's unread threads\n- started: Get the logged user's started threads\n- important: Get the logged user's make as important threads",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "filter": {
                                    "name": "filter",
                                    "description": "Filter for the list - Possible value: unread, started or important.",
                                    "required": false,
                                    "example": "unread",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: post.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "filter": "unread",
                                "embed": null,
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer abPED38f6vZh4a65Vke1dcg"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads/{id}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get thread",
                                "description": "Get a thread (owned by the logged user) details",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 8,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 8
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user,post,messages,participants.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer ab3VfE8v6e1cP5k4Dg6ahZd"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/threads/{id}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update thread",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 111111,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 111111
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "body": {
                                    "name": "body",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "Modi temporibus voluptas expedita voluptatibus voluptas veniam.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "file_path": {
                                    "name": "file_path",
                                    "description": "The thread attached file.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "body": "Modi temporibus voluptas expedita voluptatibus voluptas veniam."
                            },
                            "fileParameters": {
                                "file_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer P6h3b45aVvk61cfDaZ8dEge"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/threads/{ids}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete thread(s)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of thread(s).",
                                    "required": true,
                                    "example": "111111,222222,333333",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "111111,222222,333333"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer Dc61fdEav5b8P3V4g6kaheZ"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/threads/bulkUpdate/{ids?}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Bulk updates",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of thread(s)..",
                                    "required": true,
                                    "example": "111111,222222,333333",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "111111,222222,333333"
                            },
                            "queryParameters": {
                                "type": {
                                    "name": "type",
                                    "description": "The type of action to execute (markAsRead, markAsUnread, markAsImportant, markAsNotImportant or markAllAsRead).",
                                    "required": true,
                                    "example": "animi",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "type": "animi"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer k68vVZb4PDE356a1ghadefc"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads/{threadId}/messages",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List messages",
                                "description": "Get all thread's messages",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "threadId": {
                                    "name": "threadId",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 293,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "threadId": 293
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer dh518g6Pv3cVaZeak4ED6fb"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads/{threadId}/messages/{id}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get message",
                                "description": "Get a thread's message (owned by the logged user) details",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "threadId": {
                                    "name": "threadId",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 293,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "id": {
                                    "name": "id",
                                    "description": "The thread's message's ID.",
                                    "required": true,
                                    "example": 3545,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "threadId": 293,
                                "id": 3545
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: thread,user.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer f8k6VaZgEaPc6d35b4vheD1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/pages",
                            "metadata": {
                                "groupName": "Pages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List pages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "excludedFromFooter": {
                                    "name": "excludedFromFooter",
                                    "description": "Select or unselect pages that can list in footer.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft, created_at.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "excludedFromFooter": false,
                                "sort": "-lft",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"id\":4,\"parent_id\":null,\"type\":\"standard\",\"name\":\"FAQ\",\"slug\":\"faq\",\"image_path\":null,\"title\":\"Frequently Asked Questions\",\"content\":\"<p><b>How do I place an ad?<\\/b><\\/p><p>It's very easy to place an ad: click on the button \\\"Post free Ads\\\" above right.<\\/p><p><b>What does it cost to advertise?<\\/b><\\/p><p>The publication is 100% free throughout the website.<\\/p><p><b>If I post an listing, will I also get more spam e-mails?<\\/b><\\/p><p>Absolutely not because your email address is not visible on the website.<\\/p><p><b>How long will my listing remain on the website?<\\/b><\\/p><p>In general, an listing is automatically deactivated from the website after 3 months. You will receive an email a week before D-Day and another on the day of deactivation. You have the ability to put them online in the following month by logging into your account on the site. After this delay, your listing will be automatically removed permanently from the website.<\\/p><p><b>I sold my item. How do I delete my ad?<\\/b><\\/p><p>Once your product is sold or leased, log in to your account to remove your listing.<\\/p>\",\"external_link\":null,\"name_color\":null,\"title_color\":null,\"target_blank\":0,\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"excluded_from_footer\":0,\"active\":1,\"lft\":2,\"rgt\":3,\"depth\":1,\"image_url\":null},{\"id\":3,\"parent_id\":null,\"type\":\"standard\",\"name\":\"Anti-Scam\",\"slug\":\"anti-scam\",\"image_path\":null,\"title\":\"Anti-Scam\",\"content\":\"<p><b>Protect yourself against Internet fraud!<\\/b><\\/p><p>The vast majority of listings are posted by honest people and trust. So you can do excellent business. Despite this, it is important to follow a few common sense rules following to prevent any attempt to scam.<\\/p><p><b>Our advices<\\/b><\\/p><ul><li>Doing business with people you can meet in person.<\\/li><li>Never send money by Western Union, MoneyGram or other anonymous payment systems.<\\/li><li>Never send money or products abroad.<\\/li><li>Do not accept checks.<\\/li><li>Ask about the person you're dealing with another confirming source name, address and telephone number.<\\/li><li>Keep copies of all correspondence (emails, listings, letters, etc.) and details of the person.<\\/li><li>If a deal seems too good to be true, there is every chance that this is the case. Refrain.<\\/li><\\/ul><p><b>Recognize attempted scam<\\/b><\\/p><ul><li>The majority of scams have one or more of these characteristics:<\\/li><li>The person is abroad or traveling abroad.<\\/li><li>The person refuses to meet you in person.<\\/li><li>Payment is made through Western Union, Money Gram or check.<\\/li><li>The messages are in broken language (English or French or ...).<\\/li><li>The texts seem to be copied and pasted.<\\/li><li>The deal seems to be too good to be true.<\\/li><\\/ul>\",\"external_link\":null,\"name_color\":null,\"title_color\":null,\"target_blank\":0,\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"excluded_from_footer\":0,\"active\":1,\"lft\":4,\"rgt\":5,\"depth\":1,\"image_url\":null}],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\",\"prev\":null,\"next\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":2,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages\",\"per_page\":2,\"to\":2,\"total\":4}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/pages/{slugOrId}",
                            "metadata": {
                                "groupName": "Pages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get page",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "slugOrId": {
                                    "name": "slugOrId",
                                    "description": "The slug or ID of the page.",
                                    "required": true,
                                    "example": "terms",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "slugOrId": "terms"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"parent_id\":null,\"type\":\"terms\",\"name\":\"Terms\",\"slug\":\"terms\",\"image_path\":null,\"title\":\"Terms & Conditions\",\"content\":\"<h4><b>Definitions<\\/b><\\/h4><p>Each of the terms mentioned below have in these Conditions of Sale Ecosystem Service (hereinafter the \\\"Conditions\\\") the following meanings:<\\/p><ol><li>Announcement&nbsp;: refers to all the elements and data (visual, textual, sound, photographs, drawings), presented by an Advertiser editorial under his sole responsibility, in order to buy, rent or sell a product or service and broadcast on the Website and Mobile Site.<\\/li><li>Advertiser&nbsp;: means any natural or legal person, a major, established in France, holds an account and having submitted an announcement, from it, on the Website. Any Advertiser must be connected to the Personal Account for deposit and or manage its listings. Add first deposit automatically entails the establishment of a Personal Account to the Advertiser.<\\/li><li>Personal Account&nbsp;: refers to the free space than any Advertiser must create and which it should connect from the Website to disseminate, manage and view its listings.<\\/li><li>Ecosystem&nbsp;: means the company that publishes and operates the Website and Mobile Site {YourCompany}, registered at the Trade and Companies Register of {YourCity} under the number {YourCompany Registration Number} whose registered office is at {YourCompany Address}.<\\/li><li>Customer Service&nbsp;: Ecosystem means the department to which the Advertiser may obtain further information. This service can be contacted via email by clicking the link on the Website and Mobile Site.<\\/li><li>Ecosystem Service&nbsp;: Ecosystem means the services made available to Users and Advertisers on the Website and Mobile Site.<\\/li><li>Website&nbsp;: means the website operated by Ecosystem accessed mainly from the URL <a href=\\\"https:\\/\\/Ecosystem.com\\\">https:\\/\\/Ecosystem.com<\\/a> and allowing Users and Advertisers to access the Service via internet Ecosystem.<\\/li><li>Mobile Site&nbsp;: is the mobile site operated by Ecosystem accessible from the URL <a href=\\\"https:\\/\\/Ecosystem.com\\\">https:\\/\\/Ecosystem.com<\\/a> and allowing Users and Advertisers to access via their mobile phone service {YourSiteName}.<\\/li><li>User&nbsp;: any visitor with access to Ecosystem Service via the Website and Mobile Site and Consultant Service Ecosystem accessible from different media.<\\/li><\\/ol><h4><b>Subject<\\/b><\\/h4><p>These Terms and Conditions Of Use establish the contractual conditions applicable to any subscription by an Advertiser connected to its Personal Account from the Website and Mobile Site.<br><\\/p><h4><b>Acceptance<\\/b><\\/h4><p>Any use of the website by an Advertiser is full acceptance of the current Terms.<br><\\/p><h4><b>Responsibility<\\/b><\\/h4><p>Responsibility for Ecosystem can not be held liable for non-performance or improper performance of due control, either because of the Advertiser, or a case of major force.<br><\\/p><h4><b>Modification of these terms<\\/b><\\/h4><p>Ecosystem reserves the right, at any time, to modify all or part of the Terms and Conditions.<\\/p><p>Advertisers are advised to consult the Terms to be aware of the changes.<\\/p><h4><b>Miscellaneous<\\/b><\\/h4><p>If part of the Terms should be illegal, invalid or unenforceable for any reason whatsoever, the provisions in question would be deemed unwritten, without questioning the validity of the remaining provisions will continue to apply between Advertisers and Ecosystem.<\\/p><p>Any complaints should be addressed to Customer Service Ecosystem.<\\/p>\",\"external_link\":null,\"name_color\":null,\"title_color\":null,\"target_blank\":0,\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"excluded_from_footer\":0,\"active\":1,\"lft\":6,\"rgt\":7,\"depth\":1,\"image_url\":null}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/contact",
                            "metadata": {
                                "groupName": "Contact",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Send Form",
                                "description": "Send a message to the site owner.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "",
                                    "required": true,
                                    "example": "aperiam",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address.",
                                    "required": true,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "",
                                    "required": true,
                                    "example": "quae",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "message": {
                                    "name": "message",
                                    "description": "The message to send.",
                                    "required": true,
                                    "example": "Nesciunt porro possimus maiores voluptatibus accusamus velit qui aspernatur.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The user's country code.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_name": {
                                    "name": "country_name",
                                    "description": "The user's country name.",
                                    "required": true,
                                    "example": "United Sates",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "first_name": {
                                    "name": "first_name",
                                    "description": "The user's first name.",
                                    "required": true,
                                    "example": "John",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "last_name": {
                                    "name": "last_name",
                                    "description": "The user's last name.",
                                    "required": true,
                                    "example": "Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "suscipit",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "aperiam",
                                "email": "john.doe@domain.tld",
                                "phone": "quae",
                                "message": "Nesciunt porro possimus maiores voluptatibus accusamus velit qui aspernatur.",
                                "country_code": "US",
                                "country_name": "United Sates",
                                "first_name": "John",
                                "last_name": "Doe",
                                "captcha_key": "suscipit"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/posts/{id}/report",
                            "metadata": {
                                "groupName": "Contact",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Report post",
                                "description": "Report abuse or issues",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The post ID.",
                                    "required": true,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 5
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "report_type_id": {
                                    "name": "report_type_id",
                                    "description": "The report type ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address.",
                                    "required": true,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "message": {
                                    "name": "message",
                                    "description": "The message to send.",
                                    "required": true,
                                    "example": "Et sunt voluptatibus ducimus id assumenda sint.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "aliquid",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "report_type_id": 2,
                                "email": "john.doe@domain.tld",
                                "message": "Et sunt voluptatibus ducimus id assumenda sint.",
                                "captcha_key": "aliquid"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/languages",
                            "metadata": {
                                "groupName": "Languages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List languages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"code\":\"en\",\"locale\":\"en_US\",\"name\":\"English\",\"native\":\"English\",\"flag\":\"flag-icon-gb\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":1,\"parent_id\":null,\"lft\":2,\"rgt\":3,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"en_US\",\"tag\":\"en\",\"primary\":\"en\"},{\"code\":\"fr\",\"locale\":\"fr_FR\",\"name\":\"French\",\"native\":\"Français\",\"flag\":\"flag-icon-fr\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":4,\"rgt\":5,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"fr_FR\",\"tag\":\"fr\",\"primary\":\"fr\"},{\"code\":\"es\",\"locale\":\"es_ES\",\"name\":\"Spanish\",\"native\":\"Español\",\"flag\":\"flag-icon-es\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":6,\"rgt\":7,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"es_ES\",\"tag\":\"es\",\"primary\":\"es\"},{\"code\":\"ar\",\"locale\":\"ar_SA\",\"name\":\"Arabic\",\"native\":\"العربية\",\"flag\":\"flag-icon-sa\",\"script\":\"Arab\",\"direction\":\"rtl\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":8,\"rgt\":9,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ar_SA\",\"tag\":\"ar\",\"primary\":\"ar\"},{\"code\":\"pt\",\"locale\":\"pt_PT\",\"name\":\"Portuguese\",\"native\":\"Português\",\"flag\":\"flag-icon-pt\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":10,\"rgt\":11,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"pt_PT\",\"tag\":\"pt\",\"primary\":\"pt\"},{\"code\":\"de\",\"locale\":\"de_DE\",\"name\":\"German\",\"native\":\"Deutsch\",\"flag\":\"flag-icon-de\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":12,\"rgt\":13,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"de_DE\",\"tag\":\"de\",\"primary\":\"de\"},{\"code\":\"it\",\"locale\":\"it_IT\",\"name\":\"Italian\",\"native\":\"Italiano\",\"flag\":\"flag-icon-it\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":14,\"rgt\":15,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"it_IT\",\"tag\":\"it\",\"primary\":\"it\"},{\"code\":\"tr\",\"locale\":\"tr_TR\",\"name\":\"Turkish\",\"native\":\"Türkçe\",\"flag\":\"flag-icon-tr\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":16,\"rgt\":17,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"tr_TR\",\"tag\":\"tr\",\"primary\":\"tr\"},{\"code\":\"ru\",\"locale\":\"ru_RU\",\"name\":\"Russian\",\"native\":\"Русский\",\"flag\":\"flag-icon-ru\",\"script\":\"Cyrl\",\"direction\":\"ltr\",\"russian_pluralization\":1,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":18,\"rgt\":19,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ru_RU\",\"tag\":\"ru\",\"primary\":\"ru\"},{\"code\":\"hi\",\"locale\":\"hi_IN\",\"name\":\"Hindi\",\"native\":\"हिन्दी\",\"flag\":\"flag-icon-in\",\"script\":\"Deva\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":20,\"rgt\":21,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"hi_IN\",\"tag\":\"hi\",\"primary\":\"hi\"},{\"code\":\"bn\",\"locale\":\"bn_BD\",\"name\":\"Bengali\",\"native\":\"বাংলা\",\"flag\":\"flag-icon-bd\",\"script\":\"Beng\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":22,\"rgt\":23,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"bn_BD\",\"tag\":\"bn\",\"primary\":\"bn\"},{\"code\":\"zh\",\"locale\":\"zh_CN\",\"name\":\"Simplified Chinese\",\"native\":\"简体中文\",\"flag\":\"flag-icon-cn\",\"script\":\"Hans\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":24,\"rgt\":25,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"zh_CN\",\"tag\":\"zh\",\"primary\":\"zh\"},{\"code\":\"ja\",\"locale\":\"ja_JP\",\"name\":\"Japanese\",\"native\":\"日本語\",\"flag\":\"flag-icon-jp\",\"script\":\"Jpan\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":26,\"rgt\":27,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ja_JP\",\"tag\":\"ja\",\"primary\":\"ja\"},{\"code\":\"he\",\"locale\":\"he_IL\",\"name\":\"Hebrew\",\"native\":\"עִברִית\",\"flag\":\"flag-icon-il\",\"script\":\"Hebr\",\"direction\":\"rtl\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":28,\"rgt\":29,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"he_IL\",\"tag\":\"he\",\"primary\":\"he\"},{\"code\":\"th\",\"locale\":\"th_TH\",\"name\":\"Thai\",\"native\":\"ไทย\",\"flag\":\"flag-icon-th\",\"script\":\"Thai\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":30,\"rgt\":31,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"th_TH\",\"tag\":\"th\",\"primary\":\"th\"},{\"code\":\"ro\",\"locale\":\"ro_RO\",\"name\":\"Romanian\",\"native\":\"Română\",\"flag\":\"flag-icon-ro\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":32,\"rgt\":33,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ro_RO\",\"tag\":\"ro\",\"primary\":\"ro\"},{\"code\":\"ka\",\"locale\":\"ka_GE\",\"name\":\"Georgian\",\"native\":\"ქართული\",\"flag\":\"flag-icon-ge\",\"script\":\"Geor\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":34,\"rgt\":35,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ka_GE\",\"tag\":\"ka\",\"primary\":\"ka\"}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/languages/{code}",
                            "metadata": {
                                "groupName": "Languages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get language",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The language's code.",
                                    "required": true,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "en"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"code\":\"en\",\"locale\":\"en_US\",\"name\":\"English\",\"native\":\"English\",\"flag\":\"flag-icon-gb\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":1,\"parent_id\":null,\"lft\":2,\"rgt\":3,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"en_US\",\"tag\":\"en\",\"primary\":\"en\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/settings",
                            "metadata": {
                                "groupName": "Settings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List settings",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"app\":{\"name\":\"SHAREK FORSA\",\"logo\":\"app\\/logo\\/logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark\":\"app\\/default\\/logo-dark.png\",\"logo_light\":\"app\\/default\\/logo-light.png\",\"favicon\":\"app\\/default\\/ico\\/favicon.png\",\"date_format\":\"YYYY-MM-DD\",\"datetime_format\":\"YYYY-MM-DD HH:mm\",\"date_from_now_modifier\":\"DIFF_RELATIVE_TO_NOW\",\"date_from_now_short\":\"0\",\"vector_charts_type\":\"morris_bar\",\"vector_charts_limit\":\"7\",\"show_countries_charts\":\"1\",\"countries_charts_limit\":\"5\",\"latest_entries_limit\":\"5\",\"general_settings_as_submenu_in_sidebar\":\"1\",\"dark_theme_enabled\":\"0\",\"system_theme_enabled\":\"0\",\"php_specific_date_format\":\"0\",\"logo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_light_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"favicon_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/ico\\/favicon.png\"},\"style\":{\"skin\":\"blueIzis\",\"page_width\":\"1200\",\"header_full_width\":\"0\",\"dark_header\":\"0\",\"header_shadow\":\"0\",\"header_background_class\":\"bg-body-tertiary\",\"header_animation\":\"1\",\"header_fixed_top\":\"1\",\"header_height_offset\":\"200\",\"fixed_dark_header\":\"0\",\"fixed_header_shadow\":\"1\",\"header_highlighted_btn_link\":\"listingCreationLink\",\"header_highlighted_btn_class\":\"btn-highlight\",\"logo_width\":216,\"logo_height\":40,\"logo_aspect_ratio\":\"1\",\"dark_footer\":\"1\",\"high_spacing_footer\":\"1\",\"footer_full_width\":\"0\",\"admin_logo_bg\":\"skin3\",\"admin_navbar_bg\":\"skin6\",\"admin_sidebar_type\":\"full\",\"admin_sidebar_bg\":\"skin5\",\"admin_sidebar_position\":\"1\",\"admin_header_position\":\"1\",\"admin_boxed_layout\":\"0\",\"admin_dark_theme\":\"0\",\"body_background_image_animation\":\"0\",\"header_highlighted_btn_outline\":\"0\"},\"listing_form\":{\"publication_form_type\":\"multi-steps-form\",\"city_selection\":\"modal\",\"picture_mandatory\":\"1\",\"listings_limit\":\"50\",\"pictures_limit\":\"5\",\"title_min_length\":\"2\",\"title_max_length\":\"150\",\"description_min_length\":\"5\",\"description_max_length\":\"6000\",\"tags_limit\":\"15\",\"tags_min_length\":\"2\",\"tags_max_length\":\"30\",\"guest_can_submit_listings\":\"0\",\"permanent_listings_enabled\":\"0\",\"default_package_type\":\"promotion\",\"utf8mb4_enabled\":\"0\",\"allow_emojis\":\"0\",\"cat_display_type\":\"c_bigIcon_list\",\"wysiwyg_editor\":\"tinymce\",\"auto_registration\":\"0\"},\"listings_list\":{\"display_browse_listings_link\":\"0\",\"display_mode\":\"grid-view\",\"show_left_sidebar\":\"1\",\"left_sidebar_offcanvas\":\"md\",\"min_price\":\"0\",\"max_price\":\"10000\",\"price_slider_step\":\"50\",\"show_category_icon\":\"7\",\"enable_cities_autocompletion\":\"1\",\"enable_diacritics\":\"0\",\"cities_extended_searches\":\"1\",\"distance_calculation_formula\":\"ST_Distance_Sphere\",\"search_distance_max\":\"500\",\"search_distance_default\":\"50\",\"search_distance_interval\":\"100\",\"premium_first\":\"0\",\"premium_first_category\":\"1\",\"premium_first_location\":\"1\",\"free_listings_in_premium\":\"0\"},\"listing_page\":{\"guest_can_contact_authors\":\"0\",\"pictures_slider\":\"swiper-horizontal\",\"similar_listings\":\"1\",\"similar_listings_in_carousel\":\"1\"},\"mail\":{\"sendmail_path\":\"\\/usr\\/sbin\\/sendmail -bs -i\"},\"sms\":{\"enable_phone_as_auth_field\":\"0\",\"default_auth_field\":\"email\",\"phone_of_countries\":\"local\",\"phone_validator\":\"isPossiblePhoneNumber\",\"phone_placeholder_type\":\"auto-0\",\"phone_verification\":\"1\",\"driver\":null},\"upload\":{\"file_types\":\"pdf,doc,docx,rtf,rtx,ppt,pptx,odt,odp,wps,jpg,jpeg,gif,png,avif,bmp,webp\",\"min_file_size\":0,\"max_file_size\":2500,\"image_types\":\"jpg,jpeg,gif,png,avif,bmp,webp\",\"image_quality\":\"90\",\"client_image_types\":\"jpg,png\",\"min_image_size\":0,\"max_image_size\":2500,\"img_resize_default_method\":\"resize\",\"img_resize_default_width\":1500,\"img_resize_default_height\":1500,\"img_resize_default_ratio\":\"1\",\"img_resize_default_upsize\":\"0\",\"img_resize_default_position\":\"center\",\"img_resize_default_bgColor\":\"ffffff\",\"img_resize_logo_method\":\"resize\",\"img_resize_logo_width\":485,\"img_resize_logo_height\":90,\"img_resize_logo_ratio\":\"1\",\"img_resize_logo_upsize\":\"0\",\"img_resize_logo_position\":\"center\",\"img_resize_logo_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_logo_max_method\":\"resize\",\"img_resize_logo_max_width\":430,\"img_resize_logo_max_height\":80,\"img_resize_logo_max_ratio\":\"1\",\"img_resize_logo_max_upsize\":\"0\",\"img_resize_logo_max_position\":\"center\",\"img_resize_logo_max_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_favicon_method\":\"resize\",\"img_resize_favicon_width\":32,\"img_resize_favicon_height\":32,\"img_resize_favicon_ratio\":\"1\",\"img_resize_favicon_upsize\":\"0\",\"img_resize_favicon_position\":\"center\",\"img_resize_favicon_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_cat_method\":\"resize\",\"img_resize_cat_width\":70,\"img_resize_cat_height\":70,\"img_resize_cat_ratio\":\"1\",\"img_resize_cat_upsize\":\"0\",\"img_resize_cat_position\":\"center\",\"img_resize_cat_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_bg_header_method\":\"resize\",\"img_resize_bg_header_width\":2000,\"img_resize_bg_header_height\":1000,\"img_resize_bg_header_ratio\":\"1\",\"img_resize_bg_header_upsize\":\"0\",\"img_resize_bg_header_position\":\"center\",\"img_resize_bg_header_bgColor\":\"ffffff\",\"img_resize_bg_body_method\":\"resize\",\"img_resize_bg_body_width\":2500,\"img_resize_bg_body_height\":2500,\"img_resize_bg_body_ratio\":\"1\",\"img_resize_bg_body_upsize\":\"0\",\"img_resize_bg_body_position\":\"center\",\"img_resize_bg_body_bgColor\":\"ffffff\",\"img_resize_picture_sm_method\":\"resizeCanvas\",\"img_resize_picture_sm_width\":120,\"img_resize_picture_sm_height\":90,\"img_resize_picture_sm_ratio\":\"1\",\"img_resize_picture_sm_upsize\":\"0\",\"img_resize_picture_sm_position\":\"center\",\"img_resize_picture_sm_bgColor\":\"ffffff\",\"img_resize_picture_md_method\":\"fit\",\"img_resize_picture_md_width\":320,\"img_resize_picture_md_height\":240,\"img_resize_picture_md_ratio\":\"1\",\"img_resize_picture_md_upsize\":\"0\",\"img_resize_picture_md_position\":\"center\",\"img_resize_picture_md_bgColor\":\"ffffff\",\"img_resize_picture_lg_method\":\"resize\",\"img_resize_picture_lg_width\":816,\"img_resize_picture_lg_height\":460,\"img_resize_picture_lg_ratio\":\"1\",\"img_resize_picture_lg_upsize\":\"0\",\"img_resize_picture_lg_position\":\"center\",\"img_resize_picture_lg_bgColor\":\"ffffff\",\"img_resize_avatar_method\":\"resize\",\"img_resize_avatar_width\":800,\"img_resize_avatar_height\":800,\"img_resize_avatar_ratio\":\"1\",\"img_resize_avatar_upsize\":\"0\",\"img_resize_avatar_position\":\"center\",\"img_resize_avatar_bgColor\":\"ffffff\",\"img_resize_company_logo_method\":\"resize\",\"img_resize_company_logo_width\":800,\"img_resize_company_logo_height\":800,\"img_resize_company_logo_ratio\":\"1\",\"img_resize_company_logo_upsize\":\"0\",\"img_resize_company_logo_position\":\"center\",\"img_resize_company_logo_bgColor\":\"rgba(0, 0, 0, 0)\"},\"localization\":{\"geoip_driver\":\"ipapi\",\"country_flag_shape\":\"circle\",\"show_country_flag\":\"in_next_logo\",\"auto_detect_language\":\"disabled\",\"show_languages_flags\":\"0\",\"default_country_code\":\"SA\"},\"security\":{\"honeypot_enabled\":\"1\",\"honeypot_name_field_name\":\"entity_field\",\"honeypot_valid_from_field_name\":\"valid_field\",\"honeypot_amount_of_seconds\":\"3\",\"honeypot_respond_to_spam_with\":\"blank_page\",\"captcha_delay\":\"1000\",\"recaptcha_version\":\"v2\"},\"auth\":{\"open_login_in_modal\":\"1\",\"login_max_attempts\":\"5\",\"login_decay_minutes\":\"15\",\"password_min_length\":\"6\",\"password_max_length\":\"30\",\"password_letters_required\":\"0\",\"password_mixedCase_required\":\"0\",\"password_numbers_required\":\"0\",\"password_symbols_required\":\"0\",\"password_uncompromised_required\":\"0\",\"password_uncompromised_threshold\":\"0\",\"email_validator_rfc\":\"1\",\"email_validator_strict\":\"0\",\"email_validator_dns\":\"0\",\"email_validator_spoof\":\"0\",\"email_validator_filter\":\"0\",\"otp_length\":4,\"otp_expire_time_seconds\":300,\"otp_cooldown_seconds\":60,\"otp_max_attempts\":3,\"otp_decay_minutes\":60,\"max_login_lockout_attempts\":0,\"max_resend_lockout_attempts\":15,\"lockout_duration_minutes\":1440,\"hero_image_path\":\"app\\/default\\/auth\\/login-bg-blurred.jpg\",\"hero_image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/auth\\\\thumbnails\\\\2500x2500-login-bg-blurred.jpg\"},\"social_auth\":{\"button_type\":\"loginWithDefault\"},\"social_link\":{\"facebook_page_url\":\"#\",\"twitter_url\":\"#\",\"linkedin_url\":\"#\",\"pinterest_url\":\"#\",\"instagram_url\":\"#\",\"tiktok_url\":\"#\",\"youtube_url\":\"#\",\"vimeo_url\":\"#\",\"vk_url\":\"#\"},\"social_share\":{\"facebook\":\"1\",\"twitter\":\"1\",\"linkedin\":\"1\",\"whatsapp\":\"1\",\"telegram\":\"1\",\"snapchat\":\"0\",\"messenger\":\"0\",\"pinterest\":\"0\",\"vk\":\"0\",\"tumblr\":\"0\",\"og_image_width\":\"1200\",\"og_image_height\":\"630\"},\"optimization\":{\"cache_driver\":\"file\",\"cache_expiration\":\"86400\",\"memcached_servers_1_host\":\"127.0.0.1\",\"memcached_servers_1_port\":\"11211\",\"redis_client\":\"predis\",\"redis_cluster\":\"predis\",\"redis_host\":\"127.0.0.1\",\"redis_port\":\"6379\",\"redis_database\":\"0\",\"queue_driver\":\"sync\",\"lazy_loading_activation\":\"0\",\"minify_html_activation\":\"0\"},\"seo\":{\"robots_txt\":\"User-agent: *\\nAllow: \\/\\n\\nUser-agent: *\\nDisallow: \\/\\/admin\\/\\nDisallow: \\/assets\\/\\nDisallow: \\/css\\/\\nDisallow: \\/js\\/\\nDisallow: \\/vendor\\/\\nDisallow: \\/main.php\\nDisallow: \\/index.php\\nDisallow: \\/mix-manifest.json\\nDisallow: \\/*?display=*\\nDisallow: \\/locale\\/en\\nDisallow: \\/locale\\/fr\\nDisallow: \\/locale\\/es\\nDisallow: \\/locale\\/ar\\nDisallow: \\/locale\\/pt\\nDisallow: \\/locale\\/de\\nDisallow: \\/locale\\/it\\nDisallow: \\/locale\\/tr\\nDisallow: \\/locale\\/ru\\nDisallow: \\/locale\\/hi\\nDisallow: \\/locale\\/bn\\nDisallow: \\/locale\\/zh\\nDisallow: \\/locale\\/ja\\nDisallow: \\/locale\\/he\\nDisallow: \\/locale\\/th\\nDisallow: \\/locale\\/ro\\nDisallow: \\/locale\\/ka\\nDisallow: \\/auth\\/connect\\/facebook\\nDisallow: \\/auth\\/connect\\/linkedin\\nDisallow: \\/auth\\/connect\\/twitter\\nDisallow: \\/auth\\/connect\\/google\\n\",\"robots_txt_sm_indexes\":\"1\",\"listing_hashed_id_enabled\":\"0\",\"listing_hashed_id_seo_redirection\":\"1\"},\"pagination\":{\"per_page\":10,\"categories_per_page\":12,\"cities_per_page\":40,\"payments_per_page\":10,\"posts_per_page\":12,\"saved_posts_per_page\":10,\"saved_search_per_page\":20,\"subadmin1_per_page\":39,\"subadmin2_per_page\":38,\"subscriptions_per_page\":10,\"threads_per_page\":20,\"threads_messages_per_page\":10,\"similar_posts_limit\":4,\"categories_limit\":50,\"cities_limit\":50,\"auto_complete_cities_limit\":25,\"subadmin1_select_limit\":200,\"subadmin2_select_limit\":5000,\"cities_select_limit\":25},\"other\":{\"account_closure_enabled\":\"1\",\"cookie_consent_enabled\":\"0\",\"show_tips_messages\":\"1\",\"timer_new_messages_checking\":60000,\"wysiwyg_editor\":\"tinymce\",\"carousel_slide_by_page\":\"0\",\"carousel_mouse_drag\":\"0\",\"carousel_loop\":\"1\",\"carousel_rewind\":\"0\",\"carousel_autoplay\":\"1\",\"carousel_autoplay_timeout\":\"1500\",\"carousel_autoplay_hover_pause\":\"1\",\"carousel_nav\":\"1\",\"carousel_nav_position\":\"bottom\",\"carousel_controls\":\"0\",\"carousel_ctrl_position\":\"top-end\",\"cookie_expiration\":1440},\"cron\":{\"unactivated_listings_expiration\":\"30\",\"activated_listings_expiration\":\"30\",\"archived_listings_expiration\":\"7\",\"manually_archived_listings_expiration\":\"90\"},\"footer\":{\"hide_payment_plugins_logos\":\"1\"},\"backup\":{\"disable_notifications\":\"1\",\"keep_all_backups_for_days\":\"7\",\"keep_daily_backups_for_days\":\"16\",\"keep_weekly_backups_for_weeks\":\"8\",\"keep_monthly_backups_for_months\":\"4\",\"keep_yearly_backups_for_years\":\"2\",\"maximum_storage_in_megabytes\":\"5000\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/settings/{key}",
                            "metadata": {
                                "groupName": "Settings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get setting",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "key": {
                                    "name": "key",
                                    "description": "The setting's key.",
                                    "required": true,
                                    "example": "app",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "key": "app"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"name\":\"SHAREK FORSA\",\"logo\":\"app\\/logo\\/logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark\":\"app\\/default\\/logo-dark.png\",\"logo_light\":\"app\\/default\\/logo-light.png\",\"favicon\":\"app\\/default\\/ico\\/favicon.png\",\"date_format\":\"YYYY-MM-DD\",\"datetime_format\":\"YYYY-MM-DD HH:mm\",\"date_from_now_modifier\":\"DIFF_RELATIVE_TO_NOW\",\"date_from_now_short\":\"0\",\"vector_charts_type\":\"morris_bar\",\"vector_charts_limit\":\"7\",\"show_countries_charts\":\"1\",\"countries_charts_limit\":\"5\",\"latest_entries_limit\":\"5\",\"general_settings_as_submenu_in_sidebar\":\"1\",\"dark_theme_enabled\":\"0\",\"system_theme_enabled\":\"0\",\"php_specific_date_format\":\"0\",\"logo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_light_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"favicon_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/ico\\/favicon.png\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/sections",
                            "metadata": {
                                "groupName": "Home",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List sections",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":{\"search_form\":{\"belongs_to\":\"home\",\"key\":\"search_form\",\"data\":[],\"options\":{\"enable_extended_form_area\":\"1\",\"background_image_path\":null,\"background_image_darken\":0,\"title_en\":\"Sell and Buy near you\",\"sub_title_en\":\"Simple, fast and efficient\",\"title_fr\":\"Vendre et acheter près de chez vous\",\"sub_title_fr\":\"Simple, rapide et efficace\",\"title_es\":\"Vender y comprar cerca de usted\",\"sub_title_es\":\"Simple, rápido y eficiente\",\"title_ar\":\"بيع وشراء بالقرب منك\",\"sub_title_ar\":\"بسيطة وسريعة وفعالة\",\"title_pt\":\"Vender e comprar perto de si\",\"sub_title_pt\":\"Simples, Rápido e Eficiente\",\"title_de\":\"Verkaufen und Kaufen in Ihrer Nähe\",\"sub_title_de\":\"Einfach, schnell und effizient\",\"title_it\":\"Vendi e compra vicino a te\",\"sub_title_it\":\"Semplice, veloce ed efficiente\",\"title_tr\":\"Size yakın satıp satın alın\",\"sub_title_tr\":\"Basit, hızlı ve verimli\",\"title_ru\":\"Продавайте и покупайте рядом с вами\",\"sub_title_ru\":\"Просто, быстро и эффективно\",\"title_hi\":\"अपने पास बेचें और खरीदें\",\"sub_title_hi\":\"सरल, तेज और कुशल\",\"title_bn\":\"আপনার কাছাকাছি বিক্রি করুন এবং কিনুন\",\"sub_title_bn\":\"সহজ, দ্রুত এবং দক্ষ\",\"title_zh\":\"在您附近买卖\",\"sub_title_zh\":\"简单,快速,高效\",\"title_ja\":\"お近くの売買\",\"sub_title_ja\":\"シンプル、迅速かつ効率的\",\"title_he\":\"למכור ולקנות בקרבתך\",\"sub_title_he\":\"פשוט, מהיר ויעיל\",\"title_th\":\"ขายและซื้อใกล้บ้านคุณ\",\"sub_title_th\":\"ง่ายรวดเร็วและมีประสิทธิภาพ\",\"title_ro\":\"Vinde și Cumpără inteligent\",\"sub_title_ro\":\"Simplu, rapid și eficient!\",\"title_ka\":\"გაყიდვა და შეძენა ახლოს თქვენ\",\"sub_title_ka\":\"მარტივი, სწრაფი და ეფექტური\",\"background_image_url\":null},\"lft\":0},\"categories\":{\"belongs_to\":\"home\",\"key\":\"categories\",\"data\":{\"categories\":{\"1\":{\"id\":1,\"parent_id\":null,\"name\":\"Automobiles\",\"slug\":\"automobiles\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-car\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":1,\"rgt\":10,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"9\":{\"id\":9,\"parent_id\":null,\"name\":\"Phones & Tablets\",\"slug\":\"phones-and-tablets\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-mobile-screen-button\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":11,\"rgt\":17,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"14\":{\"id\":14,\"parent_id\":null,\"name\":\"Electronics\",\"slug\":\"electronics\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-laptop\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":18,\"rgt\":35,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"30\":{\"id\":30,\"parent_id\":null,\"name\":\"Furniture & Appliances\",\"slug\":\"furniture-appliances\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-couch\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":36,\"rgt\":44,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"37\":{\"id\":37,\"parent_id\":null,\"name\":\"Real estate\",\"slug\":\"real-estate\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-house\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":45,\"rgt\":55,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"46\":{\"id\":46,\"parent_id\":null,\"name\":\"Animals & Pets\",\"slug\":\"animals-and-pets\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-paw\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":56,\"rgt\":65,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"54\":{\"id\":54,\"parent_id\":null,\"name\":\"Fashion\",\"slug\":\"fashion\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-shirt\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":66,\"rgt\":75,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"62\":{\"id\":62,\"parent_id\":null,\"name\":\"Beauty & Well being\",\"slug\":\"beauty-well-being\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-spa\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":76,\"rgt\":88,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"73\":{\"id\":73,\"parent_id\":null,\"name\":\"Jobs\",\"slug\":\"jobs\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-briefcase\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":89,\"rgt\":114,\"depth\":0,\"type\":\"job-offer\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"97\":{\"id\":97,\"parent_id\":null,\"name\":\"Services\",\"slug\":\"services\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-clipboard-list\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":115,\"rgt\":133,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"114\":{\"id\":114,\"parent_id\":null,\"name\":\"Learning\",\"slug\":\"learning\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-graduation-cap\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":134,\"rgt\":143,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"122\":{\"id\":122,\"parent_id\":null,\"name\":\"Local Events\",\"slug\":\"local-events\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-regular fa-calendar-days\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":144,\"rgt\":158,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"}},\"countPostsPerCat\":[]},\"options\":{\"max_items\":null,\"cat_display_type\":\"c_bigIcon_list\",\"show_icon\":\"1\",\"max_sub_cats\":\"3\"},\"lft\":2},\"premium_listings\":{\"belongs_to\":\"home\",\"key\":\"premium_listings\",\"data\":{\"premium\":null},\"options\":{\"max_items\":\"20\",\"items_in_carousel\":\"1\"},\"lft\":4},\"locations\":{\"belongs_to\":\"home\",\"key\":\"locations\",\"data\":{\"cities\":[{\"id\":44,\"country_code\":\"SA\",\"name\":\"Riyadh\",\"longitude\":46.72,\"latitude\":24.69,\"feature_class\":\"P\",\"feature_code\":\"PPLC\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":4205961,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"riyadh\"},{\"id\":136,\"country_code\":\"SA\",\"name\":\"Riyadh\",\"longitude\":46.72,\"latitude\":24.69,\"feature_class\":\"P\",\"feature_code\":\"PPLC\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":4205961,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"riyadh\"},{\"id\":29,\"country_code\":\"SA\",\"name\":\"Jeddah\",\"longitude\":39.19,\"latitude\":21.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":2867446,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2022-01-21T01:00:00.000000Z\",\"updated_at\":\"2022-01-21T01:00:00.000000Z\",\"slug\":\"jeddah\"},{\"id\":121,\"country_code\":\"SA\",\"name\":\"Jeddah\",\"longitude\":39.19,\"latitude\":21.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":2867446,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2022-01-21T01:00:00.000000Z\",\"updated_at\":\"2022-01-21T01:00:00.000000Z\",\"slug\":\"jeddah\"},{\"id\":25,\"country_code\":\"SA\",\"name\":\"Mecca\",\"longitude\":39.83,\"latitude\":21.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":1323624,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2020-05-28T01:00:00.000000Z\",\"updated_at\":\"2020-05-28T01:00:00.000000Z\",\"slug\":\"mecca\"},{\"id\":117,\"country_code\":\"SA\",\"name\":\"Mecca\",\"longitude\":39.83,\"latitude\":21.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":1323624,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2020-05-28T01:00:00.000000Z\",\"updated_at\":\"2020-05-28T01:00:00.000000Z\",\"slug\":\"mecca\"},{\"id\":61,\"country_code\":\"SA\",\"name\":\"Medina\",\"longitude\":39.61,\"latitude\":24.47,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":1300000,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"medina\"},{\"id\":153,\"country_code\":\"SA\",\"name\":\"Medina\",\"longitude\":39.61,\"latitude\":24.47,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":1300000,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"medina\"},{\"id\":104,\"country_code\":\"SA\",\"name\":\"Sulţānah\",\"longitude\":39.59,\"latitude\":24.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":946697,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2012-01-16T01:00:00.000000Z\",\"updated_at\":\"2012-01-16T01:00:00.000000Z\",\"slug\":\"sultanah\"},{\"id\":12,\"country_code\":\"SA\",\"name\":\"Sulţānah\",\"longitude\":39.59,\"latitude\":24.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":946697,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2012-01-16T01:00:00.000000Z\",\"updated_at\":\"2012-01-16T01:00:00.000000Z\",\"slug\":\"sultanah\"},{\"id\":81,\"country_code\":\"SA\",\"name\":\"Dammam\",\"longitude\":50.1,\"latitude\":26.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.06\",\"subadmin2_code\":null,\"population\":768602,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2014-08-19T01:00:00.000000Z\",\"updated_at\":\"2014-08-19T01:00:00.000000Z\",\"slug\":\"dammam\"},{\"id\":173,\"country_code\":\"SA\",\"name\":\"Dammam\",\"longitude\":50.1,\"latitude\":26.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.06\",\"subadmin2_code\":null,\"population\":768602,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2014-08-19T01:00:00.000000Z\",\"updated_at\":\"2014-08-19T01:00:00.000000Z\",\"slug\":\"dammam\"},{\"id\":132,\"country_code\":\"SA\",\"name\":\"Ta’if\",\"longitude\":40.42,\"latitude\":21.27,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":530848,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-05T01:00:00.000000Z\",\"updated_at\":\"2015-09-05T01:00:00.000000Z\",\"slug\":\"ta’if\"},{\"id\":40,\"country_code\":\"SA\",\"name\":\"Ta’if\",\"longitude\":40.42,\"latitude\":21.27,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":530848,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-05T01:00:00.000000Z\",\"updated_at\":\"2015-09-05T01:00:00.000000Z\",\"slug\":\"ta’if\"},{\"id\":101,\"country_code\":\"SA\",\"name\":\"Tabuk\",\"longitude\":36.57,\"latitude\":28.4,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.19\",\"subadmin2_code\":null,\"population\":455450,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-12T01:00:00.000000Z\",\"updated_at\":\"2015-09-12T01:00:00.000000Z\",\"slug\":\"tabuk\"},{\"id\":9,\"country_code\":\"SA\",\"name\":\"Tabuk\",\"longitude\":36.57,\"latitude\":28.4,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.19\",\"subadmin2_code\":null,\"population\":455450,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-12T01:00:00.000000Z\",\"updated_at\":\"2015-09-12T01:00:00.000000Z\",\"slug\":\"tabuk\"},{\"id\":155,\"country_code\":\"SA\",\"name\":\"Al Kharj\",\"longitude\":47.33,\"latitude\":24.16,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":425300,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2017-09-13T01:00:00.000000Z\",\"updated_at\":\"2017-09-13T01:00:00.000000Z\",\"slug\":\"al-kharj\"},{\"id\":63,\"country_code\":\"SA\",\"name\":\"Al Kharj\",\"longitude\":47.33,\"latitude\":24.16,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":425300,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2017-09-13T01:00:00.000000Z\",\"updated_at\":\"2017-09-13T01:00:00.000000Z\",\"slug\":\"al-kharj\"},{\"id\":34,\"country_code\":\"SA\",\"name\":\"Buraydah\",\"longitude\":43.97,\"latitude\":26.33,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.08\",\"subadmin2_code\":null,\"population\":391336,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2018-03-06T01:00:00.000000Z\",\"updated_at\":\"2018-03-06T01:00:00.000000Z\",\"slug\":\"buraydah\"},{\"id\":0,\"name\":\"More cities &raquo;\",\"subadmin0_code\":0}],\"items_cols\":4},\"options\":{\"show_cities\":\"1\",\"max_items\":\"19\",\"show_listing_btn\":\"1\",\"enable_map\":\"0\",\"map_width\":\"300\",\"map_height\":\"300\"},\"lft\":6},\"latest_listings\":{\"belongs_to\":\"home\",\"key\":\"latest_listings\",\"data\":{\"latest\":null},\"options\":{\"max_items\":\"8\",\"show_view_more_btn\":\"1\"},\"lft\":8},\"stats\":{\"belongs_to\":\"home\",\"key\":\"stats\",\"data\":{\"count\":{\"posts\":0,\"users\":36,\"locations\":184}},\"options\":{\"icon_count_listings\":\"bi bi-megaphone\",\"icon_count_users\":\"bi bi-people\",\"icon_count_locations\":\"bi bi-geo-alt\",\"counter_up_delay\":10,\"counter_up_time\":2000},\"lft\":10}}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/sections/{method}",
                            "metadata": {
                                "groupName": "Home",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get section",
                                "description": "Get category by its unique slug or ID.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "method": {
                                    "name": "method",
                                    "description": "",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "key": {
                                    "name": "key",
                                    "description": "The key/method of the section.",
                                    "required": true,
                                    "example": "getCategories",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "method": 1,
                                "key": "getCategories"
                            },
                            "queryParameters": {
                                "parentCatSlug": {
                                    "name": "parentCatSlug",
                                    "description": "The slug of the parent category to retrieve used when category's slug provided instead of ID.",
                                    "required": false,
                                    "example": "automobiles",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "parentCatSlug": "automobiles"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Section not found\",\"result\":null,\"error\":\"Section not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/captcha",
                            "metadata": {
                                "groupName": "Captcha",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get CAPTCHA",
                                "description": "Calling this endpoint is mandatory if the captcha is enabled in the Admin panel.\nReturn JSON data with an 'img' item that contains the captcha image to show and a 'key' item that contains the generated key to send for validation.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"sensitive\":false,\"key\":\"eyJpdiI6IjBid2xQRWlPMUYzZmR5VzNEci9seFE9PSIsInZhbHVlIjoiVStmbUxUaUFqcUFObTVscjZ2QkNaY0VNeUFLcGNYSThmQ0FtT2ZHU1hZaGkzbXRDZnBxZTFtUW1oeGwrQ08waWRPTUNtZ0x1Rjc0MmpBbnVMZ0VTZGsxYnVGWjhLMTR4VDRCL1dwWE0wR289IiwibWFjIjoiYWJlNzU5MDQzNzM4MTJiMzI1YmUwNGUzN2IwOGFlOGQ4YWQzODMzMTA0MTU4NjdmNjY3MzhjMTgzMDFmNWVkOCIsInRhZyI6IiJ9\",\"img\":\"data:image\\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAAAyCAYAAADbYdBlAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAPAklEQVR4nO2de2xb133HP\\/fy8s3Ll0RasmRJjmXZcew4dr06bhMna5oi6dYmRboMRVKgG4oOXYe1wJYNwzZ0K1AsWbph7TYMWIE90K3Jijy2Lkk7L+2SOOmS+BXHTmJHsh1Z1luUxMclL8n72B+SKT4lUrqU7I6ff8hzz7n3HIpf\\/h7nAQnH3zpt0qLFBiFu9ABa\\/P+mJcAWG0pLgC02lHUR4Be\\/enI9umlxHdJ0AQ6PpOnd4ml2Ny2uU1oCbLGhNF2AH4yk6WsJsEUNWhawxYbSEmCLDUVq5sNb4mscQc8SuvAD5NGf4EgNI2oZDMlDzteNGrqJRPfdZNr3b\\/QwLaMlwGsIuzJKzyu\\/gUMZKbku6hmkbAxP7DThoe+jRA8y+uE\\/Q3e1bdBIraOpLriVgDSAkWfL0S9XiK8a3qk36H351xG0zDoMrLk03QLe8ZH2Znbxc0N46AmcqeFC2UQg1XkHamgXmDqemRN4p48X6p3JD2g7\\/w\\/M3PQVS8dhzEyjvXkUMxEHQJD9SAcPI7ZHLO3nKi0XfI0QGH6upDx18+8wO\\/D50jaXnmXziT8plIOXnrVUgKZhkPnW1zHj8yXXtVPH8PzRo5b1U0zTXHBLfA1g5HEmhgpFXfIyu\\/2himbxrZ9B9fcXynZ1Gpsas2wYZmy6QnwAZjJuWR\\/ltAR4DeBQRhFMvVBWw7tBqP7VaJ6OkrKoKZaNw5iZsuxZ9dI0F3w9JiDHE1MciY3glxzIkp1DgQ4GPMGSNjlDRxJEREGwrF8pM1lSzns6a7YVjHxJ2bS5LBuHOT25ciOLaZoAr8cE5FImwavx8UK53e5iwBPk9fgEP5z+gLNKDM00ERH4eLibr\\/XstaRfKTNdUs67Ny3TdkkkJgKaM2zJGACMqYmadaZhACCI1jrNZQX47isvoswvxBh2pwuH24s3GMIf6SAQ3YRoq337alzw\\/FCa2DsK+bSBaZgIooDkFvF2OIjuk7E5l\\/\\/wqbEs6ckchmYiiGBziTj9Er7NTgTbyhYrqZdaF6do4\\/HhU\\/zP3GjJdQOTWF5t6LMth73MAmruaM22xWLVnWEQ125D9IuDZP76UVCrT+uYiTjKVx4GQIhswvMH30RwW+Pdlh394BuvoOWyVetskp1I3zY279hN7559JWJcbfx36YUYycvV+xv7WZz9X91SU0jvPzXFxOuJqnWhATd7vtS1Yv9JLVdSfmJikPFcumpbWbKv+Lx6qXDBNSygoGWwFcV8eU9tS9kI2rHXaoqvHHN6En3wHNLN1qzG1DQphqHXFB+AruWZGDrHyeef4kd\\/8xiXz54q1K1WgN13hGrWKWM5Rl+tzNAAZs6kaooPILSjvrGUW8Bi8QUkB9vdAW70hIjYXfhtjrqeWQ9Sdq6kbNjlqu0qLKWrtqVsBDNd\\/UdWu33Kkn5hGQuYa2BQairBsf94ktmxEW75xKdXnYBE9vqYPOZh9lz1voePzBLdL+OQl4adT+sMPj1dtT2A3OOk6\\/ZgzfpiygUI0O308lvde7hZbmI8W5QBA9hy1ac9KmJFiywgTmdDzQWndYlPTQFKDgcfefALiJKEaRjkMmnS83PEpyeIXRkmk6i0RheOvYYv1MbwSNuqE5D+ByIcf\\/wyRq7ytKieNbn4XIydn1v6ww8+PU0+pVe0BRAdAjsf6kAQ68tYlTIB9rlk\\/nLgNlyirYFP0Dh5z+aScvj9f0bZdCumrVQY5a5ac1mzOiHdvB\\/t1Z+CWccJXbcHcdsOS\\/qFZQXopHP7jTVvnBsf5d1XjjAxdK7k+rsvH2F45L5VzwG6Qnb67mnj4g9nqtZPnUzSechPoM\\/N9NspZk7Xdgf990Vwt9Ufq5XHgI\\/07mu6+ABSm++kbfB7hbJ35gQ3HHmARPfHyck3YIo27OlJ\\/CMvlNynLZMtN4K0ex\\/eP\\/87sk\\/+E9qJ1ysbeGU8v\\/8NAIRAEMHRmMVctu\\/V3hjq7OKjv\\/prvP3icwy+cbRwfUZx07lGb9V1W4Cpk0lSV6rEoCZceHaG3V\\/sZOiZ2q63bZeXjoP+hvotd8G9ruqxmNWkIwdIdt6JPP5S4ZpDGaH9\\/D8ue19+mWy5UQSfH1zu6nU2ETFikbsvY82TOnvu+iRuOVAoJ\\/Jh2n1r26UhiAIDvxKtObrUaJZT375S0\\/XaZRsDDzb25eimgWosPc8jSpZONq\\/E6MFHSXbe2dA9VlnAjWTNAhQEkbYtfYVyXAvR5m0sq6qGr8tJ9zLJQ3Zeq1k38GAUu68x15nUSq2fz8JplnowJTdXPvpthg\\/\\/PfN996MGtqPb\\/RiiA93uJxPajV6WHWvu5uxQWU9quuD5iTFmR4dRlSS6pmGTHLj9AfxtEYKdXdiKvqCrs+SwYAGjwVy1RzZM3z1hZs6kUGdri62czkN+2m70NtxXufuVbesrwKukowdJRw9Wret\\/\\/hPY8kkADJsbw+5bz6E1hQoBXnrrGO8dfbFqlnsV0SYR3dpPz579dO3cjaokC3VxLURfjzXzRKJdpP+BKGe\\/O1ZXe3e7nW2fXl0AmtRLfzSyhfN8ViGpS4mZlfHfRlIiwOP\\/+QOG3z6x4k2GrjExdI6JoXO4fH5ymQWXG9dCBKQ55PaVVx3qJbzDQ2Sfj+lTK4hahJ0PbUK0ry6qKHfBVq50WIFNnSnZMfPzEP9BUQw4+MbRusRXjppKYOgLLjKRD+O3zxLevMW6EbIwnSK5lxdW791h5C2rnyC91i2gPT1eUrZsEnqDkWBhWe2dl49UVHoCITr6d+L2+dG0HKnYDImZSZIz00DlpGVcCxGRszg9jcdgyw7SLeIISGiZ2rFl+561xUPXugX0Tr1ZUl5uy9b1hAQwMXQOPV\\/65Q4cuoPdv3gPQpWNkdm0wvjge1w8+TpzY0uHaBL5MAe6a8eOq+XSj2OkJ5ZPbIaemWLvb3avuo+NSkLEXJytP\\/kc81sfIN77qao7YRzJDwgP\\/kvJNTW0a13G12wkgNjo5ZKLbn+QPR\\/7ZM2bnB4vfXsP0Lf3AD\\/+28dQ5meBBQs4sNNa1xW\\/mOHKSyuLOn5RZfz1OJ23BlZsW42NcsH2zBQOZZTo2e8QPfsd8u4O1OBOcnIvpiDiSF3GN34U0Vgan+YIkuq4bV3G12wkgEzZOYB6Yzgtn0OZX9rJcW\\/03whv\\/rJlg9NUg3NPTFbz9lW5+FyMtpu8JZsV6iW1QS64fH3XnpnAnpmA8Ro3AJO3\\/B6ITRhfjc2mplb\\/NFijLHxTZTP++Tr3hs2NXaFYHYIgEuy0LgMeemaa7Fz9H15XDYb+fYZdn+9YuXEZ5RbQu04uWHeEyHm31HUe2BAdTO59hETPLzVlLEKt2D2toF8awra1v3p9EYZhkEgqxJOpwmuyrJxIpIgnFRLJ1IIAvcHSfXjTwxeJXRmmrbt32c6K4z8Af3RTyQT1Wpg+nWLqZHLlhmXMnE4R+5BC267GEqGKJGSdBKiGb+LCvc\\/hnH8fz\\/QxXPPv4UgOY89MImppTNFO3tOBEr2VuW0PojUx+ai13qshMPYX3yQZipJQMqi3303KFySRTBFPLAjpqsDSGRW\\/7CUg+wqvsuwl6Jfp6epYuO73EZC9+GXfggC7duzm\\/M9eKnRomgZH\\/\\/W77Dp8NzccOIRkrx4PlceO4a7lBVsv2bjG4FO1T2htOiCjqQaxs9VPhA0+PUVwW++KW\\/iLqUhCpPWdhskGB8gGB9avv1yORFIpslYp4pNpYrYoSWwkBBtJbCQFiTwCsqnjn9eQceB\\/623CBw7SHg6xra8bv+wrCM7nbWwXlAQQ2ryFzQM3Mfb+O4UKXctz5qcv8O7RF+nYtoP2nq2EOrsJRDuQFrfjlFtAq+b\\/zj85iZYxqtbZZRvb7mtHUw3mzqcx8pUBYi6uc+lHMfrvr3+ttDIJubamYeoho2YXrZGy6OZSiyJbeh9PLLwC+GVvkbXy4fd72dwRwTs+jN\\/QkdGRTQ03Zd9FKo7vU39oyZgL0fqHfvmzpL8\\/x\\/xE6bKXns8xeu4Mo+fOFK45vT6cHi+ZsgPLVghw9Og884O1Y9Dtn40guW1IbhtbPhZi+L9mq7Ybey1OdL+Mv6e+yek\\/veHDJLQcSS1PSs\\/jWId9gPWgpDOLcdOSpSqxWgUXqGCXbIvWyLvo5hasUk9355JL9C+8Oh3VLbxxaC+Zx\\/4YM77MylPOmrV+AKH4H9Vo+Rxvv\\/g8l06+Qd2p5yKSw8l9j3xjTYNRJnKc\\/KsRTK1635FbfNz48FKCYWgmxx+\\/jBqr3EoP4O10sP9rtQ8ybRRLVqnUOpVarYU6l8u5GDcVWaoiqxXwewuikyRrTtka83Pknvoe2qk3wSizfk4nzgcexn77XZb0JVT7T0mJ6UkunPhfrrx7urDOuxKR3m0cfvhLqx6IqZuc\\/PYIylj1X5fkFfmFR3ortlnNnk8vu1mh794wPXdZd3a2GtUyv0Si6H1KKcn8\\/PKSaIrjp2KrdbWNzeJzuI1gqir68EVY3Gwi+AOIPVubvyPaH9nEvnvuZ9899zM3Psrs6DDxqQkSM5OkZmfIKgrlFjLctTb3e+XofE3xAWz\\/TKTqHr\\/wDg9tu701E5Lh\\/54jul\\/GFWosptM0bclClWV65XFVtczP7\\/cRDMr0bunE7\\/OWZH7XC4LLhbSjuSsuK9rsUGcXobK5PUPXSMfnySopcmqGfFZdc\\/xn6iaCJFS6XxG6bgsSuaX29vj++yMkL6vkEpU7pE3NZOaMQvfhYCHziyeqzVEVu0SFfF5bslD+JUsVbQ\\/Rv3VtmV+LJaq64I3CNExySR09Z2DqC4f+nQFp2S1WmYxKPKkwP5dk4sIcc7EkSUUhqaZRsgppLYOiZUoyv6uB+NU5qkI8VeQa3W7rjh62qM2qo9ZXfncIySVic4lIbnHxvQ1psWxziXXVFyOIAs6AREpJL8RNcwrxyytkfnapIJyrogpEvGyRI3Vnfi02jjVZQE010FUDLWMsvtfRFsu6apTUJ1IKSSVFMpMmlVFI5TIo+TRZUUUVVDKoZIwMip7BZXPidbjxubzIbg+yd8kyBQIywZCPUJtMqM2Py3f9zde1WGJdXPAXfvvrNTM\\/n9uLz+HBY3fjsXnw2FwYWbOqiGuJ3GpL3GL9uKZiwNXSiCWuVX\\/4WysvtLewnv8DWVTwzOl2Q+cAAAAASUVORK5CYII=\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        }
                    ],
                    [
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 500,
                                    "content": "{\"success\":false,\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"result\":null,\"error\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"exception\":{\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458\",\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"line\":30,\"code\":0,\"trace\":[{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"__construct\",\"class\":\"App\\\\Http\\\\Resources\\\\BaseResource\",\"type\":\"->\",\"args\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},0]},{\"function\":\"Illuminate\\\\Support\\\\Traits\\\\{closure}\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},0]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Arr.php\",\"line\":754,\"function\":\"array_map\",\"args\":[{},[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],[0,1,2,3,4,5,6,7,8,9]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Collection.php\",\"line\":809,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Arr\",\"type\":\"::\",\"args\":[[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Database\\\\Eloquent\\\\Collection.php\",\"line\":418,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"map\",\"class\":\"Illuminate\\\\Database\\\\Eloquent\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Support\\\\Traits\\\\ForwardsCalls.php\",\"line\":23,\"function\":\"mapInto\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pagination\\\\AbstractPaginator.php\",\"line\":801,\"function\":\"forwardCallTo\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\CollectsResources.php\",\"line\":35,\"function\":\"__call\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection.php\",\"line\":53,\"function\":\"collectResource\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection.php\",\"line\":31,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":96,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23},\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":81,\"function\":\"newCollection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Services\\\\StartupService.php\",\"line\":75,\"function\":\"collection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController.php\",\"line\":34,\"function\":\"list\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Services\\\\StartupService\",\"type\":\"->\",\"args\":[[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\ControllerDispatcher.php\",\"line\":46,\"function\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":265,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\ControllerDispatcher\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"index\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":211,\"function\":\"runController\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":808,\"function\":\"run\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Routing\\\\{closure}\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\LastUserActivity.php\",\"line\":46,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\LastUserActivity\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\BannedUser.php\",\"line\":45,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\BannedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\DemoRestriction.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\DemoRestriction\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser.php\",\"line\":40,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\GetLocalization.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\GetLocalization\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\RequirementsChecker.php\",\"line\":44,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\RequirementsChecker\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings.php\",\"line\":50,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":123,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":88,\"function\":\"handleRequestUsingNamedLimiter\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\",{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":26,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\{closure}\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":25,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\VerifyAPIAccess.php\",\"line\":47,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\VerifyAPIAccess\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":103,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":45,\"function\":\"handleApi\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":807,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":786,\"function\":\"runRouteWithinStack\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":750,\"function\":\"runRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":739,\"function\":\"dispatchToRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":200,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Foundation\\\\Http\\\\{closure}\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\barryvdh\\\\laravel-debugbar\\\\src\\\\Middleware\\\\InjectDebugbar.php\",\"line\":59,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Barryvdh\\\\Debugbar\\\\Middleware\\\\InjectDebugbar\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\packages\\\\larapen\\\\honeypot\\\\src\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam.php\",\"line\":15,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Larapen\\\\Honeypot\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull.php\",\"line\":31,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings.php\",\"line\":51,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize.php\",\"line\":27,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance.php\",\"line\":114,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\HandleCors.php\",\"line\":61,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\HandleCors\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\TrustProxies.php\",\"line\":58,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\TrustProxies\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":175,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":144,\"function\":\"sendRequestThroughRouter\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":256,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":249,\"function\":\"callLaravelRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":86,\"function\":\"makeApiCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":39,\"function\":\"makeResponseCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":240,\"function\":\"__invoke\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":165,\"function\":\"iterateThroughStrategies\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[\"responses\",{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":97,\"function\":\"fetchResponses\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":125,\"function\":\"processRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":72,\"function\":\"extractEndpointsInfoFromLaravelApp\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}],[],[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":50,\"function\":\"extractEndpointsInfoAndWriteToDisk\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[{},false]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Commands\\\\GenerateDocumentation.php\",\"line\":55,\"function\":\"get\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":36,\"function\":\"handle\",\"class\":\"Knuckles\\\\Scribe\\\\Commands\\\\GenerateDocumentation\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Util.php\",\"line\":43,\"function\":\"Illuminate\\\\Container\\\\{closure}\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":96,\"function\":\"unwrapIfClosure\",\"class\":\"Illuminate\\\\Container\\\\Util\",\"type\":\"::\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":35,\"function\":\"callBoundMethod\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Container.php\",\"line\":754,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],[],null]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":211,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\Container\",\"type\":\"->\",\"args\":[[{},\"handle\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Command\\\\Command.php\",\"line\":318,\"function\":\"execute\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":180,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Command\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":1074,\"function\":\"run\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":341,\"function\":\"doRunCommand\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":192,\"function\":\"doRun\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Console\\\\Kernel.php\",\"line\":197,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Application.php\",\"line\":1234,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Console\\\\Kernel\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\artisan\",\"line\":13,\"function\":\"handleCommand\",\"class\":\"Illuminate\\\\Foundation\\\\Application\",\"type\":\"->\",\"args\":[{}]}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{id}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "792",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "792"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Startup not found.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "Must be 2 characters.",
                                    "required": false,
                                    "example": "uy",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "aasxuphfzoodpj",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tagline": {
                                    "name": "tagline",
                                    "description": "Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "ysyr",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 50000 characters.",
                                    "required": false,
                                    "example": "Vel molestias qui ut enim iure voluptates.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "vhjadwugnfjwzbfrpsov",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": false,
                                    "example": "pre_seed",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "website": {
                                    "name": "website",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "whlicyzjiuhagssmpjv",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "founded_year": {
                                    "name": "founded_year",
                                    "description": "Must be at least 1900. Must not be greater than 2027.",
                                    "required": false,
                                    "example": 22,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "team_size": {
                                    "name": "team_size",
                                    "description": "Must be at least 1. Must not be greater than 10000.",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "revenue_monthly": {
                                    "name": "revenue_monthly",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 20,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "xrw",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "fundraising_target": {
                                    "name": "fundraising_target",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 3,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "uy",
                                "name": "aasxuphfzoodpj",
                                "tagline": "ysyr",
                                "description": "Vel molestias qui ut enim iure voluptates.",
                                "sector": "vhjadwugnfjwzbfrpsov",
                                "stage": "pre_seed",
                                "website": "whlicyzjiuhagssmpjv",
                                "founded_year": 22,
                                "team_size": 5,
                                "revenue_monthly": 20,
                                "currency_code": "xrw",
                                "fundraising_target": 3
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{id}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "84",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "84"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "Must be 2 characters.",
                                    "required": false,
                                    "example": "cx",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "wfnzrcvdz",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tagline": {
                                    "name": "tagline",
                                    "description": "Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "wutcwwitvlod",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 50000 characters.",
                                    "required": false,
                                    "example": "Quia sed veniam repudiandae molestiae eos.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "mxuofbler",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": false,
                                    "example": "idea",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "website": {
                                    "name": "website",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "iwnknplvomjocshy",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "founded_year": {
                                    "name": "founded_year",
                                    "description": "Must be at least 1900. Must not be greater than 2027.",
                                    "required": false,
                                    "example": 8,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "team_size": {
                                    "name": "team_size",
                                    "description": "Must be at least 1. Must not be greater than 10000.",
                                    "required": false,
                                    "example": 22,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "revenue_monthly": {
                                    "name": "revenue_monthly",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 36,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "rjf",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "fundraising_target": {
                                    "name": "fundraising_target",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 73,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The <code>id</code> of an existing record in the posts table.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "cx",
                                "name": "wfnzrcvdz",
                                "tagline": "wutcwwitvlod",
                                "description": "Quia sed veniam repudiandae molestiae eos.",
                                "sector": "mxuofbler",
                                "stage": "idea",
                                "website": "iwnknplvomjocshy",
                                "founded_year": 8,
                                "team_size": 22,
                                "revenue_monthly": 36,
                                "currency_code": "rjf",
                                "fundraising_target": 73,
                                "post_id": 1
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{id}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "6118135",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "6118135"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{id}/submit-review",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "15",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "15"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{id}/kpi",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "929223",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "929223"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "83924",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "83924"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "6542",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "6542"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "cxpfupzc",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "role_title": {
                                    "name": "role_title",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "lqauwptvjkuoghmkmfulklj",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "Must be a valid email address. Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "bud18@example.com",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://hintz.net/",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "is_founder": {
                                    "name": "is_founder",
                                    "description": "",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 83,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 12,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "cxpfupzc",
                                "role_title": "lqauwptvjkuoghmkmfulklj",
                                "email": "bud18@example.com",
                                "linkedin_url": "http://hintz.net/",
                                "is_founder": false,
                                "sort_order": 83,
                                "user_id": 12
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team/{memberId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "2",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "347",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "2",
                                "memberId": "347"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "qeoajazjaokqfwmgpb",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "role_title": {
                                    "name": "role_title",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "clhwnjxcfxxdrttzgiidj",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "Must be a valid email address. Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "sally.erdman@example.net",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://kautzer.com/",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "is_founder": {
                                    "name": "is_founder",
                                    "description": "",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 69,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "qeoajazjaokqfwmgpb",
                                "role_title": "clhwnjxcfxxdrttzgiidj",
                                "email": "sally.erdman@example.net",
                                "linkedin_url": "http://kautzer.com/",
                                "is_founder": false,
                                "sort_order": 69,
                                "user_id": 3
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team/{memberId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "7",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "4",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "7",
                                "memberId": "4"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "338",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "338"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "4709",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "4709"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "yayhqikpprrkyoijgy",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "Modi neque nam corrupti voluptas necessitatibus ad quo et.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "achieved_at": {
                                    "name": "achieved_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:12",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "yayhqikpprrkyoijgy",
                                "description": "Modi neque nam corrupti voluptas necessitatibus ad quo et.",
                                "achieved_at": "2026-05-21T04:42:12",
                                "sort_order": 1
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones/{milestoneId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "64",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "64",
                                "milestoneId": "8"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "drrhijbcbcmyys",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "Molestias quis facere et dolorem.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "achieved_at": {
                                    "name": "achieved_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:12",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 19,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "drrhijbcbcmyys",
                                "description": "Molestias quis facere et dolorem.",
                                "achieved_at": "2026-05-21T04:42:12",
                                "sort_order": 19
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones/{milestoneId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "482",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "39",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "482",
                                "milestoneId": "39"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/media",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "9873",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "9873"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/media",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "87",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "87"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "file": {
                                    "name": "file",
                                    "description": "Must be a file. Must not be greater than 10240 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "type": {
                                    "name": "type",
                                    "description": "",
                                    "required": false,
                                    "example": "document",
                                    "type": "string",
                                    "enumValues": [
                                        "image",
                                        "document",
                                        "video"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "cpsldhyluebfbhcdazejvjw",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 16,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "type": "document",
                                "title": "cpsldhyluebfbhcdazejvjw",
                                "sort_order": 16
                            },
                            "fileParameters": {
                                "file": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/media/{mediaId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "9",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "mediaId": {
                                    "name": "mediaId",
                                    "description": "",
                                    "required": true,
                                    "example": "472339",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "9",
                                "mediaId": "472339"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/logo",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "83",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "83"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "logo": {
                                    "name": "logo",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": [],
                            "fileParameters": {
                                "logo": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/pitch-deck",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "61",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "61"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "pitch_deck": {
                                    "name": "pitch_deck",
                                    "description": "Must be a file. Must not be greater than 20480 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": [],
                            "fileParameters": {
                                "pitch_deck": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "66",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "99",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "66",
                                "roundId": "99"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "2",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "2"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "glxfqtky",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Itaque maxime aliquid eos veritatis.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": true,
                                    "example": "series_a",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "instrument": {
                                    "name": "instrument",
                                    "description": "",
                                    "required": true,
                                    "example": "safe",
                                    "type": "string",
                                    "enumValues": [
                                        "equity",
                                        "safe",
                                        "convertible_note"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 29,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "minimum_investment": {
                                    "name": "minimum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 27,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_investment": {
                                    "name": "maximum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 9,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "pre_money_valuation": {
                                    "name": "pre_money_valuation",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 81,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_valuation_cap": {
                                    "name": "safe_valuation_cap",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 22,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_discount_percent": {
                                    "name": "safe_discount_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 10,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "ipl",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:13",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "glxfqtky",
                                "description": "Itaque maxime aliquid eos veritatis.",
                                "stage": "series_a",
                                "instrument": "safe",
                                "target_amount": 29,
                                "minimum_investment": 27,
                                "maximum_investment": 9,
                                "pre_money_valuation": 81,
                                "safe_valuation_cap": 22,
                                "safe_discount_percent": 10,
                                "currency_code": "ipl",
                                "closes_at": "2026-05-21T04:42:13"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "12",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "5",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "12",
                                "roundId": "5"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "aizvchpss",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Voluptatibus vel perferendis soluta a sunt veniam tenetur est.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": true,
                                    "example": "growth",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "instrument": {
                                    "name": "instrument",
                                    "description": "",
                                    "required": true,
                                    "example": "equity",
                                    "type": "string",
                                    "enumValues": [
                                        "equity",
                                        "safe",
                                        "convertible_note"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 49,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "minimum_investment": {
                                    "name": "minimum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 78,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_investment": {
                                    "name": "maximum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 76,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "pre_money_valuation": {
                                    "name": "pre_money_valuation",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 7,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_valuation_cap": {
                                    "name": "safe_valuation_cap",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 19,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_discount_percent": {
                                    "name": "safe_discount_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 13,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "qgf",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:13",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "aizvchpss",
                                "description": "Voluptatibus vel perferendis soluta a sunt veniam tenetur est.",
                                "stage": "growth",
                                "instrument": "equity",
                                "target_amount": 49,
                                "minimum_investment": 78,
                                "maximum_investment": 76,
                                "pre_money_valuation": 7,
                                "safe_valuation_cap": 19,
                                "safe_discount_percent": 13,
                                "currency_code": "qgf",
                                "closes_at": "2026-05-21T04:42:13"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/open",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "55",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "918",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "55",
                                "roundId": "918"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/close",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "82088",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "931689552",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "82088",
                                "roundId": "931689552"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "746",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "4925",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "746",
                                "roundId": "4925"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "20",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "989",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "20",
                                "roundId": "989"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "amount": {
                                    "name": "amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 71,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "kxh",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": false,
                                    "example": "jfuxvqftdtsmzp",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "syndicate_id": {
                                    "name": "syndicate_id",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 89,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "amount": 71,
                                "currency_code": "kxh",
                                "notes": "jfuxvqftdtsmzp",
                                "syndicate_id": 89
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments/{commitmentId}/confirm",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "9539845",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "3076585",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "commitmentId": {
                                    "name": "commitmentId",
                                    "description": "",
                                    "required": true,
                                    "example": "itaque",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "9539845",
                                "roundId": "3076585",
                                "commitmentId": "itaque"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments/{commitmentId}/cancel",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "98",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "commitmentId": {
                                    "name": "commitmentId",
                                    "description": "",
                                    "required": true,
                                    "example": "qui",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "1",
                                "roundId": "98",
                                "commitmentId": "qui"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/due-diligence",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "706398",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "8",
                                "roundId": "706398"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/due-diligence/{itemId}/toggle",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "42644280",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "itemId": {
                                    "name": "itemId",
                                    "description": "",
                                    "required": true,
                                    "example": "accusamus",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "42644280",
                                "roundId": "1",
                                "itemId": "accusamus"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "55244475",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "55244475"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "holder_name": {
                                    "name": "holder_name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "nfweimfsbcdtptxmumgp",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "holder_type": {
                                    "name": "holder_type",
                                    "description": "",
                                    "required": true,
                                    "example": "other",
                                    "type": "string",
                                    "enumValues": [
                                        "founder",
                                        "investor",
                                        "employee",
                                        "advisor",
                                        "other"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 20,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "funding_round_id": {
                                    "name": "funding_round_id",
                                    "description": "",
                                    "required": false,
                                    "example": 16,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ownership_percent": {
                                    "name": "ownership_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 13,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "shares": {
                                    "name": "shares",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 33,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "invested_amount": {
                                    "name": "invested_amount",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 52,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "gur",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": false,
                                    "example": "ckunnjmscekco",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "holder_name": "nfweimfsbcdtptxmumgp",
                                "holder_type": "other",
                                "user_id": 20,
                                "funding_round_id": 16,
                                "ownership_percent": 13,
                                "shares": 33,
                                "invested_amount": 52,
                                "currency_code": "gur",
                                "notes": "ckunnjmscekco"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table/{entryId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entryId": {
                                    "name": "entryId",
                                    "description": "",
                                    "required": true,
                                    "example": "4",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "3",
                                "entryId": "4"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "holder_name": {
                                    "name": "holder_name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "zxgdgzzsrobe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "holder_type": {
                                    "name": "holder_type",
                                    "description": "",
                                    "required": true,
                                    "example": "other",
                                    "type": "string",
                                    "enumValues": [
                                        "founder",
                                        "investor",
                                        "employee",
                                        "advisor",
                                        "other"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "funding_round_id": {
                                    "name": "funding_round_id",
                                    "description": "",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ownership_percent": {
                                    "name": "ownership_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 23,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "shares": {
                                    "name": "shares",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 82,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "invested_amount": {
                                    "name": "invested_amount",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 29,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "emz",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": false,
                                    "example": "asxnwr",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "holder_name": "zxgdgzzsrobe",
                                "holder_type": "other",
                                "user_id": 3,
                                "funding_round_id": 5,
                                "ownership_percent": 23,
                                "shares": 82,
                                "invested_amount": 29,
                                "currency_code": "emz",
                                "notes": "asxnwr"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table/{entryId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "645094",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entryId": {
                                    "name": "entryId",
                                    "description": "",
                                    "required": true,
                                    "example": "6",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "645094",
                                "entryId": "6"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/packages",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":[{\"id\":1,\"tier\":\"basic\",\"label\":\"Basic\",\"name\":\"أساسي\",\"description\":\"تقرير جدوى مع تحليل العائد ROI\",\"price\":\"999.00\",\"currencyCode\":\"SAR\",\"features\":[\"questionnaire\",\"roi\",\"html_report\"],\"includesConsultation\":false},{\"id\":2,\"tier\":\"standard\",\"label\":\"Standard\",\"name\":\"قياسي\",\"description\":\"تقرير كامل مع IRR وNPV وأقسام السوق\",\"price\":\"2499.00\",\"currencyCode\":\"SAR\",\"features\":[\"questionnaire\",\"roi\",\"irr\",\"npv\",\"html_report\",\"market_sections\"],\"includesConsultation\":false},{\"id\":3,\"tier\":\"premium\",\"label\":\"Premium\",\"name\":\"مميز\",\"description\":\"تقرير مؤسسي + جلسة استشارية مع خبير\",\"price\":\"4999.00\",\"currencyCode\":\"SAR\",\"features\":[\"questionnaire\",\"roi\",\"irr\",\"npv\",\"html_report\",\"consultation\"],\"includesConsultation\":true}]}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/templates",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":[{\"id\":3,\"sector\":\"fintech\",\"name\":\"Fintech\",\"description\":\"Template for financial technology startups\",\"questionCount\":5},{\"id\":4,\"sector\":\"healthtech\",\"name\":\"HealthTech\",\"description\":\"قالب دراسة جدوى للصحة الرقمية\",\"questionCount\":3},{\"id\":5,\"sector\":\"legal\",\"name\":\"Legal \\/ RegTech\",\"description\":\"قالب لخدمات قانونية وتقنية امتثال\",\"questionCount\":2},{\"id\":2,\"sector\":\"retail\",\"name\":\"Retail \\/ E-commerce\",\"description\":\"Template for retail and e-commerce ventures\",\"questionCount\":5},{\"id\":1,\"sector\":\"technology\",\"name\":\"Technology \\/ SaaS\",\"description\":\"Template for software and technology startups\",\"questionCount\":6}]}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/templates/{id}",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the template.",
                                    "required": true,
                                    "example": "04",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "04"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":4,\"sector\":\"healthtech\",\"name\":\"HealthTech\",\"description\":\"قالب دراسة جدوى للصحة الرقمية\",\"questionnaire\":[{\"id\":\"product\",\"type\":\"text\",\"label\":\"المنتج الطبي\\/الرقمي\",\"required\":true},{\"id\":\"regulatory\",\"type\":\"text\",\"label\":\"متطلبات تنظيمية\",\"required\":true},{\"id\":\"growth_rate\",\"type\":\"number\",\"label\":\"نمو سنوي %\",\"required\":true}],\"defaultFinancials\":{\"discount_rate\":0.14,\"operating_margin\":0.18,\"annual_revenue_y1\":400000,\"annual_revenue_y2\":1200000,\"annual_revenue_y3\":2800000,\"initial_investment\":800000}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/studies",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Create feasibility study",
                                "description": "Supports bilingual fields and multipart attachments (`gallery_images[]`, `documents[]`).",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "package_id": {
                                    "name": "package_id",
                                    "description": "Package ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "template_id": {
                                    "name": "template_id",
                                    "description": "Template ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "Arabic title.",
                                    "required": true,
                                    "example": "Feasibility study — SaaS",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "startup_id": {
                                    "name": "startup_id",
                                    "description": "optional Linked startup ID.",
                                    "required": false,
                                    "example": 9,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "title_en": {
                                    "name": "title_en",
                                    "description": "optional English title.",
                                    "required": false,
                                    "example": "explicabo",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "optional Arabic description.",
                                    "required": false,
                                    "example": "Voluptatem numquam eos odio rerum voluptatem laudantium autem.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description_en": {
                                    "name": "description_en",
                                    "description": "optional English description.",
                                    "required": false,
                                    "example": "quas",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "optional Sector (Arabic).",
                                    "required": false,
                                    "example": "quis",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector_en": {
                                    "name": "sector_en",
                                    "description": "optional Sector (English).",
                                    "required": false,
                                    "example": "rerum",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "cover_image": {
                                    "name": "cover_image",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "gallery_images": {
                                    "name": "gallery_images",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "documents": {
                                    "name": "documents",
                                    "description": "Must be a file. Must not be greater than 20480 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "package_id": 1,
                                "template_id": 1,
                                "title": "Feasibility study — SaaS",
                                "startup_id": 9,
                                "title_en": "explicabo",
                                "description": "Voluptatem numquam eos odio rerum voluptatem laudantium autem.",
                                "description_en": "quas",
                                "sector": "quis",
                                "sector_en": "rerum"
                            },
                            "fileParameters": {
                                "cover_image": null,
                                "gallery_images": [
                                    null
                                ],
                                "documents": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "0"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/answers",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "6318",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "6318"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "answers": {
                                    "name": "answers",
                                    "description": "",
                                    "required": true,
                                    "example": [],
                                    "type": "object",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials": {
                                    "name": "financials",
                                    "description": "",
                                    "required": false,
                                    "example": null,
                                    "type": "object",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.initial_investment": {
                                    "name": "financials.initial_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 76,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.annual_cash_flows": {
                                    "name": "financials.annual_cash_flows",
                                    "description": "",
                                    "required": false,
                                    "example": [
                                        219.274051
                                    ],
                                    "type": "number[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.discount_rate": {
                                    "name": "financials.discount_rate",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 23,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.projected_revenue": {
                                    "name": "financials.projected_revenue",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 63,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.projected_costs": {
                                    "name": "financials.projected_costs",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 63,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "answers": [],
                                "financials": {
                                    "initial_investment": 76,
                                    "annual_cash_flows": [
                                        219.274051
                                    ],
                                    "discount_rate": 23,
                                    "projected_revenue": 63,
                                    "projected_costs": 63
                                }
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/calculate",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "718",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "718"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/request-payment",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "1458",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "1458"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/confirm-payment",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Confirm online payment",
                                "description": "Marks study as paid and applies platform/provider commission split. Returns `commission` object in `result`.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_KEY}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "5",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "5"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hEdafav6Ze84k6PD1V5g3bc"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/mark-paid",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "29",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "29"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/generate-report",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "5",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "5"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/export",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/requests",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 500,
                                    "content": "{\"success\":false,\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"result\":null,\"error\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"exception\":{\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458\",\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"line\":30,\"code\":0,\"trace\":[{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"__construct\",\"class\":\"App\\\\Http\\\\Resources\\\\BaseResource\",\"type\":\"->\",\"args\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},0]},{\"function\":\"Illuminate\\\\Support\\\\Traits\\\\{closure}\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},0]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Arr.php\",\"line\":754,\"function\":\"array_map\",\"args\":[{},[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],[0,1,2,3,4,5,6,7,8,9]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Collection.php\",\"line\":809,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Arr\",\"type\":\"::\",\"args\":[[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Database\\\\Eloquent\\\\Collection.php\",\"line\":418,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"map\",\"class\":\"Illuminate\\\\Database\\\\Eloquent\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Support\\\\Traits\\\\ForwardsCalls.php\",\"line\":23,\"function\":\"mapInto\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pagination\\\\AbstractPaginator.php\",\"line\":801,\"function\":\"forwardCallTo\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\CollectsResources.php\",\"line\":35,\"function\":\"__call\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection.php\",\"line\":53,\"function\":\"collectResource\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection.php\",\"line\":31,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":96,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37},\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":81,\"function\":\"newCollection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Services\\\\ConsultingService.php\",\"line\":53,\"function\":\"collection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController.php\",\"line\":34,\"function\":\"listRequests\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Services\\\\ConsultingService\",\"type\":\"->\",\"args\":[[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\ControllerDispatcher.php\",\"line\":46,\"function\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":265,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\ControllerDispatcher\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"index\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":211,\"function\":\"runController\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":808,\"function\":\"run\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Routing\\\\{closure}\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\LastUserActivity.php\",\"line\":46,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\LastUserActivity\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\BannedUser.php\",\"line\":45,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\BannedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\DemoRestriction.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\DemoRestriction\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser.php\",\"line\":40,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\GetLocalization.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\GetLocalization\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\RequirementsChecker.php\",\"line\":44,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\RequirementsChecker\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings.php\",\"line\":50,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":123,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":88,\"function\":\"handleRequestUsingNamedLimiter\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\",{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":26,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\{closure}\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":25,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\VerifyAPIAccess.php\",\"line\":47,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\VerifyAPIAccess\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":103,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":45,\"function\":\"handleApi\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":807,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":786,\"function\":\"runRouteWithinStack\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":750,\"function\":\"runRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":739,\"function\":\"dispatchToRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":200,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Foundation\\\\Http\\\\{closure}\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\barryvdh\\\\laravel-debugbar\\\\src\\\\Middleware\\\\InjectDebugbar.php\",\"line\":59,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Barryvdh\\\\Debugbar\\\\Middleware\\\\InjectDebugbar\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\packages\\\\larapen\\\\honeypot\\\\src\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam.php\",\"line\":15,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Larapen\\\\Honeypot\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull.php\",\"line\":31,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings.php\",\"line\":51,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize.php\",\"line\":27,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance.php\",\"line\":114,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\HandleCors.php\",\"line\":61,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\HandleCors\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\TrustProxies.php\",\"line\":58,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\TrustProxies\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":175,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":144,\"function\":\"sendRequestThroughRouter\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":256,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":249,\"function\":\"callLaravelRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":86,\"function\":\"makeApiCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":39,\"function\":\"makeResponseCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":240,\"function\":\"__invoke\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":165,\"function\":\"iterateThroughStrategies\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[\"responses\",{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":97,\"function\":\"fetchResponses\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":125,\"function\":\"processRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":72,\"function\":\"extractEndpointsInfoFromLaravelApp\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}],[],[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":50,\"function\":\"extractEndpointsInfoAndWriteToDisk\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[{},false]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Commands\\\\GenerateDocumentation.php\",\"line\":55,\"function\":\"get\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":36,\"function\":\"handle\",\"class\":\"Knuckles\\\\Scribe\\\\Commands\\\\GenerateDocumentation\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Util.php\",\"line\":43,\"function\":\"Illuminate\\\\Container\\\\{closure}\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":96,\"function\":\"unwrapIfClosure\",\"class\":\"Illuminate\\\\Container\\\\Util\",\"type\":\"::\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":35,\"function\":\"callBoundMethod\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Container.php\",\"line\":754,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],[],null]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":211,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\Container\",\"type\":\"->\",\"args\":[[{},\"handle\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Command\\\\Command.php\",\"line\":318,\"function\":\"execute\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":180,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Command\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":1074,\"function\":\"run\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":341,\"function\":\"doRunCommand\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":192,\"function\":\"doRun\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Console\\\\Kernel.php\",\"line\":197,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Application.php\",\"line\":1234,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Console\\\\Kernel\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\artisan\",\"line\":13,\"function\":\"handleCommand\",\"class\":\"Illuminate\\\\Foundation\\\\Application\",\"type\":\"->\",\"args\":[{}]}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "4693",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4693"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Consulting request not found.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Create consulting request",
                                "description": "Use `category` matching active `consulting_service_catalog.code`. `financial` uses `financial_accounting` commission rates.\nMultipart: `gallery_images[]`, `documents[]`.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_KEY}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "startup_id": {
                                    "name": "startup_id",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 18,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "category": {
                                    "name": "category",
                                    "description": "Catalog code.",
                                    "required": true,
                                    "example": "legal",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "",
                                    "required": true,
                                    "example": "repudiandae",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "budget_min": {
                                    "name": "budget_min",
                                    "description": "optional",
                                    "required": false,
                                    "example": 269.40432,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "budget_max": {
                                    "name": "budget_max",
                                    "description": "optional",
                                    "required": false,
                                    "example": 23310.31072,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "pnv",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "deadline_at": {
                                    "name": "deadline_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:07",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "title_en": {
                                    "name": "title_en",
                                    "description": "optional",
                                    "required": false,
                                    "example": "voluptas",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "",
                                    "required": true,
                                    "example": "Dolore iusto porro iste nesciunt totam vel.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description_en": {
                                    "name": "description_en",
                                    "description": "optional",
                                    "required": false,
                                    "example": "natus",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "optional",
                                    "required": false,
                                    "example": "unde",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector_en": {
                                    "name": "sector_en",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "twfyzmyurbfw",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "cover_image": {
                                    "name": "cover_image",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "gallery_images": {
                                    "name": "gallery_images",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "documents": {
                                    "name": "documents",
                                    "description": "Must be a file. Must not be greater than 20480 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "startup_id": 18,
                                "category": "legal",
                                "title": "repudiandae",
                                "budget_min": 269.40432,
                                "budget_max": 23310.31072,
                                "currency_code": "pnv",
                                "deadline_at": "2026-05-21T04:42:07",
                                "title_en": "voluptas",
                                "description": "Dolore iusto porro iste nesciunt totam vel.",
                                "description_en": "natus",
                                "sector": "unde",
                                "sector_en": "twfyzmyurbfw"
                            },
                            "fileParameters": {
                                "cover_image": null,
                                "gallery_images": [
                                    null
                                ],
                                "documents": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer a3f6hb1DEdvk4PV5acg6Z8e"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}/cancel",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "741652902",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "741652902"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}/proposals",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "8251",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8251"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "amount": {
                                    "name": "amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 53,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "ecc",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "delivery_days": {
                                    "name": "delivery_days",
                                    "description": "Must be at least 1. Must not be greater than 365.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "proposal_text": {
                                    "name": "proposal_text",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": true,
                                    "example": "lfeedkealhaqjfz",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "amount": 53,
                                "currency_code": "ecc",
                                "delivery_days": 2,
                                "proposal_text": "lfeedkealhaqjfz"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}/proposals/{proposalId}/accept",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "8166",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "proposalId": {
                                    "name": "proposalId",
                                    "description": "",
                                    "required": true,
                                    "example": "132789987",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8166",
                                "proposalId": "132789987"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/engagements",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "5339",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "5339"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/complete",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "51",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "51"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/review",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "2774",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "2774"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "rating": {
                                    "name": "rating",
                                    "description": "Must be at least 1. Must not be greater than 5.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "comment": {
                                    "name": "comment",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "y",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "rating": 1,
                                "comment": "y"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/milestones/{milestoneId}/fund",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "8674048",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "55",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8674048",
                                "milestoneId": "55"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/milestones/{milestoneId}/release",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "314",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "034940",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "314",
                                "milestoneId": "034940"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consultant/profile/{userId}",
                            "metadata": {
                                "groupName": "Consultant & Providers",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": "26",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": "26"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":10,\"userId\":26,\"bio\":null,\"specialties\":[],\"hourlyRate\":null,\"currencyCode\":null,\"ratingAvg\":null,\"reviewsCount\":null,\"isVerified\":false,\"user\":{\"id\":26,\"name\":\"لينا الخريجي\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consultant/profile",
                            "metadata": {
                                "groupName": "Consultant & Providers",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/consultant/profile",
                            "metadata": {
                                "groupName": "Consultant & Providers",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "bio": {
                                    "name": "bio",
                                    "description": "Must not be greater than 10000 characters.",
                                    "required": false,
                                    "example": "uqiba",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "specialties": {
                                    "name": "specialties",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": [
                                        "osnivesnktl"
                                    ],
                                    "type": "string[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "hourly_rate": {
                                    "name": "hourly_rate",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 57,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "htn",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "bio": "uqiba",
                                "specialties": [
                                    "osnivesnktl"
                                ],
                                "hourly_rate": 57,
                                "currency_code": "htn"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/founder/profile",
                            "metadata": {
                                "groupName": "Founder",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/founder/profile",
                            "metadata": {
                                "groupName": "Founder",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "headline": {
                                    "name": "headline",
                                    "description": "Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "lzoxyednsfne",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "bio": {
                                    "name": "bio",
                                    "description": "Must not be greater than 10000 characters.",
                                    "required": false,
                                    "example": "cjnnnqo",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://beatty.org/vitae-consequatur-vitae-ut-rem-distinctio-eligendi-totam.html",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "twitter_url": {
                                    "name": "twitter_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "https://shields.com/reiciendis-et-sed-magni-nihil-quis-at.html",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "experience_years": {
                                    "name": "experience_years",
                                    "description": "Must be at least 0. Must not be greater than 80.",
                                    "required": false,
                                    "example": 10,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "headline": "lzoxyednsfne",
                                "bio": "cjnnnqo",
                                "linkedin_url": "http://beatty.org/vitae-consequatur-vitae-ut-rem-distinctio-eligendi-totam.html",
                                "twitter_url": "https://shields.com/reiciendis-et-sed-magni-nihil-quis-at.html",
                                "experience_years": 10
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/profile",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/investor/profile",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "investor_type": {
                                    "name": "investor_type",
                                    "description": "",
                                    "required": false,
                                    "example": "corporate",
                                    "type": "string",
                                    "enumValues": [
                                        "angel",
                                        "vc",
                                        "family_office",
                                        "corporate",
                                        "syndicate"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "organization_name": {
                                    "name": "organization_name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "lhdvmzhyptblqvszldhvu",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "bio": {
                                    "name": "bio",
                                    "description": "Must not be greater than 10000 characters.",
                                    "required": false,
                                    "example": "avsm",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://kerluke.com/aut-incidunt-eos-velit-cupiditate-nesciunt-ab",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ticket_min": {
                                    "name": "ticket_min",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 20,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ticket_max": {
                                    "name": "ticket_max",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 22,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "wfo",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "is_accredited": {
                                    "name": "is_accredited",
                                    "description": "",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "preferred_sectors": {
                                    "name": "preferred_sectors",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": [
                                        "vjwggpdcafupikynatmqg"
                                    ],
                                    "type": "string[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "preferred_stages": {
                                    "name": "preferred_stages",
                                    "description": "Must not be greater than 32 characters.",
                                    "required": false,
                                    "example": [
                                        "ypazuoqnnmxosunaf"
                                    ],
                                    "type": "string[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "preferred_country_code": {
                                    "name": "preferred_country_code",
                                    "description": "Must be 2 characters.",
                                    "required": false,
                                    "example": "ac",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "investor_type": "corporate",
                                "organization_name": "lhdvmzhyptblqvszldhvu",
                                "bio": "avsm",
                                "linkedin_url": "http://kerluke.com/aut-incidunt-eos-velit-cupiditate-nesciunt-ab",
                                "ticket_min": 20,
                                "ticket_max": 22,
                                "currency_code": "wfo",
                                "is_accredited": false,
                                "preferred_sectors": [
                                    "vjwggpdcafupikynatmqg"
                                ],
                                "preferred_stages": [
                                    "ypazuoqnnmxosunaf"
                                ],
                                "preferred_country_code": "ac"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/investor/profile/submit-kyc",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/portfolio",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/matches",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/watchlist",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/investor/watchlist/{startupId}",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "885",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "885"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "mtariftgcmm",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "notes": "mtariftgcmm"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/investor/watchlist/{startupId}",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "0"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "startup_id": {
                                    "name": "startup_id",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 40,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "funding_round_id": {
                                    "name": "funding_round_id",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 34,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "krfpbpxp",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Doloremque nam similique fugit rerum omnis eveniet impedit.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 26,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "carry_percent": {
                                    "name": "carry_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 18,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "minimum_commitment": {
                                    "name": "minimum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 1,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_commitment": {
                                    "name": "maximum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 90,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "qar",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:10",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "startup_id": 40,
                                "funding_round_id": 34,
                                "name": "krfpbpxp",
                                "description": "Doloremque nam similique fugit rerum omnis eveniet impedit.",
                                "target_amount": 26,
                                "carry_percent": 18,
                                "minimum_commitment": 1,
                                "maximum_commitment": 90,
                                "currency_code": "qar",
                                "closes_at": "2026-05-21T04:42:10"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "4933",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4933"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "6",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "6"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "ratohlar",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Expedita aut ut quas velit ullam aperiam.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 72,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "carry_percent": {
                                    "name": "carry_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 1,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "minimum_commitment": {
                                    "name": "minimum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 88,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_commitment": {
                                    "name": "maximum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 4,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:10",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "ratohlar",
                                "description": "Expedita aut ut quas velit ullam aperiam.",
                                "target_amount": 72,
                                "carry_percent": 1,
                                "minimum_commitment": 88,
                                "maximum_commitment": 4,
                                "closes_at": "2026-05-21T04:42:10"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/open",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "24760",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "24760"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/close",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "15",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "15"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/dashboard",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "82",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "82"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/join",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "4347",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4347"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/leave",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "73430",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "73430"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/members",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "28",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "28"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/members/{memberId}/approve",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "4",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "05",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4",
                                "memberId": "05"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/members/{memberId}/reject",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "2",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "770832",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "2",
                                "memberId": "770832"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/commitments/{commitmentId}",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "commitmentId": {
                                    "name": "commitmentId",
                                    "description": "",
                                    "required": true,
                                    "example": "1778017",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "commitmentId": "1778017"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/{id}/hold",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the escrow.",
                                    "required": true,
                                    "example": "7",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "7"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/{id}/release",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the escrow.",
                                    "required": true,
                                    "example": "9562",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "9562"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/{id}/refund",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the escrow.",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/investors/{userId}/approve-kyc",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": "57",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": "57"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/investors/{userId}/reject-kyc",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": "6",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": "6"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/approve",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "075",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "075"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/reject",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "rejection_reason": {
                                    "name": "rejection_reason",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": true,
                                    "example": "dm",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "rejection_reason": "dm"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/fundraising",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "669",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "669"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/close-round",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "7",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "7"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/suspend",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "551",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "551"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/auth/login",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Log in",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address or username (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "user@demosite.com",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "123456",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The user's mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "quas",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "email": "user@demosite.com",
                                "password": "123456",
                                "auth_field": "email",
                                "phone": null,
                                "phone_country": null,
                                "captcha_key": "quas"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/logout/{userId}",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Log out",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "The ID of the user to logout.",
                                    "required": false,
                                    "example": 4,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": 4
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 400,
                                    "content": "{\"success\":false,\"message\":\"An error occurred and the logout failed.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 3fVDZa4hPdvgaEeb6kc8651"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/auth/password/forgot",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Forgot password",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address or username (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "user@demosite.com",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The user's mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "qui",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "email": "user@demosite.com",
                                "auth_field": "email",
                                "phone": null,
                                "phone_country": null,
                                "captcha_key": "qui"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/auth/password/reset",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Reset password",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address or username (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "token": {
                                    "name": "token",
                                    "description": "",
                                    "required": true,
                                    "example": "ratione",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The user's mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password_confirmation": {
                                    "name": "password_confirmation",
                                    "description": "The confirmation of the user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "dolorum",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "email": "john.doe@domain.tld",
                                "token": "ratione",
                                "phone_country": null,
                                "password": "js!X07$z61hLA",
                                "auth_field": "email",
                                "phone": null,
                                "password_confirmation": "js!X07$z61hLA",
                                "captcha_key": "dolorum"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/connect/{provider}",
                            "metadata": {
                                "groupName": "Social Auth",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get target URL",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "provider": {
                                    "name": "provider",
                                    "description": "The provider's name - Possible values: facebook, linkedin, or google.",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "provider": null
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"API endpoint not found.\"}",
                                    "headers": {
                                        "cache-control": "no-cache, private",
                                        "content-type": "application/json",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/connect/{provider}/callback",
                            "metadata": {
                                "groupName": "Social Auth",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get user info",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "provider": {
                                    "name": "provider",
                                    "description": "The provider's name - Possible values: facebook, linkedin, or google.",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "provider": null
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"API endpoint not found.\"}",
                                    "headers": {
                                        "cache-control": "no-cache, private",
                                        "content-type": "application/json",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/verify/{entityMetadataKey}/{entityId}/resend/email",
                            "metadata": {
                                "groupName": "Verification",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Email: Re-send link",
                                "description": "Re-send email verification link to the user",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "entityMetadataKey": {
                                    "name": "entityMetadataKey",
                                    "description": "The slug of the entity to verify ('users' or 'posts').",
                                    "required": true,
                                    "example": "users",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entityId": {
                                    "name": "entityId",
                                    "description": "The entity/model identifier (ID).",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "entityMetadataKey": "users",
                                "entityId": 3
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":false,\"message\":\"Your Email address is already verified.\",\"result\":{\"id\":3,\"name\":\"خالد الشمري\",\"username\":\"demo.founder3\",\"two_factor_enabled\":false,\"two_factor_method\":\"email\",\"updated_at\":\"2026-05-21T00:47:21.000000Z\",\"original_updated_at\":\"2026-05-21 00:47:21\",\"original_last_activity\":null,\"created_at_formatted\":\"2026-05-21 01:10\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"p_is_online\":false,\"country_flag_url\":\"http:\\/\\/127.0.0.1:8000\\/images\\/flags\\/circle\\/16\\/sa.png\"},\"extra\":{\"isUnverifiedField\":false,\"fieldVerificationSent\":false,\"resendUrl\":\"http:\\/\\/127.0.0.1:8000\\/auth\\/verify\\/users\\/3\\/resend\\/email\",\"field\":\"email\",\"fieldValue\":\"demo.founder3@platform.test\",\"fieldHiddenValue\":\"de**********************est\",\"resendLocked\":false}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/verify/{entityMetadataKey}/{entityId}/resend/sms",
                            "metadata": {
                                "groupName": "Verification",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "SMS: Re-send code",
                                "description": "Re-send mobile phone verification token by SMS",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "entityMetadataKey": {
                                    "name": "entityMetadataKey",
                                    "description": "The slug of the entity to verify ('users' or 'posts').",
                                    "required": true,
                                    "example": "users",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entityId": {
                                    "name": "entityId",
                                    "description": "The entity/model identifier (ID).",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "entityMetadataKey": "users",
                                "entityId": 3
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":false,\"message\":\"Your Phone Number is already verified.\",\"result\":{\"id\":3,\"name\":\"خالد الشمري\",\"username\":\"demo.founder3\",\"two_factor_enabled\":false,\"two_factor_method\":\"email\",\"updated_at\":\"2026-05-21T00:47:21.000000Z\",\"original_updated_at\":\"2026-05-21 00:47:21\",\"original_last_activity\":null,\"created_at_formatted\":\"2026-05-21 01:10\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"p_is_online\":false,\"country_flag_url\":\"http:\\/\\/127.0.0.1:8000\\/images\\/flags\\/circle\\/16\\/sa.png\"},\"extra\":{\"isUnverifiedField\":false,\"fieldVerificationSent\":false,\"resendUrl\":\"http:\\/\\/127.0.0.1:8000\\/api\\/auth\\/verify\\/users\\/3\\/resend\\/sms\",\"field\":\"phone\",\"fieldValue\":\"\",\"fieldHiddenValue\":\"********\",\"resendLocked\":false}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/verify/{entityMetadataKey}/{field}/{token?}",
                            "metadata": {
                                "groupName": "Verification",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Verification",
                                "description": "Verify the user's email address or mobile phone number",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "entityMetadataKey": {
                                    "name": "entityMetadataKey",
                                    "description": "The slug of the entity to verify ('users' or 'posts').",
                                    "required": true,
                                    "example": "users",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "field": {
                                    "name": "field",
                                    "description": "The field to verify.",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "token": {
                                    "name": "token",
                                    "description": "The verification token.",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "entityMetadataKey": "users",
                                "field": "email",
                                "token": null
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 400,
                                    "content": "{\"success\":false,\"message\":\"The verification token or code is missing.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/genders",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List genders",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"1\":{\"id\":1,\"name\":\"MALE\",\"label\":\"Male\",\"title\":\"Mr.\"},\"2\":{\"id\":2,\"name\":\"FEMALE\",\"label\":\"Female\",\"title\":\"Mrs\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/genders/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get gender",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The gender's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"MALE\",\"label\":\"Male\",\"title\":\"Mr.\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/userTypes",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List user types",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"2\":{\"id\":2,\"name\":\"INDIVIDUAL\",\"label\":\"Individual\"},\"1\":{\"id\":1,\"name\":\"PROFESSIONAL\",\"label\":\"Professional\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/userTypes/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get user type",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user type's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"PROFESSIONAL\",\"label\":\"Professional\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List users",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 403,
                                    "content": "{\"success\":false,\"message\":\"Forbidden\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get user",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_KEY}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 3
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: country,userType,gender,countPostsViews,countPosts,countSavedPosts.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":3,\"name\":\"خالد الشمري\",\"username\":\"demo.founder3\",\"two_factor_enabled\":false,\"two_factor_method\":\"email\",\"updated_at\":\"2026-05-21T00:47:21.000000Z\",\"original_updated_at\":\"2026-05-21 00:47:21\",\"original_last_activity\":null,\"created_at_formatted\":\"2026-05-21 01:10\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"p_is_online\":false,\"country_flag_url\":\"http:\\/\\/127.0.0.1:8000\\/images\\/flags\\/circle\\/16\\/sa.png\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hg48va6fEPcdeDVZbk1a563"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/users",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store user",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The mobile phone number of the user (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Field to allow user to accept or not the website terms.",
                                    "required": true,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_type_id": {
                                    "name": "user_type_id",
                                    "description": "The ID of user type.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "gender_id": {
                                    "name": "gender_id",
                                    "description": "The ID of gender.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "photo_path": {
                                    "name": "photo_path",
                                    "description": "The file of user photo.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Field to hide or show the user phone number in public.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "username": {
                                    "name": "username",
                                    "description": "The user's username.",
                                    "required": false,
                                    "example": "john_doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password_confirmation": {
                                    "name": "password_confirmation",
                                    "description": "The confirmation of the user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "disable_comments": {
                                    "name": "disable_comments",
                                    "description": "Field to disable or enable comments on the user's listings.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "create_from_ip": {
                                    "name": "create_from_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Field to allow user to accept or not marketing offers sending.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "time_zone": {
                                    "name": "time_zone",
                                    "description": "The user's time zone.",
                                    "required": false,
                                    "example": "America/New_York",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "alias",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "John Doe",
                                "country_code": "US",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "password": "js!X07$z61hLA",
                                "accept_terms": true,
                                "email": "john.doe@domain.tld",
                                "language_code": "en",
                                "user_type_id": 1,
                                "gender_id": 1,
                                "phone_hidden": false,
                                "username": "john_doe",
                                "password_confirmation": "js!X07$z61hLA",
                                "disable_comments": true,
                                "create_from_ip": "127.0.0.1",
                                "accept_marketing_offers": false,
                                "time_zone": "America/New_York",
                                "captcha_key": "alias"
                            },
                            "fileParameters": {
                                "photo_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users/{id}/stats",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "User's mini stats",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 3
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer g8EaZv3hD4Vc6kd1Pbea56f"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users/{id}/photo/delete",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete user's photo",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer Ev86efPD35c6Zkaab4dh1gV"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}/photo",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update user's photo",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "photo_path": {
                                    "name": "photo_path",
                                    "description": "Must be a file. Must be at least 0 kilobytes. Must not be greater than 2500 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "latest_update_ip": "127.0.0.1"
                            },
                            "fileParameters": {
                                "photo_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hfPbZa153Dv8V4Ed6ageck6"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}/preferences",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update user's preferences",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "disable_comments": {
                                    "name": "disable_comments",
                                    "description": "Field to disable or enable comments on the user's listings.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Field to allow user to accept or not the website terms.",
                                    "required": true,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Field to allow user to accept or not marketing offers sending.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "time_zone": {
                                    "name": "time_zone",
                                    "description": "The user's time zone.",
                                    "required": false,
                                    "example": "America/New_York",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "disable_comments": true,
                                "latest_update_ip": "127.0.0.1",
                                "accept_terms": true,
                                "accept_marketing_offers": false,
                                "time_zone": "America/New_York"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 483Zbcf5ake1dP6agvDhE6V"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}/save-theme-preference",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update the user's theme preference",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "theme": {
                                    "name": "theme",
                                    "description": "The user's theme preference value.",
                                    "required": true,
                                    "example": "light, dark or system",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "theme": "light, dark or system"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update user",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The mobile phone number of the user (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "username": {
                                    "name": "username",
                                    "description": "The user's username.",
                                    "required": false,
                                    "example": "john_doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address (Required when 'auth_field' value is 'email').",
                                    "required": true,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_type_id": {
                                    "name": "user_type_id",
                                    "description": "The ID of user type.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "gender_id": {
                                    "name": "gender_id",
                                    "description": "The ID of gender.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "photo_path": {
                                    "name": "photo_path",
                                    "description": "The file of user photo.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "remove_photo": {
                                    "name": "remove_photo",
                                    "description": "Enable the user photo removal ('0' or '1'). When its value is '1' the user's photo file will be removed and the 'photo_path' column will be empty.",
                                    "required": false,
                                    "example": 0,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Field to hide or show the user phone number in public.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password_confirmation": {
                                    "name": "password_confirmation",
                                    "description": "The confirmation of the user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "disable_comments": {
                                    "name": "disable_comments",
                                    "description": "Field to disable or enable comments on the user's listings.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Field to allow user to accept or not the website terms.",
                                    "required": true,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Field to allow user to accept or not marketing offers sending.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "time_zone": {
                                    "name": "time_zone",
                                    "description": "The user's time zone.",
                                    "required": false,
                                    "example": "America/New_York",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "John Doe",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "username": "john_doe",
                                "email": "john.doe@domain.tld",
                                "country_code": "US",
                                "language_code": "en",
                                "user_type_id": 1,
                                "gender_id": 1,
                                "remove_photo": 0,
                                "phone_hidden": false,
                                "password": "js!X07$z61hLA",
                                "password_confirmation": "js!X07$z61hLA",
                                "disable_comments": true,
                                "latest_update_ip": "127.0.0.1",
                                "accept_terms": true,
                                "accept_marketing_offers": false,
                                "time_zone": "America/New_York"
                            },
                            "fileParameters": {
                                "photo_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer vaf4dcakb6EZVgD8e3hP156"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/users/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete user",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 3h1d6cvbkgDEfaaP854Z6eV"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/postTypes",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List listing types",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"1\":{\"id\":1,\"name\":\"INDIVIDUAL\",\"label\":\"Individual\"},\"2\":{\"id\":2,\"name\":\"PROFESSIONAL\",\"label\":\"Professional\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/postTypes/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get listing type",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The listing type's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"INDIVIDUAL\",\"label\":\"Individual\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/reportTypes",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List report types",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"id\":5,\"name\":\"Other\"},{\"id\":4,\"name\":\"Wrong category\"},{\"id\":3,\"name\":\"Spam\"},{\"id\":2,\"name\":\"Duplicate\"},{\"id\":1,\"name\":\"Fraud\"}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/reportTypes/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get report type",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The report type's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"Fraud\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/posts",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List listings",
                                "description": "Note: The main picture of the listings is fetched via a 'picture' attribute (added as fake column),\nthat provide default picture as image placeholder when the listing has no pictures.\nIn addition, for performance reasons, default picture is also provided when the 'pictures' table is not embed in the endpoint.\nSo you need to embed the picture table like: /api/posts?embed=pictures to retrieve right main picture data.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "op": {
                                    "name": "op",
                                    "description": "Type of listings list (optional) - Possible value: search,premium,latest,free,premiumFirst,similar.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "postId": {
                                    "name": "postId",
                                    "description": "Base Listing's ID to get similar listings (optional) - Mandatory to get similar listings (when op=similar).",
                                    "required": false,
                                    "example": null,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "distance": {
                                    "name": "distance",
                                    "description": "Distance to get similar listings (optional) - Also optional when the type of similar listings is based on the current listing's category. Mandatory when the type of similar listings is based on the current listing's location. So, its usage is limited to get similar listings (when op=similar) based on the current listing's location.",
                                    "required": false,
                                    "example": null,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "belongLoggedUser": {
                                    "name": "belongLoggedUser",
                                    "description": "Force users to be logged to get data that belongs to him. Authentication token needs to be sent in the header, and the \"op\" parameter needs to be null or unset - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pendingApproval": {
                                    "name": "pendingApproval",
                                    "description": "To list a user's listings in pending approval. Authentication token needs to be sent in the header, and the \"op\" parameter needs to be null or unset - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "archived": {
                                    "name": "archived",
                                    "description": "To list a user's archived listings. Authentication token needs to be sent in the header, and the \"op\" parameter need be null or unset - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user,category,parent,postType,city,currency,savedByLoggedUser,pictures,payment,package.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "op": null,
                                "postId": null,
                                "distance": null,
                                "belongLoggedUser": false,
                                "pendingApproval": true,
                                "archived": true,
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No listings found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/posts/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get listing",
                                "description": "Note: The main picture of the listing is fetched via a 'picture' attribute (added as fake column),\nthat provide default picture as image placeholder when the listing has no pictures.\nIn addition, for performance reasons, default picture is also provided when the 'pictures' table is not embed in the endpoint.\nSo you need to embed the picture table like: /api/posts/1?embed=pictures to retrieve right main picture data.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The post/listing's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 2
                            },
                            "queryParameters": {
                                "unactivatedIncluded": {
                                    "name": "unactivatedIncluded",
                                    "description": "Include or not unactivated entries - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "belongLoggedUser": {
                                    "name": "belongLoggedUser",
                                    "description": "Force users to be logged to get data that belongs to him - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "noCache": {
                                    "name": "noCache",
                                    "description": "Disable the cache for this request - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user,category,parent,postType,city,currency,savedByLoggedUser,pictures,payment,package,fieldsValues.",
                                    "required": false,
                                    "example": "user,postType",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "detailed": {
                                    "name": "detailed",
                                    "description": "Allow getting the listing's details with all its relationships (No need to set the 'embed' parameter).",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "unactivatedIncluded": true,
                                "belongLoggedUser": false,
                                "noCache": false,
                                "embed": "user,postType",
                                "detailed": false
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Listing not found\",\"result\":null,\"error\":\"Listing not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/posts",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store listing",
                                "description": "For both types of listing's creation (Single step or Multi steps).\nNote: The field 'admin_code' is only available when the listing's country's 'admin_type' column is set to 1 or 2.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "category_id": {
                                    "name": "category_id",
                                    "description": "The category's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "The listing's title.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "The listing's description.",
                                    "required": true,
                                    "example": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "contact_name": {
                                    "name": "contact_name",
                                    "description": "The listing's author name.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The listing's author mobile number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "city_id": {
                                    "name": "city_id",
                                    "description": "The city's ID.",
                                    "required": true,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Accept the website terms and conditions.",
                                    "required": true,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pictures": {
                                    "name": "pictures",
                                    "description": "The listing's pictures.",
                                    "required": true,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The listing's author email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_type_id": {
                                    "name": "post_type_id",
                                    "description": "The listing type's ID.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin_code": {
                                    "name": "admin_code",
                                    "description": "The administrative division's code.",
                                    "required": false,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "price": {
                                    "name": "price",
                                    "description": "The price.",
                                    "required": true,
                                    "example": 5000,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "negotiable": {
                                    "name": "negotiable",
                                    "description": "Negotiable price or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Mobile phone number will be hidden in public or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "create_from_ip": {
                                    "name": "create_from_ip",
                                    "description": "The listing's author IP address.",
                                    "required": false,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Accept to receive marketing offers or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "is_permanent": {
                                    "name": "is_permanent",
                                    "description": "Is it permanent post or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tags": {
                                    "name": "tags",
                                    "description": "Comma-separated tags list.",
                                    "required": false,
                                    "example": "car,automotive,tesla,cyber,truck",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "package_id": {
                                    "name": "package_id",
                                    "description": "The package's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payment_method_id": {
                                    "name": "payment_method_id",
                                    "description": "The payment method's ID (required when the selected package's price is > 0).",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "quisquam",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "category_id": 1,
                                "title": "John Doe",
                                "description": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                "contact_name": "John Doe",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "city_id": 5,
                                "accept_terms": false,
                                "email": "john.doe@domain.tld",
                                "country_code": "US",
                                "post_type_id": 1,
                                "admin_code": "0",
                                "price": 5000,
                                "negotiable": false,
                                "phone_hidden": false,
                                "create_from_ip": "127.0.0.1",
                                "accept_marketing_offers": false,
                                "is_permanent": false,
                                "tags": "car,automotive,tesla,cyber,truck",
                                "package_id": 2,
                                "payment_method_id": 5,
                                "captcha_key": "quisquam"
                            },
                            "fileParameters": {
                                "pictures": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer DP431h6Z6V5fbedacgav8kE"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/posts/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update listing",
                                "description": "Note: The fields 'pictures', 'package_id' and 'payment_method_id' are only available with the single step listing edition.\nThe field 'admin_code' is only available when the listing's country's 'admin_type' column is set to 1 or 2.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The post/listing's ID.",
                                    "required": true,
                                    "example": 14,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 14
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "category_id": {
                                    "name": "category_id",
                                    "description": "The category's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "The listing's title.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "The listing's description.",
                                    "required": true,
                                    "example": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "contact_name": {
                                    "name": "contact_name",
                                    "description": "The listing's author name.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The listing's author mobile number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "city_id": {
                                    "name": "city_id",
                                    "description": "The city's ID.",
                                    "required": true,
                                    "example": 20,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Accept the website terms and conditions.",
                                    "required": true,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The listing's author email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_type_id": {
                                    "name": "post_type_id",
                                    "description": "The listing type's ID.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin_code": {
                                    "name": "admin_code",
                                    "description": "The administrative division's code.",
                                    "required": false,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "price": {
                                    "name": "price",
                                    "description": "The price.",
                                    "required": true,
                                    "example": 5000,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "negotiable": {
                                    "name": "negotiable",
                                    "description": "Negotiable price or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Mobile phone number will be hidden in public or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The listing's author IP address.",
                                    "required": false,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Accept to receive marketing offers or no.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "is_permanent": {
                                    "name": "is_permanent",
                                    "description": "Is it permanent post or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tags": {
                                    "name": "tags",
                                    "description": "Comma-separated tags list.",
                                    "required": false,
                                    "example": "car,automotive,tesla,cyber,truck",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pictures": {
                                    "name": "pictures",
                                    "description": "The listing's pictures.",
                                    "required": true,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "package_id": {
                                    "name": "package_id",
                                    "description": "The package's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payment_method_id": {
                                    "name": "payment_method_id",
                                    "description": "The payment method's ID (Required when the selected package's price is > 0).",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "category_id": 1,
                                "title": "John Doe",
                                "description": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                "contact_name": "John Doe",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "city_id": 20,
                                "accept_terms": false,
                                "email": "john.doe@domain.tld",
                                "country_code": "US",
                                "post_type_id": 1,
                                "admin_code": "0",
                                "price": 5000,
                                "negotiable": false,
                                "phone_hidden": false,
                                "latest_update_ip": "127.0.0.1",
                                "accept_marketing_offers": true,
                                "is_permanent": false,
                                "tags": "car,automotive,tesla,cyber,truck",
                                "package_id": 2,
                                "payment_method_id": 5
                            },
                            "fileParameters": {
                                "pictures": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 6c14hZfDdgP58va3Ebak6Ve"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/posts/{ids}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete listing(s)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of listing(s).",
                                    "required": true,
                                    "example": "111111,222222,333333",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "111111,222222,333333"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer f1V5ZaPba4h6D683kEcegdv"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/categories",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List categories",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "parentId": {
                                    "name": "parentId",
                                    "description": "The ID of the parent category of the sub categories to retrieve.",
                                    "required": false,
                                    "example": 0,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "nestedIncluded": {
                                    "name": "nestedIncluded",
                                    "description": "If parent ID is not provided, are nested entries will be included? - Possible values: 0,1.",
                                    "required": false,
                                    "example": 0,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: parent,children.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "parentId": 0,
                                "nestedIncluded": 0,
                                "embed": null,
                                "sort": "-lft",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"id\":122,\"parent_id\":null,\"name\":\"Local Events\",\"slug\":\"local-events\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-regular fa-calendar-days\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":144,\"rgt\":158,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\",\"parentClosure\":null},{\"id\":114,\"parent_id\":null,\"name\":\"Learning\",\"slug\":\"learning\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-graduation-cap\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":134,\"rgt\":143,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\",\"parentClosure\":null}],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=6\",\"prev\":null,\"next\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":6,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=5\",\"label\":\"5\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=6\",\"label\":\"6\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories\",\"per_page\":2,\"to\":2,\"total\":12}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/categories/{slugOrId}",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get category",
                                "description": "Get category by its unique slug or ID.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "slugOrId": {
                                    "name": "slugOrId",
                                    "description": "The slug or ID of the category.",
                                    "required": true,
                                    "example": "cars",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "slugOrId": "cars"
                            },
                            "queryParameters": {
                                "parentCatSlug": {
                                    "name": "parentCatSlug",
                                    "description": "The slug of the parent category to retrieve used when category's slug provided instead of ID.",
                                    "required": false,
                                    "example": "automobiles",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "parentCatSlug": "automobiles"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":2,\"parent_id\":1,\"name\":\"Cars\",\"slug\":\"cars\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"bi bi-folder-fill\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":2,\"rgt\":3,\"depth\":1,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/categories/{id}/fields",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List category's fields",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the category.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The unique ID of the post.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "language_code": "en",
                                "post_id": 1
                            },
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":[{\"id\":1,\"belongs_to\":\"post\",\"name\":\"Car Brand\",\"type\":\"select\",\"max\":null,\"default_value\":\"\",\"required\":1,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":1,\"field_id\":1,\"value\":\"Toyota\",\"parent_id\":null,\"lft\":1,\"rgt\":2,\"depth\":null},{\"id\":2,\"field_id\":1,\"value\":\"BMW\",\"parent_id\":null,\"lft\":3,\"rgt\":4,\"depth\":null},{\"id\":3,\"field_id\":1,\"value\":\"Mercedes-Benz\",\"parent_id\":null,\"lft\":5,\"rgt\":6,\"depth\":null},{\"id\":4,\"field_id\":1,\"value\":\"Chevrolet\",\"parent_id\":null,\"lft\":7,\"rgt\":8,\"depth\":null},{\"id\":5,\"field_id\":1,\"value\":\"Cadillac\",\"parent_id\":null,\"lft\":9,\"rgt\":10,\"depth\":null},{\"id\":6,\"field_id\":1,\"value\":\"Buick\",\"parent_id\":null,\"lft\":11,\"rgt\":12,\"depth\":null},{\"id\":7,\"field_id\":1,\"value\":\"GMC\",\"parent_id\":null,\"lft\":13,\"rgt\":14,\"depth\":null},{\"id\":8,\"field_id\":1,\"value\":\"Ford\",\"parent_id\":null,\"lft\":15,\"rgt\":16,\"depth\":null},{\"id\":9,\"field_id\":1,\"value\":\"Chrysler\",\"parent_id\":null,\"lft\":17,\"rgt\":18,\"depth\":null},{\"id\":10,\"field_id\":1,\"value\":\"Dodge\",\"parent_id\":null,\"lft\":19,\"rgt\":20,\"depth\":null},{\"id\":11,\"field_id\":1,\"value\":\"Jeep\",\"parent_id\":null,\"lft\":21,\"rgt\":22,\"depth\":null},{\"id\":12,\"field_id\":1,\"value\":\"Tesla\",\"parent_id\":null,\"lft\":23,\"rgt\":24,\"depth\":null},{\"id\":13,\"field_id\":1,\"value\":\"Lexus\",\"parent_id\":null,\"lft\":25,\"rgt\":26,\"depth\":null},{\"id\":14,\"field_id\":1,\"value\":\"Suzuki\",\"parent_id\":null,\"lft\":27,\"rgt\":28,\"depth\":null},{\"id\":15,\"field_id\":1,\"value\":\"Mazda\",\"parent_id\":null,\"lft\":29,\"rgt\":30,\"depth\":null},{\"id\":16,\"field_id\":1,\"value\":\"Honda\",\"parent_id\":null,\"lft\":31,\"rgt\":32,\"depth\":null},{\"id\":17,\"field_id\":1,\"value\":\"Acura\",\"parent_id\":null,\"lft\":33,\"rgt\":34,\"depth\":null},{\"id\":18,\"field_id\":1,\"value\":\"Mitsubishi\",\"parent_id\":null,\"lft\":35,\"rgt\":36,\"depth\":null},{\"id\":19,\"field_id\":1,\"value\":\"Nissan\",\"parent_id\":null,\"lft\":37,\"rgt\":38,\"depth\":null},{\"id\":20,\"field_id\":1,\"value\":\"Infiniti\",\"parent_id\":null,\"lft\":39,\"rgt\":40,\"depth\":null},{\"id\":21,\"field_id\":1,\"value\":\"Audi\",\"parent_id\":null,\"lft\":41,\"rgt\":42,\"depth\":null},{\"id\":22,\"field_id\":1,\"value\":\"Volkswagen\",\"parent_id\":null,\"lft\":43,\"rgt\":44,\"depth\":null},{\"id\":23,\"field_id\":1,\"value\":\"Porsche\",\"parent_id\":null,\"lft\":45,\"rgt\":46,\"depth\":null},{\"id\":24,\"field_id\":1,\"value\":\"Opel\",\"parent_id\":null,\"lft\":47,\"rgt\":48,\"depth\":null},{\"id\":25,\"field_id\":1,\"value\":\"Jaguar\",\"parent_id\":null,\"lft\":49,\"rgt\":50,\"depth\":null},{\"id\":26,\"field_id\":1,\"value\":\"Land Rover\",\"parent_id\":null,\"lft\":51,\"rgt\":52,\"depth\":null},{\"id\":27,\"field_id\":1,\"value\":\"MINI\",\"parent_id\":null,\"lft\":53,\"rgt\":54,\"depth\":null},{\"id\":28,\"field_id\":1,\"value\":\"Aston Martin\",\"parent_id\":null,\"lft\":55,\"rgt\":56,\"depth\":null},{\"id\":29,\"field_id\":1,\"value\":\"Bentley\",\"parent_id\":null,\"lft\":57,\"rgt\":58,\"depth\":null},{\"id\":30,\"field_id\":1,\"value\":\"Rolls-Royce\",\"parent_id\":null,\"lft\":59,\"rgt\":60,\"depth\":null},{\"id\":31,\"field_id\":1,\"value\":\"McLaren\",\"parent_id\":null,\"lft\":61,\"rgt\":62,\"depth\":null},{\"id\":32,\"field_id\":1,\"value\":\"Fiat\",\"parent_id\":null,\"lft\":63,\"rgt\":64,\"depth\":null},{\"id\":33,\"field_id\":1,\"value\":\"Alfa Romeo\",\"parent_id\":null,\"lft\":65,\"rgt\":66,\"depth\":null},{\"id\":34,\"field_id\":1,\"value\":\"Maserati\",\"parent_id\":null,\"lft\":67,\"rgt\":68,\"depth\":null},{\"id\":35,\"field_id\":1,\"value\":\"Ferrari\",\"parent_id\":null,\"lft\":69,\"rgt\":70,\"depth\":null},{\"id\":36,\"field_id\":1,\"value\":\"Lamborghini\",\"parent_id\":null,\"lft\":71,\"rgt\":72,\"depth\":null},{\"id\":37,\"field_id\":1,\"value\":\"Pagani\",\"parent_id\":null,\"lft\":73,\"rgt\":74,\"depth\":null},{\"id\":38,\"field_id\":1,\"value\":\"Lancia\",\"parent_id\":null,\"lft\":75,\"rgt\":76,\"depth\":null},{\"id\":39,\"field_id\":1,\"value\":\"Renault\",\"parent_id\":null,\"lft\":77,\"rgt\":78,\"depth\":null},{\"id\":40,\"field_id\":1,\"value\":\"Peugeot\",\"parent_id\":null,\"lft\":79,\"rgt\":80,\"depth\":null},{\"id\":41,\"field_id\":1,\"value\":\"Citroen\",\"parent_id\":null,\"lft\":81,\"rgt\":82,\"depth\":null},{\"id\":42,\"field_id\":1,\"value\":\"Bugatti\",\"parent_id\":null,\"lft\":83,\"rgt\":84,\"depth\":null},{\"id\":43,\"field_id\":1,\"value\":\"Tata\",\"parent_id\":null,\"lft\":85,\"rgt\":86,\"depth\":null},{\"id\":44,\"field_id\":1,\"value\":\"Hyundai\",\"parent_id\":null,\"lft\":87,\"rgt\":88,\"depth\":null},{\"id\":45,\"field_id\":1,\"value\":\"Kia\",\"parent_id\":null,\"lft\":89,\"rgt\":90,\"depth\":null},{\"id\":46,\"field_id\":1,\"value\":\"Daewoo\",\"parent_id\":null,\"lft\":91,\"rgt\":92,\"depth\":null},{\"id\":47,\"field_id\":1,\"value\":\"Volvo\",\"parent_id\":null,\"lft\":93,\"rgt\":94,\"depth\":null},{\"id\":48,\"field_id\":1,\"value\":\"Saab\",\"parent_id\":null,\"lft\":95,\"rgt\":96,\"depth\":null},{\"id\":49,\"field_id\":1,\"value\":\"Lada\",\"parent_id\":null,\"lft\":97,\"rgt\":98,\"depth\":null},{\"id\":50,\"field_id\":1,\"value\":\"Volga\",\"parent_id\":null,\"lft\":99,\"rgt\":100,\"depth\":null},{\"id\":51,\"field_id\":1,\"value\":\"Zil\",\"parent_id\":null,\"lft\":101,\"rgt\":102,\"depth\":null},{\"id\":52,\"field_id\":1,\"value\":\"GAZ\",\"parent_id\":null,\"lft\":103,\"rgt\":104,\"depth\":null},{\"id\":53,\"field_id\":1,\"value\":\"Geely\",\"parent_id\":null,\"lft\":105,\"rgt\":106,\"depth\":null},{\"id\":54,\"field_id\":1,\"value\":\"Chery\",\"parent_id\":null,\"lft\":107,\"rgt\":108,\"depth\":null},{\"id\":55,\"field_id\":1,\"value\":\"Hongqi\",\"parent_id\":null,\"lft\":109,\"rgt\":110,\"depth\":null},{\"id\":56,\"field_id\":1,\"value\":\"Dacia\",\"parent_id\":null,\"lft\":111,\"rgt\":112,\"depth\":null},{\"id\":57,\"field_id\":1,\"value\":\"Daihatsu\",\"parent_id\":null,\"lft\":113,\"rgt\":114,\"depth\":null},{\"id\":58,\"field_id\":1,\"value\":\"FIAT\",\"parent_id\":null,\"lft\":115,\"rgt\":116,\"depth\":null},{\"id\":59,\"field_id\":1,\"value\":\"Genesis\",\"parent_id\":null,\"lft\":117,\"rgt\":118,\"depth\":null},{\"id\":60,\"field_id\":1,\"value\":\"Isuzu\",\"parent_id\":null,\"lft\":119,\"rgt\":120,\"depth\":null},{\"id\":61,\"field_id\":1,\"value\":\"Lincoln\",\"parent_id\":null,\"lft\":121,\"rgt\":122,\"depth\":null},{\"id\":62,\"field_id\":1,\"value\":\"Lotus\",\"parent_id\":null,\"lft\":123,\"rgt\":124,\"depth\":null},{\"id\":63,\"field_id\":1,\"value\":\"Ram\",\"parent_id\":null,\"lft\":125,\"rgt\":126,\"depth\":null},{\"id\":64,\"field_id\":1,\"value\":\"Ram\",\"parent_id\":null,\"lft\":127,\"rgt\":128,\"depth\":null},{\"id\":65,\"field_id\":1,\"value\":\"SEAT\",\"parent_id\":null,\"lft\":129,\"rgt\":130,\"depth\":null},{\"id\":66,\"field_id\":1,\"value\":\"Skoda\",\"parent_id\":null,\"lft\":131,\"rgt\":132,\"depth\":null},{\"id\":67,\"field_id\":1,\"value\":\"Smart\",\"parent_id\":null,\"lft\":133,\"rgt\":134,\"depth\":null},{\"id\":68,\"field_id\":1,\"value\":\"Subaru\",\"parent_id\":null,\"lft\":135,\"rgt\":136,\"depth\":null},{\"id\":69,\"field_id\":1,\"value\":\"Other\",\"parent_id\":null,\"lft\":137,\"rgt\":138,\"depth\":null}]},{\"id\":2,\"belongs_to\":\"post\",\"name\":\"Car Model\",\"type\":\"text\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":0,\"help\":\"\",\"active\":1,\"options\":[]},{\"id\":3,\"belongs_to\":\"post\",\"name\":\"Year of registration\",\"type\":\"number\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":0,\"help\":\"\",\"active\":1,\"options\":[]},{\"id\":5,\"belongs_to\":\"post\",\"name\":\"Fuel Type\",\"type\":\"select\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":70,\"field_id\":5,\"value\":\"Essence\",\"parent_id\":null,\"lft\":139,\"rgt\":140,\"depth\":null},{\"id\":71,\"field_id\":5,\"value\":\"Diesel\",\"parent_id\":null,\"lft\":141,\"rgt\":142,\"depth\":null}]},{\"id\":7,\"belongs_to\":\"post\",\"name\":\"Transmission\",\"type\":\"radio\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":76,\"field_id\":7,\"value\":\"Automatic\",\"parent_id\":null,\"lft\":151,\"rgt\":152,\"depth\":null},{\"id\":77,\"field_id\":7,\"value\":\"Manual\",\"parent_id\":null,\"lft\":153,\"rgt\":154,\"depth\":null}]},{\"id\":8,\"belongs_to\":\"post\",\"name\":\"Condition\",\"type\":\"select\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":78,\"field_id\":8,\"value\":\"New\",\"parent_id\":null,\"lft\":155,\"rgt\":156,\"depth\":null},{\"id\":79,\"field_id\":8,\"value\":\"Used\",\"parent_id\":null,\"lft\":157,\"rgt\":158,\"depth\":null}]},{\"id\":4,\"belongs_to\":\"post\",\"name\":\"Mileage\",\"type\":\"text\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":0,\"help\":\"\",\"active\":1,\"options\":[]},{\"id\":6,\"belongs_to\":\"post\",\"name\":\"Features\",\"type\":\"checkbox_multiple\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":72,\"field_id\":6,\"value\":\"Air Conditioner\",\"parent_id\":null,\"lft\":143,\"rgt\":144,\"depth\":null},{\"id\":73,\"field_id\":6,\"value\":\"GPS\",\"parent_id\":null,\"lft\":145,\"rgt\":146,\"depth\":null},{\"id\":74,\"field_id\":6,\"value\":\"Security System\",\"parent_id\":null,\"lft\":147,\"rgt\":148,\"depth\":null},{\"id\":75,\"field_id\":6,\"value\":\"Spare Tire\",\"parent_id\":null,\"lft\":149,\"rgt\":150,\"depth\":null}]}],\"extra\":{\"errors\":[],\"oldInput\":null}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/categories/{id}/fields",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List category's fields",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the category.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The unique ID of the post.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "language_code": "en",
                                "post_id": 1
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List countries",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Language": "en",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the country relationships for Eager Loading - Possible values: currency,continent.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "includeNonActive": {
                                    "name": "includeNonActive",
                                    "description": "Allow including the non-activated countries in the list.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "iti": {
                                    "name": "iti",
                                    "description": "Allow getting option data for the phone number input. Possible value: 'i18n' or 'onlyCountries'.",
                                    "required": false,
                                    "example": "'onlyCountries'",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The code of the current country (Only when the 'iti' parameter is filled to true).",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "includeNonActive": false,
                                "iti": "'onlyCountries'",
                                "countryCode": null,
                                "sort": "-name",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 400,
                                    "content": "{\"success\":false,\"message\":\"No data available. Only \\\"i18n\\\" and \\\"onlyCountries\\\" are accepted for the \\\"iti\\\" parameter.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{code}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get country",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The country's ISO 3166-1 code.",
                                    "required": true,
                                    "example": "DE",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "DE"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the country relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": "currency",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": "currency"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Country not found\",\"result\":null,\"error\":\"Country not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{countryCode}/subAdmins1",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List admin. divisions (1)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The country code of the country of the cities to retrieve.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "countryCode": "US"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (1) relationships for Eager Loading - Possible values: country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "q": {
                                    "name": "q",
                                    "description": "Get the administrative division list related to the entered keyword.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "q": null,
                                "sort": "-name",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No administrative divisions found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{countryCode}/subAdmins2",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List admin. divisions (2)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The country code of the country of the cities to retrieve.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "countryCode": "US"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (2) relationships for Eager Loading - Possible values: country,subAdmin1.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin1Code": {
                                    "name": "admin1Code",
                                    "description": "Get the administrative division 2 list related to the administrative division 1 code.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "q": {
                                    "name": "q",
                                    "description": "Get the administrative division 2 list related to the entered keyword.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "admin1Code": null,
                                "q": null,
                                "sort": "-name",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No administrative divisions found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{countryCode}/cities",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List cities",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The country code of the country of the cities to retrieve.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "countryCode": "US"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the city relationships for Eager Loading - Possible values: country,subAdmin1,subAdmin2.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin1Code": {
                                    "name": "admin1Code",
                                    "description": "Get the city list related to the administrative division 1 code.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin2Code": {
                                    "name": "admin2Code",
                                    "description": "Get the city list related to the administrative division 2 code.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "q": {
                                    "name": "q",
                                    "description": "Get the city list related to the entered keyword.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "autocomplete": {
                                    "name": "autocomplete",
                                    "description": "Allow getting the city list in the autocomplete data format. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "string|array The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name,population.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "admin1Code": null,
                                "admin2Code": null,
                                "q": null,
                                "autocomplete": false,
                                "sort": "-name",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No cities found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/subAdmins1/{code}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get admin. division (1)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The administrative division (1)'s code.",
                                    "required": true,
                                    "example": "CH.VD",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "CH.VD"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (1) relationships for Eager Loading - Possible values: country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No administrative divisions found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD\",\"per_page\":39,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/subAdmins2/{code}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get admin. division (2)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The administrative division (2)'s code.",
                                    "required": true,
                                    "example": "CH.VD.2225",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "CH.VD.2225"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (2) relationships for Eager Loading - Possible values: country,subAdmin1.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Administrative division not found\",\"result\":null,\"error\":\"Administrative division not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/cities/{id}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get city",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The city's ID.",
                                    "required": true,
                                    "example": 12544,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 12544
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the city relationships for Eager Loading - Possible values: country,subAdmin1,subAdmin2.",
                                    "required": false,
                                    "example": "country",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": "country"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"City not found\",\"result\":null,\"error\":\"City not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/savedPosts",
                            "metadata": {
                                "groupName": "Saved Posts",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store/Delete saved listing",
                                "description": "Save a post/listing in favorite, or remove it from favorite.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post/listing's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "post_id": 2
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hdP6k3gaZ16e5afEbvDV8c4"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/savedPosts",
                            "metadata": {
                                "groupName": "Saved Posts",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List saved listings",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: post,city,pictures,user.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "country_code": "US",
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 6h63PDefgdak5Ev1cZbV8a4"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/savedPosts/{ids}",
                            "metadata": {
                                "groupName": "Saved Posts",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete saved listing(s)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of saved post/listing(s).",
                                    "required": true,
                                    "example": "1,2,3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "1,2,3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hkcP6Ee6aba3fVg58DZ4vd1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/savedSearches",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store/Delete saved search",
                                "description": "Save a search result in favorite, or remove it from favorite.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "url": {
                                    "name": "url",
                                    "description": "Search URL to save.",
                                    "required": true,
                                    "example": "https://demo.Ecosystem.com/search/?q=test&l=",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "count_posts": {
                                    "name": "count_posts",
                                    "description": "The number of posts found for the URL.",
                                    "required": true,
                                    "example": 29,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "url": "https://demo.Ecosystem.com/search/?q=test&l=",
                                "count_posts": 29
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer dvfEP56DeV8Zkc63gha1ba4"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/savedSearches",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List saved searches",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: user,country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer VPg36a4kf5vEZ8he6Dacbd1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/savedSearches/{id}",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get saved search",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the saved search.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: user,country,pictures,postType,category,city,country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer bh8ce15kgfPaD6634EvVdZa"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/savedSearches/{ids}",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete saved search(es)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of saved search(es).",
                                    "required": true,
                                    "example": "1,2,3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "1,2,3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer afe531v6cg6adVbEZPDkh48"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/pictures/{id}",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get picture",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The picture's ID.",
                                    "required": true,
                                    "example": 298,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 298
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The list of the picture relationships separated by comma for Eager Loading.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Picture not found\",\"result\":null,\"error\":\"Picture not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/pictures",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store picture",
                                "description": "Note: This endpoint is only available for the multi steps post edition.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "count_packages": {
                                    "name": "count_packages",
                                    "description": "The number of available packages.",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "count_payment_methods": {
                                    "name": "count_payment_methods",
                                    "description": "The number of available payment methods.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pictures": {
                                    "name": "pictures",
                                    "description": "The files to upload.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "US",
                                "count_packages": 3,
                                "count_payment_methods": 1,
                                "post_id": 2
                            },
                            "fileParameters": {
                                "pictures": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hE46e68ck3DZva5dbfPVa1g"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/pictures/{id}",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete picture",
                                "description": "Note: This endpoint is only available for the multi steps form edition.\nFor newly created listings, the post's ID needs to be added in the request input with the key 'new_post_id'.\nThe 'new_post_id' and 'new_post_tmp_token' fields need to be removed or unset during the listing edition steps.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The picture's ID.",
                                    "required": true,
                                    "example": 999999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "post_id": 2
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer ZaEVDfcdP6v6h3481b5gkae"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/pictures/reorder",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Reorder pictures",
                                "description": "Note: This endpoint is only available for the multi steps form edition.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "X-Action": "bulk",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "body": {
                                    "name": "body",
                                    "description": "Encoded json of the new pictures' positions array [['id' => 2, 'position' => 1], ['id' => 1, 'position' => 2], ...]",
                                    "required": true,
                                    "example": "saepe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "post_id": 2,
                                "body": "saepe"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 8ga43EkhbaP5c6DdeZV61vf"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/posts/{postId}/pictures",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List pictures",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "postId": {
                                    "name": "postId",
                                    "description": "",
                                    "required": true,
                                    "example": 346316,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "postId": 346316
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The list of the picture relationships separated by comma for Eager Loading. Possible values: post.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "postId": {
                                    "name": "postId",
                                    "description": "List of pictures related to a listing (using the listing ID).",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest": {
                                    "name": "latest",
                                    "description": "Get only the first picture after ordering (as object instead of collection). Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: position, created_at.",
                                    "required": false,
                                    "example": "-position",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "postId": 1,
                                "latest": false,
                                "sort": "-position",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No pictures found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures\",\"per_page\":10,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/packages/promotion",
                            "metadata": {
                                "groupName": "Packages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List packages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the package relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "-lft"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No packages found\",\"result\":{\"data\":[]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/packages/subscription",
                            "metadata": {
                                "groupName": "Packages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List packages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the package relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "-lft"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No packages found\",\"result\":{\"data\":[]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/packages/{id}",
                            "metadata": {
                                "groupName": "Packages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get package",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The package's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 2
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the package relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": "currency",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": "currency"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Package not found\",\"result\":null,\"error\":\"Package not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/paymentMethods",
                            "metadata": {
                                "groupName": "Payment Methods",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payment methods",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "Country code. Select only the payment methods related to a country.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "countryCode": "US",
                                "sort": "-lft"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No payment methods found\",\"result\":{\"data\":[]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/paymentMethods/{id}",
                            "metadata": {
                                "groupName": "Payment Methods",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get payment method",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "Can be the ID (int) or name (string) of the payment method.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Payment method not found\",\"result\":null,\"error\":\"Payment method not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/promotion",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payments",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "valid": {
                                    "name": "valid",
                                    "description": "Allow getting the valid payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "active": {
                                    "name": "active",
                                    "description": "Allow getting the active payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "valid": false,
                                "active": false,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer EDfd3aPhZ4b5aek8cVv66g1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/subscription",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payments",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "valid": {
                                    "name": "valid",
                                    "description": "Allow getting the valid payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "active": {
                                    "name": "active",
                                    "description": "Allow getting the active payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "valid": false,
                                "active": false,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer e4D61k3VdEPh6va5fgZabc8"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/subscription/users/{userId}/payments",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payments",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": 1
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "valid": {
                                    "name": "valid",
                                    "description": "Allow getting the valid payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "active": {
                                    "name": "active",
                                    "description": "Allow getting the active payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "valid": false,
                                "active": false,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 1abhD5ZVafg3cE86ekv64dP"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/{id}",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get payment",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The payment's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 2
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer fP6a8bgd3Zk1av5DVche4E6"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/payments",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store payment",
                                "description": "Note: This endpoint is only available for the multi steps form edition.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "package": {
                                    "name": "package",
                                    "description": "Selected package ID.",
                                    "required": false,
                                    "example": 8,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "package": 8
                            },
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payable_id": {
                                    "name": "payable_id",
                                    "description": "The payable's ID (ID of the listing or user).",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payable_type": {
                                    "name": "payable_type",
                                    "description": "The payable model's name - Possible values: Post,User.",
                                    "required": true,
                                    "example": "Post",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "package_id": {
                                    "name": "package_id",
                                    "description": "The package's ID (Auto filled when the query parameter 'package' is set).",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payment_method_id": {
                                    "name": "payment_method_id",
                                    "description": "The payment method's ID (required when the selected package's price is > 0).",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "US",
                                "payable_id": 2,
                                "payable_type": "Post",
                                "package_id": 1,
                                "payment_method_id": 5
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer bZaPda6h3ecgV5E1f6k8D4v"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/threads",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store thread",
                                "description": "Start a conversation. Creation of a new thread.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "The thread's creator name.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The thread's creator email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The thread's creator mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "iure",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "body": {
                                    "name": "body",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "Modi temporibus voluptas expedita voluptatibus voluptas veniam.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The related post ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "file_path": {
                                    "name": "file_path",
                                    "description": "The thread attached file.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "necessitatibus",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "John Doe",
                                "auth_field": "email",
                                "email": "john.doe@domain.tld",
                                "phone": "iure",
                                "phone_country": null,
                                "body": "Modi temporibus voluptas expedita voluptatibus voluptas veniam.",
                                "post_id": 2,
                                "captcha_key": "necessitatibus"
                            },
                            "fileParameters": {
                                "file_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List threads",
                                "description": "Get all logged user's threads.\nFilters:\n- unread: Get the logged user's unread threads\n- started: Get the logged user's started threads\n- important: Get the logged user's make as important threads",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "filter": {
                                    "name": "filter",
                                    "description": "Filter for the list - Possible value: unread, started or important.",
                                    "required": false,
                                    "example": "unread",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: post.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "filter": "unread",
                                "embed": null,
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer abPED38f6vZh4a65Vke1dcg"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads/{id}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get thread",
                                "description": "Get a thread (owned by the logged user) details",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 8,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 8
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user,post,messages,participants.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer ab3VfE8v6e1cP5k4Dg6ahZd"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/threads/{id}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update thread",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 111111,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 111111
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "body": {
                                    "name": "body",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "Modi temporibus voluptas expedita voluptatibus voluptas veniam.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "file_path": {
                                    "name": "file_path",
                                    "description": "The thread attached file.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "body": "Modi temporibus voluptas expedita voluptatibus voluptas veniam."
                            },
                            "fileParameters": {
                                "file_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer P6h3b45aVvk61cfDaZ8dEge"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/threads/{ids}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete thread(s)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of thread(s).",
                                    "required": true,
                                    "example": "111111,222222,333333",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "111111,222222,333333"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer Dc61fdEav5b8P3V4g6kaheZ"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/threads/bulkUpdate/{ids?}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Bulk updates",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of thread(s)..",
                                    "required": true,
                                    "example": "111111,222222,333333",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "111111,222222,333333"
                            },
                            "queryParameters": {
                                "type": {
                                    "name": "type",
                                    "description": "The type of action to execute (markAsRead, markAsUnread, markAsImportant, markAsNotImportant or markAllAsRead).",
                                    "required": true,
                                    "example": "animi",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "type": "animi"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer k68vVZb4PDE356a1ghadefc"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads/{threadId}/messages",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List messages",
                                "description": "Get all thread's messages",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "threadId": {
                                    "name": "threadId",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 293,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "threadId": 293
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer dh518g6Pv3cVaZeak4ED6fb"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads/{threadId}/messages/{id}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get message",
                                "description": "Get a thread's message (owned by the logged user) details",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "threadId": {
                                    "name": "threadId",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 293,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "id": {
                                    "name": "id",
                                    "description": "The thread's message's ID.",
                                    "required": true,
                                    "example": 3545,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "threadId": 293,
                                "id": 3545
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: thread,user.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer f8k6VaZgEaPc6d35b4vheD1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/pages",
                            "metadata": {
                                "groupName": "Pages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List pages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "excludedFromFooter": {
                                    "name": "excludedFromFooter",
                                    "description": "Select or unselect pages that can list in footer.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft, created_at.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "excludedFromFooter": false,
                                "sort": "-lft",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"id\":4,\"parent_id\":null,\"type\":\"standard\",\"name\":\"FAQ\",\"slug\":\"faq\",\"image_path\":null,\"title\":\"Frequently Asked Questions\",\"content\":\"<p><b>How do I place an ad?<\\/b><\\/p><p>It's very easy to place an ad: click on the button \\\"Post free Ads\\\" above right.<\\/p><p><b>What does it cost to advertise?<\\/b><\\/p><p>The publication is 100% free throughout the website.<\\/p><p><b>If I post an listing, will I also get more spam e-mails?<\\/b><\\/p><p>Absolutely not because your email address is not visible on the website.<\\/p><p><b>How long will my listing remain on the website?<\\/b><\\/p><p>In general, an listing is automatically deactivated from the website after 3 months. You will receive an email a week before D-Day and another on the day of deactivation. You have the ability to put them online in the following month by logging into your account on the site. After this delay, your listing will be automatically removed permanently from the website.<\\/p><p><b>I sold my item. How do I delete my ad?<\\/b><\\/p><p>Once your product is sold or leased, log in to your account to remove your listing.<\\/p>\",\"external_link\":null,\"name_color\":null,\"title_color\":null,\"target_blank\":0,\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"excluded_from_footer\":0,\"active\":1,\"lft\":2,\"rgt\":3,\"depth\":1,\"image_url\":null},{\"id\":3,\"parent_id\":null,\"type\":\"standard\",\"name\":\"Anti-Scam\",\"slug\":\"anti-scam\",\"image_path\":null,\"title\":\"Anti-Scam\",\"content\":\"<p><b>Protect yourself against Internet fraud!<\\/b><\\/p><p>The vast majority of listings are posted by honest people and trust. So you can do excellent business. Despite this, it is important to follow a few common sense rules following to prevent any attempt to scam.<\\/p><p><b>Our advices<\\/b><\\/p><ul><li>Doing business with people you can meet in person.<\\/li><li>Never send money by Western Union, MoneyGram or other anonymous payment systems.<\\/li><li>Never send money or products abroad.<\\/li><li>Do not accept checks.<\\/li><li>Ask about the person you're dealing with another confirming source name, address and telephone number.<\\/li><li>Keep copies of all correspondence (emails, listings, letters, etc.) and details of the person.<\\/li><li>If a deal seems too good to be true, there is every chance that this is the case. Refrain.<\\/li><\\/ul><p><b>Recognize attempted scam<\\/b><\\/p><ul><li>The majority of scams have one or more of these characteristics:<\\/li><li>The person is abroad or traveling abroad.<\\/li><li>The person refuses to meet you in person.<\\/li><li>Payment is made through Western Union, Money Gram or check.<\\/li><li>The messages are in broken language (English or French or ...).<\\/li><li>The texts seem to be copied and pasted.<\\/li><li>The deal seems to be too good to be true.<\\/li><\\/ul>\",\"external_link\":null,\"name_color\":null,\"title_color\":null,\"target_blank\":0,\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"excluded_from_footer\":0,\"active\":1,\"lft\":4,\"rgt\":5,\"depth\":1,\"image_url\":null}],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\",\"prev\":null,\"next\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":2,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages\",\"per_page\":2,\"to\":2,\"total\":4}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/pages/{slugOrId}",
                            "metadata": {
                                "groupName": "Pages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get page",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "slugOrId": {
                                    "name": "slugOrId",
                                    "description": "The slug or ID of the page.",
                                    "required": true,
                                    "example": "terms",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "slugOrId": "terms"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"parent_id\":null,\"type\":\"terms\",\"name\":\"Terms\",\"slug\":\"terms\",\"image_path\":null,\"title\":\"Terms & Conditions\",\"content\":\"<h4><b>Definitions<\\/b><\\/h4><p>Each of the terms mentioned below have in these Conditions of Sale Ecosystem Service (hereinafter the \\\"Conditions\\\") the following meanings:<\\/p><ol><li>Announcement&nbsp;: refers to all the elements and data (visual, textual, sound, photographs, drawings), presented by an Advertiser editorial under his sole responsibility, in order to buy, rent or sell a product or service and broadcast on the Website and Mobile Site.<\\/li><li>Advertiser&nbsp;: means any natural or legal person, a major, established in France, holds an account and having submitted an announcement, from it, on the Website. Any Advertiser must be connected to the Personal Account for deposit and or manage its listings. Add first deposit automatically entails the establishment of a Personal Account to the Advertiser.<\\/li><li>Personal Account&nbsp;: refers to the free space than any Advertiser must create and which it should connect from the Website to disseminate, manage and view its listings.<\\/li><li>Ecosystem&nbsp;: means the company that publishes and operates the Website and Mobile Site {YourCompany}, registered at the Trade and Companies Register of {YourCity} under the number {YourCompany Registration Number} whose registered office is at {YourCompany Address}.<\\/li><li>Customer Service&nbsp;: Ecosystem means the department to which the Advertiser may obtain further information. This service can be contacted via email by clicking the link on the Website and Mobile Site.<\\/li><li>Ecosystem Service&nbsp;: Ecosystem means the services made available to Users and Advertisers on the Website and Mobile Site.<\\/li><li>Website&nbsp;: means the website operated by Ecosystem accessed mainly from the URL <a href=\\\"https:\\/\\/Ecosystem.com\\\">https:\\/\\/Ecosystem.com<\\/a> and allowing Users and Advertisers to access the Service via internet Ecosystem.<\\/li><li>Mobile Site&nbsp;: is the mobile site operated by Ecosystem accessible from the URL <a href=\\\"https:\\/\\/Ecosystem.com\\\">https:\\/\\/Ecosystem.com<\\/a> and allowing Users and Advertisers to access via their mobile phone service {YourSiteName}.<\\/li><li>User&nbsp;: any visitor with access to Ecosystem Service via the Website and Mobile Site and Consultant Service Ecosystem accessible from different media.<\\/li><\\/ol><h4><b>Subject<\\/b><\\/h4><p>These Terms and Conditions Of Use establish the contractual conditions applicable to any subscription by an Advertiser connected to its Personal Account from the Website and Mobile Site.<br><\\/p><h4><b>Acceptance<\\/b><\\/h4><p>Any use of the website by an Advertiser is full acceptance of the current Terms.<br><\\/p><h4><b>Responsibility<\\/b><\\/h4><p>Responsibility for Ecosystem can not be held liable for non-performance or improper performance of due control, either because of the Advertiser, or a case of major force.<br><\\/p><h4><b>Modification of these terms<\\/b><\\/h4><p>Ecosystem reserves the right, at any time, to modify all or part of the Terms and Conditions.<\\/p><p>Advertisers are advised to consult the Terms to be aware of the changes.<\\/p><h4><b>Miscellaneous<\\/b><\\/h4><p>If part of the Terms should be illegal, invalid or unenforceable for any reason whatsoever, the provisions in question would be deemed unwritten, without questioning the validity of the remaining provisions will continue to apply between Advertisers and Ecosystem.<\\/p><p>Any complaints should be addressed to Customer Service Ecosystem.<\\/p>\",\"external_link\":null,\"name_color\":null,\"title_color\":null,\"target_blank\":0,\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"excluded_from_footer\":0,\"active\":1,\"lft\":6,\"rgt\":7,\"depth\":1,\"image_url\":null}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/contact",
                            "metadata": {
                                "groupName": "Contact",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Send Form",
                                "description": "Send a message to the site owner.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "",
                                    "required": true,
                                    "example": "aperiam",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address.",
                                    "required": true,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "",
                                    "required": true,
                                    "example": "quae",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "message": {
                                    "name": "message",
                                    "description": "The message to send.",
                                    "required": true,
                                    "example": "Nesciunt porro possimus maiores voluptatibus accusamus velit qui aspernatur.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The user's country code.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_name": {
                                    "name": "country_name",
                                    "description": "The user's country name.",
                                    "required": true,
                                    "example": "United Sates",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "first_name": {
                                    "name": "first_name",
                                    "description": "The user's first name.",
                                    "required": true,
                                    "example": "John",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "last_name": {
                                    "name": "last_name",
                                    "description": "The user's last name.",
                                    "required": true,
                                    "example": "Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "suscipit",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "aperiam",
                                "email": "john.doe@domain.tld",
                                "phone": "quae",
                                "message": "Nesciunt porro possimus maiores voluptatibus accusamus velit qui aspernatur.",
                                "country_code": "US",
                                "country_name": "United Sates",
                                "first_name": "John",
                                "last_name": "Doe",
                                "captcha_key": "suscipit"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/posts/{id}/report",
                            "metadata": {
                                "groupName": "Contact",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Report post",
                                "description": "Report abuse or issues",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The post ID.",
                                    "required": true,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 5
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "report_type_id": {
                                    "name": "report_type_id",
                                    "description": "The report type ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address.",
                                    "required": true,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "message": {
                                    "name": "message",
                                    "description": "The message to send.",
                                    "required": true,
                                    "example": "Et sunt voluptatibus ducimus id assumenda sint.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "aliquid",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "report_type_id": 2,
                                "email": "john.doe@domain.tld",
                                "message": "Et sunt voluptatibus ducimus id assumenda sint.",
                                "captcha_key": "aliquid"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/languages",
                            "metadata": {
                                "groupName": "Languages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List languages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"code\":\"en\",\"locale\":\"en_US\",\"name\":\"English\",\"native\":\"English\",\"flag\":\"flag-icon-gb\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":1,\"parent_id\":null,\"lft\":2,\"rgt\":3,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"en_US\",\"tag\":\"en\",\"primary\":\"en\"},{\"code\":\"fr\",\"locale\":\"fr_FR\",\"name\":\"French\",\"native\":\"Français\",\"flag\":\"flag-icon-fr\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":4,\"rgt\":5,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"fr_FR\",\"tag\":\"fr\",\"primary\":\"fr\"},{\"code\":\"es\",\"locale\":\"es_ES\",\"name\":\"Spanish\",\"native\":\"Español\",\"flag\":\"flag-icon-es\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":6,\"rgt\":7,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"es_ES\",\"tag\":\"es\",\"primary\":\"es\"},{\"code\":\"ar\",\"locale\":\"ar_SA\",\"name\":\"Arabic\",\"native\":\"العربية\",\"flag\":\"flag-icon-sa\",\"script\":\"Arab\",\"direction\":\"rtl\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":8,\"rgt\":9,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ar_SA\",\"tag\":\"ar\",\"primary\":\"ar\"},{\"code\":\"pt\",\"locale\":\"pt_PT\",\"name\":\"Portuguese\",\"native\":\"Português\",\"flag\":\"flag-icon-pt\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":10,\"rgt\":11,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"pt_PT\",\"tag\":\"pt\",\"primary\":\"pt\"},{\"code\":\"de\",\"locale\":\"de_DE\",\"name\":\"German\",\"native\":\"Deutsch\",\"flag\":\"flag-icon-de\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":12,\"rgt\":13,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"de_DE\",\"tag\":\"de\",\"primary\":\"de\"},{\"code\":\"it\",\"locale\":\"it_IT\",\"name\":\"Italian\",\"native\":\"Italiano\",\"flag\":\"flag-icon-it\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":14,\"rgt\":15,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"it_IT\",\"tag\":\"it\",\"primary\":\"it\"},{\"code\":\"tr\",\"locale\":\"tr_TR\",\"name\":\"Turkish\",\"native\":\"Türkçe\",\"flag\":\"flag-icon-tr\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":16,\"rgt\":17,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"tr_TR\",\"tag\":\"tr\",\"primary\":\"tr\"},{\"code\":\"ru\",\"locale\":\"ru_RU\",\"name\":\"Russian\",\"native\":\"Русский\",\"flag\":\"flag-icon-ru\",\"script\":\"Cyrl\",\"direction\":\"ltr\",\"russian_pluralization\":1,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":18,\"rgt\":19,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ru_RU\",\"tag\":\"ru\",\"primary\":\"ru\"},{\"code\":\"hi\",\"locale\":\"hi_IN\",\"name\":\"Hindi\",\"native\":\"हिन्दी\",\"flag\":\"flag-icon-in\",\"script\":\"Deva\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":20,\"rgt\":21,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"hi_IN\",\"tag\":\"hi\",\"primary\":\"hi\"},{\"code\":\"bn\",\"locale\":\"bn_BD\",\"name\":\"Bengali\",\"native\":\"বাংলা\",\"flag\":\"flag-icon-bd\",\"script\":\"Beng\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":22,\"rgt\":23,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"bn_BD\",\"tag\":\"bn\",\"primary\":\"bn\"},{\"code\":\"zh\",\"locale\":\"zh_CN\",\"name\":\"Simplified Chinese\",\"native\":\"简体中文\",\"flag\":\"flag-icon-cn\",\"script\":\"Hans\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":24,\"rgt\":25,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"zh_CN\",\"tag\":\"zh\",\"primary\":\"zh\"},{\"code\":\"ja\",\"locale\":\"ja_JP\",\"name\":\"Japanese\",\"native\":\"日本語\",\"flag\":\"flag-icon-jp\",\"script\":\"Jpan\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":26,\"rgt\":27,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ja_JP\",\"tag\":\"ja\",\"primary\":\"ja\"},{\"code\":\"he\",\"locale\":\"he_IL\",\"name\":\"Hebrew\",\"native\":\"עִברִית\",\"flag\":\"flag-icon-il\",\"script\":\"Hebr\",\"direction\":\"rtl\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":28,\"rgt\":29,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"he_IL\",\"tag\":\"he\",\"primary\":\"he\"},{\"code\":\"th\",\"locale\":\"th_TH\",\"name\":\"Thai\",\"native\":\"ไทย\",\"flag\":\"flag-icon-th\",\"script\":\"Thai\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":30,\"rgt\":31,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"th_TH\",\"tag\":\"th\",\"primary\":\"th\"},{\"code\":\"ro\",\"locale\":\"ro_RO\",\"name\":\"Romanian\",\"native\":\"Română\",\"flag\":\"flag-icon-ro\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":32,\"rgt\":33,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ro_RO\",\"tag\":\"ro\",\"primary\":\"ro\"},{\"code\":\"ka\",\"locale\":\"ka_GE\",\"name\":\"Georgian\",\"native\":\"ქართული\",\"flag\":\"flag-icon-ge\",\"script\":\"Geor\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":34,\"rgt\":35,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ka_GE\",\"tag\":\"ka\",\"primary\":\"ka\"}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/languages/{code}",
                            "metadata": {
                                "groupName": "Languages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get language",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The language's code.",
                                    "required": true,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "en"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"code\":\"en\",\"locale\":\"en_US\",\"name\":\"English\",\"native\":\"English\",\"flag\":\"flag-icon-gb\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":1,\"parent_id\":null,\"lft\":2,\"rgt\":3,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"en_US\",\"tag\":\"en\",\"primary\":\"en\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/settings",
                            "metadata": {
                                "groupName": "Settings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List settings",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"app\":{\"name\":\"SHAREK FORSA\",\"logo\":\"app\\/logo\\/logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark\":\"app\\/default\\/logo-dark.png\",\"logo_light\":\"app\\/default\\/logo-light.png\",\"favicon\":\"app\\/default\\/ico\\/favicon.png\",\"date_format\":\"YYYY-MM-DD\",\"datetime_format\":\"YYYY-MM-DD HH:mm\",\"date_from_now_modifier\":\"DIFF_RELATIVE_TO_NOW\",\"date_from_now_short\":\"0\",\"vector_charts_type\":\"morris_bar\",\"vector_charts_limit\":\"7\",\"show_countries_charts\":\"1\",\"countries_charts_limit\":\"5\",\"latest_entries_limit\":\"5\",\"general_settings_as_submenu_in_sidebar\":\"1\",\"dark_theme_enabled\":\"0\",\"system_theme_enabled\":\"0\",\"php_specific_date_format\":\"0\",\"logo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_light_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"favicon_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/ico\\/favicon.png\"},\"style\":{\"skin\":\"blueIzis\",\"page_width\":\"1200\",\"header_full_width\":\"0\",\"dark_header\":\"0\",\"header_shadow\":\"0\",\"header_background_class\":\"bg-body-tertiary\",\"header_animation\":\"1\",\"header_fixed_top\":\"1\",\"header_height_offset\":\"200\",\"fixed_dark_header\":\"0\",\"fixed_header_shadow\":\"1\",\"header_highlighted_btn_link\":\"listingCreationLink\",\"header_highlighted_btn_class\":\"btn-highlight\",\"logo_width\":216,\"logo_height\":40,\"logo_aspect_ratio\":\"1\",\"dark_footer\":\"1\",\"high_spacing_footer\":\"1\",\"footer_full_width\":\"0\",\"admin_logo_bg\":\"skin3\",\"admin_navbar_bg\":\"skin6\",\"admin_sidebar_type\":\"full\",\"admin_sidebar_bg\":\"skin5\",\"admin_sidebar_position\":\"1\",\"admin_header_position\":\"1\",\"admin_boxed_layout\":\"0\",\"admin_dark_theme\":\"0\",\"body_background_image_animation\":\"0\",\"header_highlighted_btn_outline\":\"0\"},\"listing_form\":{\"publication_form_type\":\"multi-steps-form\",\"city_selection\":\"modal\",\"picture_mandatory\":\"1\",\"listings_limit\":\"50\",\"pictures_limit\":\"5\",\"title_min_length\":\"2\",\"title_max_length\":\"150\",\"description_min_length\":\"5\",\"description_max_length\":\"6000\",\"tags_limit\":\"15\",\"tags_min_length\":\"2\",\"tags_max_length\":\"30\",\"guest_can_submit_listings\":\"0\",\"permanent_listings_enabled\":\"0\",\"default_package_type\":\"promotion\",\"utf8mb4_enabled\":\"0\",\"allow_emojis\":\"0\",\"cat_display_type\":\"c_bigIcon_list\",\"wysiwyg_editor\":\"tinymce\",\"auto_registration\":\"0\"},\"listings_list\":{\"display_browse_listings_link\":\"0\",\"display_mode\":\"grid-view\",\"show_left_sidebar\":\"1\",\"left_sidebar_offcanvas\":\"md\",\"min_price\":\"0\",\"max_price\":\"10000\",\"price_slider_step\":\"50\",\"show_category_icon\":\"7\",\"enable_cities_autocompletion\":\"1\",\"enable_diacritics\":\"0\",\"cities_extended_searches\":\"1\",\"distance_calculation_formula\":\"ST_Distance_Sphere\",\"search_distance_max\":\"500\",\"search_distance_default\":\"50\",\"search_distance_interval\":\"100\",\"premium_first\":\"0\",\"premium_first_category\":\"1\",\"premium_first_location\":\"1\",\"free_listings_in_premium\":\"0\"},\"listing_page\":{\"guest_can_contact_authors\":\"0\",\"pictures_slider\":\"swiper-horizontal\",\"similar_listings\":\"1\",\"similar_listings_in_carousel\":\"1\"},\"mail\":{\"sendmail_path\":\"\\/usr\\/sbin\\/sendmail -bs -i\"},\"sms\":{\"enable_phone_as_auth_field\":\"0\",\"default_auth_field\":\"email\",\"phone_of_countries\":\"local\",\"phone_validator\":\"isPossiblePhoneNumber\",\"phone_placeholder_type\":\"auto-0\",\"phone_verification\":\"1\",\"driver\":null},\"upload\":{\"file_types\":\"pdf,doc,docx,rtf,rtx,ppt,pptx,odt,odp,wps,jpg,jpeg,gif,png,avif,bmp,webp\",\"min_file_size\":0,\"max_file_size\":2500,\"image_types\":\"jpg,jpeg,gif,png,avif,bmp,webp\",\"image_quality\":\"90\",\"client_image_types\":\"jpg,png\",\"min_image_size\":0,\"max_image_size\":2500,\"img_resize_default_method\":\"resize\",\"img_resize_default_width\":1500,\"img_resize_default_height\":1500,\"img_resize_default_ratio\":\"1\",\"img_resize_default_upsize\":\"0\",\"img_resize_default_position\":\"center\",\"img_resize_default_bgColor\":\"ffffff\",\"img_resize_logo_method\":\"resize\",\"img_resize_logo_width\":485,\"img_resize_logo_height\":90,\"img_resize_logo_ratio\":\"1\",\"img_resize_logo_upsize\":\"0\",\"img_resize_logo_position\":\"center\",\"img_resize_logo_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_logo_max_method\":\"resize\",\"img_resize_logo_max_width\":430,\"img_resize_logo_max_height\":80,\"img_resize_logo_max_ratio\":\"1\",\"img_resize_logo_max_upsize\":\"0\",\"img_resize_logo_max_position\":\"center\",\"img_resize_logo_max_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_favicon_method\":\"resize\",\"img_resize_favicon_width\":32,\"img_resize_favicon_height\":32,\"img_resize_favicon_ratio\":\"1\",\"img_resize_favicon_upsize\":\"0\",\"img_resize_favicon_position\":\"center\",\"img_resize_favicon_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_cat_method\":\"resize\",\"img_resize_cat_width\":70,\"img_resize_cat_height\":70,\"img_resize_cat_ratio\":\"1\",\"img_resize_cat_upsize\":\"0\",\"img_resize_cat_position\":\"center\",\"img_resize_cat_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_bg_header_method\":\"resize\",\"img_resize_bg_header_width\":2000,\"img_resize_bg_header_height\":1000,\"img_resize_bg_header_ratio\":\"1\",\"img_resize_bg_header_upsize\":\"0\",\"img_resize_bg_header_position\":\"center\",\"img_resize_bg_header_bgColor\":\"ffffff\",\"img_resize_bg_body_method\":\"resize\",\"img_resize_bg_body_width\":2500,\"img_resize_bg_body_height\":2500,\"img_resize_bg_body_ratio\":\"1\",\"img_resize_bg_body_upsize\":\"0\",\"img_resize_bg_body_position\":\"center\",\"img_resize_bg_body_bgColor\":\"ffffff\",\"img_resize_picture_sm_method\":\"resizeCanvas\",\"img_resize_picture_sm_width\":120,\"img_resize_picture_sm_height\":90,\"img_resize_picture_sm_ratio\":\"1\",\"img_resize_picture_sm_upsize\":\"0\",\"img_resize_picture_sm_position\":\"center\",\"img_resize_picture_sm_bgColor\":\"ffffff\",\"img_resize_picture_md_method\":\"fit\",\"img_resize_picture_md_width\":320,\"img_resize_picture_md_height\":240,\"img_resize_picture_md_ratio\":\"1\",\"img_resize_picture_md_upsize\":\"0\",\"img_resize_picture_md_position\":\"center\",\"img_resize_picture_md_bgColor\":\"ffffff\",\"img_resize_picture_lg_method\":\"resize\",\"img_resize_picture_lg_width\":816,\"img_resize_picture_lg_height\":460,\"img_resize_picture_lg_ratio\":\"1\",\"img_resize_picture_lg_upsize\":\"0\",\"img_resize_picture_lg_position\":\"center\",\"img_resize_picture_lg_bgColor\":\"ffffff\",\"img_resize_avatar_method\":\"resize\",\"img_resize_avatar_width\":800,\"img_resize_avatar_height\":800,\"img_resize_avatar_ratio\":\"1\",\"img_resize_avatar_upsize\":\"0\",\"img_resize_avatar_position\":\"center\",\"img_resize_avatar_bgColor\":\"ffffff\",\"img_resize_company_logo_method\":\"resize\",\"img_resize_company_logo_width\":800,\"img_resize_company_logo_height\":800,\"img_resize_company_logo_ratio\":\"1\",\"img_resize_company_logo_upsize\":\"0\",\"img_resize_company_logo_position\":\"center\",\"img_resize_company_logo_bgColor\":\"rgba(0, 0, 0, 0)\"},\"localization\":{\"geoip_driver\":\"ipapi\",\"country_flag_shape\":\"circle\",\"show_country_flag\":\"in_next_logo\",\"auto_detect_language\":\"disabled\",\"show_languages_flags\":\"0\",\"default_country_code\":\"SA\"},\"security\":{\"honeypot_enabled\":\"1\",\"honeypot_name_field_name\":\"entity_field\",\"honeypot_valid_from_field_name\":\"valid_field\",\"honeypot_amount_of_seconds\":\"3\",\"honeypot_respond_to_spam_with\":\"blank_page\",\"captcha_delay\":\"1000\",\"recaptcha_version\":\"v2\"},\"auth\":{\"open_login_in_modal\":\"1\",\"login_max_attempts\":\"5\",\"login_decay_minutes\":\"15\",\"password_min_length\":\"6\",\"password_max_length\":\"30\",\"password_letters_required\":\"0\",\"password_mixedCase_required\":\"0\",\"password_numbers_required\":\"0\",\"password_symbols_required\":\"0\",\"password_uncompromised_required\":\"0\",\"password_uncompromised_threshold\":\"0\",\"email_validator_rfc\":\"1\",\"email_validator_strict\":\"0\",\"email_validator_dns\":\"0\",\"email_validator_spoof\":\"0\",\"email_validator_filter\":\"0\",\"otp_length\":4,\"otp_expire_time_seconds\":300,\"otp_cooldown_seconds\":60,\"otp_max_attempts\":3,\"otp_decay_minutes\":60,\"max_login_lockout_attempts\":0,\"max_resend_lockout_attempts\":15,\"lockout_duration_minutes\":1440,\"hero_image_path\":\"app\\/default\\/auth\\/login-bg-blurred.jpg\",\"hero_image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/auth\\\\thumbnails\\\\2500x2500-login-bg-blurred.jpg\"},\"social_auth\":{\"button_type\":\"loginWithDefault\"},\"social_link\":{\"facebook_page_url\":\"#\",\"twitter_url\":\"#\",\"linkedin_url\":\"#\",\"pinterest_url\":\"#\",\"instagram_url\":\"#\",\"tiktok_url\":\"#\",\"youtube_url\":\"#\",\"vimeo_url\":\"#\",\"vk_url\":\"#\"},\"social_share\":{\"facebook\":\"1\",\"twitter\":\"1\",\"linkedin\":\"1\",\"whatsapp\":\"1\",\"telegram\":\"1\",\"snapchat\":\"0\",\"messenger\":\"0\",\"pinterest\":\"0\",\"vk\":\"0\",\"tumblr\":\"0\",\"og_image_width\":\"1200\",\"og_image_height\":\"630\"},\"optimization\":{\"cache_driver\":\"file\",\"cache_expiration\":\"86400\",\"memcached_servers_1_host\":\"127.0.0.1\",\"memcached_servers_1_port\":\"11211\",\"redis_client\":\"predis\",\"redis_cluster\":\"predis\",\"redis_host\":\"127.0.0.1\",\"redis_port\":\"6379\",\"redis_database\":\"0\",\"queue_driver\":\"sync\",\"lazy_loading_activation\":\"0\",\"minify_html_activation\":\"0\"},\"seo\":{\"robots_txt\":\"User-agent: *\\nAllow: \\/\\n\\nUser-agent: *\\nDisallow: \\/\\/admin\\/\\nDisallow: \\/assets\\/\\nDisallow: \\/css\\/\\nDisallow: \\/js\\/\\nDisallow: \\/vendor\\/\\nDisallow: \\/main.php\\nDisallow: \\/index.php\\nDisallow: \\/mix-manifest.json\\nDisallow: \\/*?display=*\\nDisallow: \\/locale\\/en\\nDisallow: \\/locale\\/fr\\nDisallow: \\/locale\\/es\\nDisallow: \\/locale\\/ar\\nDisallow: \\/locale\\/pt\\nDisallow: \\/locale\\/de\\nDisallow: \\/locale\\/it\\nDisallow: \\/locale\\/tr\\nDisallow: \\/locale\\/ru\\nDisallow: \\/locale\\/hi\\nDisallow: \\/locale\\/bn\\nDisallow: \\/locale\\/zh\\nDisallow: \\/locale\\/ja\\nDisallow: \\/locale\\/he\\nDisallow: \\/locale\\/th\\nDisallow: \\/locale\\/ro\\nDisallow: \\/locale\\/ka\\nDisallow: \\/auth\\/connect\\/facebook\\nDisallow: \\/auth\\/connect\\/linkedin\\nDisallow: \\/auth\\/connect\\/twitter\\nDisallow: \\/auth\\/connect\\/google\\n\",\"robots_txt_sm_indexes\":\"1\",\"listing_hashed_id_enabled\":\"0\",\"listing_hashed_id_seo_redirection\":\"1\"},\"pagination\":{\"per_page\":10,\"categories_per_page\":12,\"cities_per_page\":40,\"payments_per_page\":10,\"posts_per_page\":12,\"saved_posts_per_page\":10,\"saved_search_per_page\":20,\"subadmin1_per_page\":39,\"subadmin2_per_page\":38,\"subscriptions_per_page\":10,\"threads_per_page\":20,\"threads_messages_per_page\":10,\"similar_posts_limit\":4,\"categories_limit\":50,\"cities_limit\":50,\"auto_complete_cities_limit\":25,\"subadmin1_select_limit\":200,\"subadmin2_select_limit\":5000,\"cities_select_limit\":25},\"other\":{\"account_closure_enabled\":\"1\",\"cookie_consent_enabled\":\"0\",\"show_tips_messages\":\"1\",\"timer_new_messages_checking\":60000,\"wysiwyg_editor\":\"tinymce\",\"carousel_slide_by_page\":\"0\",\"carousel_mouse_drag\":\"0\",\"carousel_loop\":\"1\",\"carousel_rewind\":\"0\",\"carousel_autoplay\":\"1\",\"carousel_autoplay_timeout\":\"1500\",\"carousel_autoplay_hover_pause\":\"1\",\"carousel_nav\":\"1\",\"carousel_nav_position\":\"bottom\",\"carousel_controls\":\"0\",\"carousel_ctrl_position\":\"top-end\",\"cookie_expiration\":1440},\"cron\":{\"unactivated_listings_expiration\":\"30\",\"activated_listings_expiration\":\"30\",\"archived_listings_expiration\":\"7\",\"manually_archived_listings_expiration\":\"90\"},\"footer\":{\"hide_payment_plugins_logos\":\"1\"},\"backup\":{\"disable_notifications\":\"1\",\"keep_all_backups_for_days\":\"7\",\"keep_daily_backups_for_days\":\"16\",\"keep_weekly_backups_for_weeks\":\"8\",\"keep_monthly_backups_for_months\":\"4\",\"keep_yearly_backups_for_years\":\"2\",\"maximum_storage_in_megabytes\":\"5000\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/settings/{key}",
                            "metadata": {
                                "groupName": "Settings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get setting",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "key": {
                                    "name": "key",
                                    "description": "The setting's key.",
                                    "required": true,
                                    "example": "app",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "key": "app"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"name\":\"SHAREK FORSA\",\"logo\":\"app\\/logo\\/logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark\":\"app\\/default\\/logo-dark.png\",\"logo_light\":\"app\\/default\\/logo-light.png\",\"favicon\":\"app\\/default\\/ico\\/favicon.png\",\"date_format\":\"YYYY-MM-DD\",\"datetime_format\":\"YYYY-MM-DD HH:mm\",\"date_from_now_modifier\":\"DIFF_RELATIVE_TO_NOW\",\"date_from_now_short\":\"0\",\"vector_charts_type\":\"morris_bar\",\"vector_charts_limit\":\"7\",\"show_countries_charts\":\"1\",\"countries_charts_limit\":\"5\",\"latest_entries_limit\":\"5\",\"general_settings_as_submenu_in_sidebar\":\"1\",\"dark_theme_enabled\":\"0\",\"system_theme_enabled\":\"0\",\"php_specific_date_format\":\"0\",\"logo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_light_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"favicon_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/ico\\/favicon.png\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/sections",
                            "metadata": {
                                "groupName": "Home",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List sections",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":{\"search_form\":{\"belongs_to\":\"home\",\"key\":\"search_form\",\"data\":[],\"options\":{\"enable_extended_form_area\":\"1\",\"background_image_path\":null,\"background_image_darken\":0,\"title_en\":\"Sell and Buy near you\",\"sub_title_en\":\"Simple, fast and efficient\",\"title_fr\":\"Vendre et acheter près de chez vous\",\"sub_title_fr\":\"Simple, rapide et efficace\",\"title_es\":\"Vender y comprar cerca de usted\",\"sub_title_es\":\"Simple, rápido y eficiente\",\"title_ar\":\"بيع وشراء بالقرب منك\",\"sub_title_ar\":\"بسيطة وسريعة وفعالة\",\"title_pt\":\"Vender e comprar perto de si\",\"sub_title_pt\":\"Simples, Rápido e Eficiente\",\"title_de\":\"Verkaufen und Kaufen in Ihrer Nähe\",\"sub_title_de\":\"Einfach, schnell und effizient\",\"title_it\":\"Vendi e compra vicino a te\",\"sub_title_it\":\"Semplice, veloce ed efficiente\",\"title_tr\":\"Size yakın satıp satın alın\",\"sub_title_tr\":\"Basit, hızlı ve verimli\",\"title_ru\":\"Продавайте и покупайте рядом с вами\",\"sub_title_ru\":\"Просто, быстро и эффективно\",\"title_hi\":\"अपने पास बेचें और खरीदें\",\"sub_title_hi\":\"सरल, तेज और कुशल\",\"title_bn\":\"আপনার কাছাকাছি বিক্রি করুন এবং কিনুন\",\"sub_title_bn\":\"সহজ, দ্রুত এবং দক্ষ\",\"title_zh\":\"在您附近买卖\",\"sub_title_zh\":\"简单,快速,高效\",\"title_ja\":\"お近くの売買\",\"sub_title_ja\":\"シンプル、迅速かつ効率的\",\"title_he\":\"למכור ולקנות בקרבתך\",\"sub_title_he\":\"פשוט, מהיר ויעיל\",\"title_th\":\"ขายและซื้อใกล้บ้านคุณ\",\"sub_title_th\":\"ง่ายรวดเร็วและมีประสิทธิภาพ\",\"title_ro\":\"Vinde și Cumpără inteligent\",\"sub_title_ro\":\"Simplu, rapid și eficient!\",\"title_ka\":\"გაყიდვა და შეძენა ახლოს თქვენ\",\"sub_title_ka\":\"მარტივი, სწრაფი და ეფექტური\",\"background_image_url\":null},\"lft\":0},\"categories\":{\"belongs_to\":\"home\",\"key\":\"categories\",\"data\":{\"categories\":{\"1\":{\"id\":1,\"parent_id\":null,\"name\":\"Automobiles\",\"slug\":\"automobiles\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-car\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":1,\"rgt\":10,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"9\":{\"id\":9,\"parent_id\":null,\"name\":\"Phones & Tablets\",\"slug\":\"phones-and-tablets\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-mobile-screen-button\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":11,\"rgt\":17,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"14\":{\"id\":14,\"parent_id\":null,\"name\":\"Electronics\",\"slug\":\"electronics\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-laptop\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":18,\"rgt\":35,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"30\":{\"id\":30,\"parent_id\":null,\"name\":\"Furniture & Appliances\",\"slug\":\"furniture-appliances\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-couch\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":36,\"rgt\":44,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"37\":{\"id\":37,\"parent_id\":null,\"name\":\"Real estate\",\"slug\":\"real-estate\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-house\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":45,\"rgt\":55,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"46\":{\"id\":46,\"parent_id\":null,\"name\":\"Animals & Pets\",\"slug\":\"animals-and-pets\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-paw\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":56,\"rgt\":65,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"54\":{\"id\":54,\"parent_id\":null,\"name\":\"Fashion\",\"slug\":\"fashion\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-shirt\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":66,\"rgt\":75,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"62\":{\"id\":62,\"parent_id\":null,\"name\":\"Beauty & Well being\",\"slug\":\"beauty-well-being\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-spa\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":76,\"rgt\":88,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"73\":{\"id\":73,\"parent_id\":null,\"name\":\"Jobs\",\"slug\":\"jobs\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-briefcase\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":89,\"rgt\":114,\"depth\":0,\"type\":\"job-offer\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"97\":{\"id\":97,\"parent_id\":null,\"name\":\"Services\",\"slug\":\"services\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-clipboard-list\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":115,\"rgt\":133,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"114\":{\"id\":114,\"parent_id\":null,\"name\":\"Learning\",\"slug\":\"learning\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-graduation-cap\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":134,\"rgt\":143,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"122\":{\"id\":122,\"parent_id\":null,\"name\":\"Local Events\",\"slug\":\"local-events\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-regular fa-calendar-days\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":144,\"rgt\":158,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"}},\"countPostsPerCat\":[]},\"options\":{\"max_items\":null,\"cat_display_type\":\"c_bigIcon_list\",\"show_icon\":\"1\",\"max_sub_cats\":\"3\"},\"lft\":2},\"premium_listings\":{\"belongs_to\":\"home\",\"key\":\"premium_listings\",\"data\":{\"premium\":null},\"options\":{\"max_items\":\"20\",\"items_in_carousel\":\"1\"},\"lft\":4},\"locations\":{\"belongs_to\":\"home\",\"key\":\"locations\",\"data\":{\"cities\":[{\"id\":44,\"country_code\":\"SA\",\"name\":\"Riyadh\",\"longitude\":46.72,\"latitude\":24.69,\"feature_class\":\"P\",\"feature_code\":\"PPLC\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":4205961,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"riyadh\"},{\"id\":136,\"country_code\":\"SA\",\"name\":\"Riyadh\",\"longitude\":46.72,\"latitude\":24.69,\"feature_class\":\"P\",\"feature_code\":\"PPLC\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":4205961,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"riyadh\"},{\"id\":29,\"country_code\":\"SA\",\"name\":\"Jeddah\",\"longitude\":39.19,\"latitude\":21.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":2867446,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2022-01-21T01:00:00.000000Z\",\"updated_at\":\"2022-01-21T01:00:00.000000Z\",\"slug\":\"jeddah\"},{\"id\":121,\"country_code\":\"SA\",\"name\":\"Jeddah\",\"longitude\":39.19,\"latitude\":21.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":2867446,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2022-01-21T01:00:00.000000Z\",\"updated_at\":\"2022-01-21T01:00:00.000000Z\",\"slug\":\"jeddah\"},{\"id\":25,\"country_code\":\"SA\",\"name\":\"Mecca\",\"longitude\":39.83,\"latitude\":21.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":1323624,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2020-05-28T01:00:00.000000Z\",\"updated_at\":\"2020-05-28T01:00:00.000000Z\",\"slug\":\"mecca\"},{\"id\":117,\"country_code\":\"SA\",\"name\":\"Mecca\",\"longitude\":39.83,\"latitude\":21.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":1323624,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2020-05-28T01:00:00.000000Z\",\"updated_at\":\"2020-05-28T01:00:00.000000Z\",\"slug\":\"mecca\"},{\"id\":61,\"country_code\":\"SA\",\"name\":\"Medina\",\"longitude\":39.61,\"latitude\":24.47,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":1300000,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"medina\"},{\"id\":153,\"country_code\":\"SA\",\"name\":\"Medina\",\"longitude\":39.61,\"latitude\":24.47,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":1300000,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"medina\"},{\"id\":104,\"country_code\":\"SA\",\"name\":\"Sulţānah\",\"longitude\":39.59,\"latitude\":24.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":946697,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2012-01-16T01:00:00.000000Z\",\"updated_at\":\"2012-01-16T01:00:00.000000Z\",\"slug\":\"sultanah\"},{\"id\":12,\"country_code\":\"SA\",\"name\":\"Sulţānah\",\"longitude\":39.59,\"latitude\":24.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":946697,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2012-01-16T01:00:00.000000Z\",\"updated_at\":\"2012-01-16T01:00:00.000000Z\",\"slug\":\"sultanah\"},{\"id\":81,\"country_code\":\"SA\",\"name\":\"Dammam\",\"longitude\":50.1,\"latitude\":26.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.06\",\"subadmin2_code\":null,\"population\":768602,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2014-08-19T01:00:00.000000Z\",\"updated_at\":\"2014-08-19T01:00:00.000000Z\",\"slug\":\"dammam\"},{\"id\":173,\"country_code\":\"SA\",\"name\":\"Dammam\",\"longitude\":50.1,\"latitude\":26.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.06\",\"subadmin2_code\":null,\"population\":768602,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2014-08-19T01:00:00.000000Z\",\"updated_at\":\"2014-08-19T01:00:00.000000Z\",\"slug\":\"dammam\"},{\"id\":132,\"country_code\":\"SA\",\"name\":\"Ta’if\",\"longitude\":40.42,\"latitude\":21.27,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":530848,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-05T01:00:00.000000Z\",\"updated_at\":\"2015-09-05T01:00:00.000000Z\",\"slug\":\"ta’if\"},{\"id\":40,\"country_code\":\"SA\",\"name\":\"Ta’if\",\"longitude\":40.42,\"latitude\":21.27,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":530848,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-05T01:00:00.000000Z\",\"updated_at\":\"2015-09-05T01:00:00.000000Z\",\"slug\":\"ta’if\"},{\"id\":101,\"country_code\":\"SA\",\"name\":\"Tabuk\",\"longitude\":36.57,\"latitude\":28.4,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.19\",\"subadmin2_code\":null,\"population\":455450,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-12T01:00:00.000000Z\",\"updated_at\":\"2015-09-12T01:00:00.000000Z\",\"slug\":\"tabuk\"},{\"id\":9,\"country_code\":\"SA\",\"name\":\"Tabuk\",\"longitude\":36.57,\"latitude\":28.4,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.19\",\"subadmin2_code\":null,\"population\":455450,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-12T01:00:00.000000Z\",\"updated_at\":\"2015-09-12T01:00:00.000000Z\",\"slug\":\"tabuk\"},{\"id\":155,\"country_code\":\"SA\",\"name\":\"Al Kharj\",\"longitude\":47.33,\"latitude\":24.16,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":425300,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2017-09-13T01:00:00.000000Z\",\"updated_at\":\"2017-09-13T01:00:00.000000Z\",\"slug\":\"al-kharj\"},{\"id\":63,\"country_code\":\"SA\",\"name\":\"Al Kharj\",\"longitude\":47.33,\"latitude\":24.16,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":425300,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2017-09-13T01:00:00.000000Z\",\"updated_at\":\"2017-09-13T01:00:00.000000Z\",\"slug\":\"al-kharj\"},{\"id\":34,\"country_code\":\"SA\",\"name\":\"Buraydah\",\"longitude\":43.97,\"latitude\":26.33,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.08\",\"subadmin2_code\":null,\"population\":391336,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2018-03-06T01:00:00.000000Z\",\"updated_at\":\"2018-03-06T01:00:00.000000Z\",\"slug\":\"buraydah\"},{\"id\":0,\"name\":\"More cities &raquo;\",\"subadmin0_code\":0}],\"items_cols\":4},\"options\":{\"show_cities\":\"1\",\"max_items\":\"19\",\"show_listing_btn\":\"1\",\"enable_map\":\"0\",\"map_width\":\"300\",\"map_height\":\"300\"},\"lft\":6},\"latest_listings\":{\"belongs_to\":\"home\",\"key\":\"latest_listings\",\"data\":{\"latest\":null},\"options\":{\"max_items\":\"8\",\"show_view_more_btn\":\"1\"},\"lft\":8},\"stats\":{\"belongs_to\":\"home\",\"key\":\"stats\",\"data\":{\"count\":{\"posts\":0,\"users\":36,\"locations\":184}},\"options\":{\"icon_count_listings\":\"bi bi-megaphone\",\"icon_count_users\":\"bi bi-people\",\"icon_count_locations\":\"bi bi-geo-alt\",\"counter_up_delay\":10,\"counter_up_time\":2000},\"lft\":10}}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/sections/{method}",
                            "metadata": {
                                "groupName": "Home",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get section",
                                "description": "Get category by its unique slug or ID.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "method": {
                                    "name": "method",
                                    "description": "",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "key": {
                                    "name": "key",
                                    "description": "The key/method of the section.",
                                    "required": true,
                                    "example": "getCategories",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "method": 1,
                                "key": "getCategories"
                            },
                            "queryParameters": {
                                "parentCatSlug": {
                                    "name": "parentCatSlug",
                                    "description": "The slug of the parent category to retrieve used when category's slug provided instead of ID.",
                                    "required": false,
                                    "example": "automobiles",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "parentCatSlug": "automobiles"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Section not found\",\"result\":null,\"error\":\"Section not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/captcha",
                            "metadata": {
                                "groupName": "Captcha",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get CAPTCHA",
                                "description": "Calling this endpoint is mandatory if the captcha is enabled in the Admin panel.\nReturn JSON data with an 'img' item that contains the captcha image to show and a 'key' item that contains the generated key to send for validation.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"sensitive\":false,\"key\":\"eyJpdiI6IjBid2xQRWlPMUYzZmR5VzNEci9seFE9PSIsInZhbHVlIjoiVStmbUxUaUFqcUFObTVscjZ2QkNaY0VNeUFLcGNYSThmQ0FtT2ZHU1hZaGkzbXRDZnBxZTFtUW1oeGwrQ08waWRPTUNtZ0x1Rjc0MmpBbnVMZ0VTZGsxYnVGWjhLMTR4VDRCL1dwWE0wR289IiwibWFjIjoiYWJlNzU5MDQzNzM4MTJiMzI1YmUwNGUzN2IwOGFlOGQ4YWQzODMzMTA0MTU4NjdmNjY3MzhjMTgzMDFmNWVkOCIsInRhZyI6IiJ9\",\"img\":\"data:image\\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAAAyCAYAAADbYdBlAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAPAklEQVR4nO2de2xb133HP\\/fy8s3Ll0RasmRJjmXZcew4dr06bhMna5oi6dYmRboMRVKgG4oOXYe1wJYNwzZ0K1AsWbph7TYMWIE90K3Jijy2Lkk7L+2SOOmS+BXHTmJHsh1Z1luUxMclL8n72B+SKT4lUrqU7I6ff8hzz7n3HIpf\\/h7nAQnH3zpt0qLFBiFu9ABa\\/P+mJcAWG0pLgC02lHUR4Be\\/enI9umlxHdJ0AQ6PpOnd4ml2Ny2uU1oCbLGhNF2AH4yk6WsJsEUNWhawxYbSEmCLDUVq5sNb4mscQc8SuvAD5NGf4EgNI2oZDMlDzteNGrqJRPfdZNr3b\\/QwLaMlwGsIuzJKzyu\\/gUMZKbku6hmkbAxP7DThoe+jRA8y+uE\\/Q3e1bdBIraOpLriVgDSAkWfL0S9XiK8a3qk36H351xG0zDoMrLk03QLe8ZH2Znbxc0N46AmcqeFC2UQg1XkHamgXmDqemRN4p48X6p3JD2g7\\/w\\/M3PQVS8dhzEyjvXkUMxEHQJD9SAcPI7ZHLO3nKi0XfI0QGH6upDx18+8wO\\/D50jaXnmXziT8plIOXnrVUgKZhkPnW1zHj8yXXtVPH8PzRo5b1U0zTXHBLfA1g5HEmhgpFXfIyu\\/2himbxrZ9B9fcXynZ1Gpsas2wYZmy6QnwAZjJuWR\\/ltAR4DeBQRhFMvVBWw7tBqP7VaJ6OkrKoKZaNw5iZsuxZ9dI0F3w9JiDHE1MciY3glxzIkp1DgQ4GPMGSNjlDRxJEREGwrF8pM1lSzns6a7YVjHxJ2bS5LBuHOT25ciOLaZoAr8cE5FImwavx8UK53e5iwBPk9fgEP5z+gLNKDM00ERH4eLibr\\/XstaRfKTNdUs67Ny3TdkkkJgKaM2zJGACMqYmadaZhACCI1jrNZQX47isvoswvxBh2pwuH24s3GMIf6SAQ3YRoq337alzw\\/FCa2DsK+bSBaZgIooDkFvF2OIjuk7E5l\\/\\/wqbEs6ckchmYiiGBziTj9Er7NTgTbyhYrqZdaF6do4\\/HhU\\/zP3GjJdQOTWF5t6LMth73MAmruaM22xWLVnWEQ125D9IuDZP76UVCrT+uYiTjKVx4GQIhswvMH30RwW+Pdlh394BuvoOWyVetskp1I3zY279hN7559JWJcbfx36YUYycvV+xv7WZz9X91SU0jvPzXFxOuJqnWhATd7vtS1Yv9JLVdSfmJikPFcumpbWbKv+Lx6qXDBNSygoGWwFcV8eU9tS9kI2rHXaoqvHHN6En3wHNLN1qzG1DQphqHXFB+AruWZGDrHyeef4kd\\/8xiXz54q1K1WgN13hGrWKWM5Rl+tzNAAZs6kaooPILSjvrGUW8Bi8QUkB9vdAW70hIjYXfhtjrqeWQ9Sdq6kbNjlqu0qLKWrtqVsBDNd\\/UdWu33Kkn5hGQuYa2BQairBsf94ktmxEW75xKdXnYBE9vqYPOZh9lz1voePzBLdL+OQl4adT+sMPj1dtT2A3OOk6\\/ZgzfpiygUI0O308lvde7hZbmI8W5QBA9hy1ac9KmJFiywgTmdDzQWndYlPTQFKDgcfefALiJKEaRjkMmnS83PEpyeIXRkmk6i0RheOvYYv1MbwSNuqE5D+ByIcf\\/wyRq7ytKieNbn4XIydn1v6ww8+PU0+pVe0BRAdAjsf6kAQ68tYlTIB9rlk\\/nLgNlyirYFP0Dh5z+aScvj9f0bZdCumrVQY5a5ac1mzOiHdvB\\/t1Z+CWccJXbcHcdsOS\\/qFZQXopHP7jTVvnBsf5d1XjjAxdK7k+rsvH2F45L5VzwG6Qnb67mnj4g9nqtZPnUzSechPoM\\/N9NspZk7Xdgf990Vwt9Ufq5XHgI\\/07mu6+ABSm++kbfB7hbJ35gQ3HHmARPfHyck3YIo27OlJ\\/CMvlNynLZMtN4K0ex\\/eP\\/87sk\\/+E9qJ1ysbeGU8v\\/8NAIRAEMHRmMVctu\\/V3hjq7OKjv\\/prvP3icwy+cbRwfUZx07lGb9V1W4Cpk0lSV6rEoCZceHaG3V\\/sZOiZ2q63bZeXjoP+hvotd8G9ruqxmNWkIwdIdt6JPP5S4ZpDGaH9\\/D8ue19+mWy5UQSfH1zu6nU2ETFikbsvY82TOnvu+iRuOVAoJ\\/Jh2n1r26UhiAIDvxKtObrUaJZT375S0\\/XaZRsDDzb25eimgWosPc8jSpZONq\\/E6MFHSXbe2dA9VlnAjWTNAhQEkbYtfYVyXAvR5m0sq6qGr8tJ9zLJQ3Zeq1k38GAUu68x15nUSq2fz8JplnowJTdXPvpthg\\/\\/PfN996MGtqPb\\/RiiA93uJxPajV6WHWvu5uxQWU9quuD5iTFmR4dRlSS6pmGTHLj9AfxtEYKdXdiKvqCrs+SwYAGjwVy1RzZM3z1hZs6kUGdri62czkN+2m70NtxXufuVbesrwKukowdJRw9Wret\\/\\/hPY8kkADJsbw+5bz6E1hQoBXnrrGO8dfbFqlnsV0SYR3dpPz579dO3cjaokC3VxLURfjzXzRKJdpP+BKGe\\/O1ZXe3e7nW2fXl0AmtRLfzSyhfN8ViGpS4mZlfHfRlIiwOP\\/+QOG3z6x4k2GrjExdI6JoXO4fH5ymQWXG9dCBKQ55PaVVx3qJbzDQ2Sfj+lTK4hahJ0PbUK0ry6qKHfBVq50WIFNnSnZMfPzEP9BUQw4+MbRusRXjppKYOgLLjKRD+O3zxLevMW6EbIwnSK5lxdW791h5C2rnyC91i2gPT1eUrZsEnqDkWBhWe2dl49UVHoCITr6d+L2+dG0HKnYDImZSZIz00DlpGVcCxGRszg9jcdgyw7SLeIISGiZ2rFl+561xUPXugX0Tr1ZUl5uy9b1hAQwMXQOPV\\/65Q4cuoPdv3gPQpWNkdm0wvjge1w8+TpzY0uHaBL5MAe6a8eOq+XSj2OkJ5ZPbIaemWLvb3avuo+NSkLEXJytP\\/kc81sfIN77qao7YRzJDwgP\\/kvJNTW0a13G12wkgNjo5ZKLbn+QPR\\/7ZM2bnB4vfXsP0Lf3AD\\/+28dQ5meBBQs4sNNa1xW\\/mOHKSyuLOn5RZfz1OJ23BlZsW42NcsH2zBQOZZTo2e8QPfsd8u4O1OBOcnIvpiDiSF3GN34U0Vgan+YIkuq4bV3G12wkgEzZOYB6Yzgtn0OZX9rJcW\\/03whv\\/rJlg9NUg3NPTFbz9lW5+FyMtpu8JZsV6iW1QS64fH3XnpnAnpmA8Ro3AJO3\\/B6ITRhfjc2mplb\\/NFijLHxTZTP++Tr3hs2NXaFYHYIgEuy0LgMeemaa7Fz9H15XDYb+fYZdn+9YuXEZ5RbQu04uWHeEyHm31HUe2BAdTO59hETPLzVlLEKt2D2toF8awra1v3p9EYZhkEgqxJOpwmuyrJxIpIgnFRLJ1IIAvcHSfXjTwxeJXRmmrbt32c6K4z8Af3RTyQT1Wpg+nWLqZHLlhmXMnE4R+5BC267GEqGKJGSdBKiGb+LCvc\\/hnH8fz\\/QxXPPv4UgOY89MImppTNFO3tOBEr2VuW0PojUx+ai13qshMPYX3yQZipJQMqi3303KFySRTBFPLAjpqsDSGRW\\/7CUg+wqvsuwl6Jfp6epYuO73EZC9+GXfggC7duzm\\/M9eKnRomgZH\\/\\/W77Dp8NzccOIRkrx4PlceO4a7lBVsv2bjG4FO1T2htOiCjqQaxs9VPhA0+PUVwW++KW\\/iLqUhCpPWdhskGB8gGB9avv1yORFIpslYp4pNpYrYoSWwkBBtJbCQFiTwCsqnjn9eQceB\\/623CBw7SHg6xra8bv+wrCM7nbWwXlAQQ2ryFzQM3Mfb+O4UKXctz5qcv8O7RF+nYtoP2nq2EOrsJRDuQFrfjlFtAq+b\\/zj85iZYxqtbZZRvb7mtHUw3mzqcx8pUBYi6uc+lHMfrvr3+ttDIJubamYeoho2YXrZGy6OZSiyJbeh9PLLwC+GVvkbXy4fd72dwRwTs+jN\\/QkdGRTQ03Zd9FKo7vU39oyZgL0fqHfvmzpL8\\/x\\/xE6bKXns8xeu4Mo+fOFK45vT6cHi+ZsgPLVghw9Og884O1Y9Dtn40guW1IbhtbPhZi+L9mq7Ybey1OdL+Mv6e+yek\\/veHDJLQcSS1PSs\\/jWId9gPWgpDOLcdOSpSqxWgUXqGCXbIvWyLvo5hasUk9355JL9C+8Oh3VLbxxaC+Zx\\/4YM77MylPOmrV+AKH4H9Vo+Rxvv\\/g8l06+Qd2p5yKSw8l9j3xjTYNRJnKc\\/KsRTK1635FbfNz48FKCYWgmxx+\\/jBqr3EoP4O10sP9rtQ8ybRRLVqnUOpVarYU6l8u5GDcVWaoiqxXwewuikyRrTtka83Pknvoe2qk3wSizfk4nzgcexn77XZb0JVT7T0mJ6UkunPhfrrx7urDOuxKR3m0cfvhLqx6IqZuc\\/PYIylj1X5fkFfmFR3ortlnNnk8vu1mh794wPXdZd3a2GtUyv0Si6H1KKcn8\\/PKSaIrjp2KrdbWNzeJzuI1gqir68EVY3Gwi+AOIPVubvyPaH9nEvnvuZ9899zM3Psrs6DDxqQkSM5OkZmfIKgrlFjLctTb3e+XofE3xAWz\\/TKTqHr\\/wDg9tu701E5Lh\\/54jul\\/GFWosptM0bclClWV65XFVtczP7\\/cRDMr0bunE7\\/OWZH7XC4LLhbSjuSsuK9rsUGcXobK5PUPXSMfnySopcmqGfFZdc\\/xn6iaCJFS6XxG6bgsSuaX29vj++yMkL6vkEpU7pE3NZOaMQvfhYCHziyeqzVEVu0SFfF5bslD+JUsVbQ\\/Rv3VtmV+LJaq64I3CNExySR09Z2DqC4f+nQFp2S1WmYxKPKkwP5dk4sIcc7EkSUUhqaZRsgppLYOiZUoyv6uB+NU5qkI8VeQa3W7rjh62qM2qo9ZXfncIySVic4lIbnHxvQ1psWxziXXVFyOIAs6AREpJL8RNcwrxyytkfnapIJyrogpEvGyRI3Vnfi02jjVZQE010FUDLWMsvtfRFsu6apTUJ1IKSSVFMpMmlVFI5TIo+TRZUUUVVDKoZIwMip7BZXPidbjxubzIbg+yd8kyBQIywZCPUJtMqM2Py3f9zde1WGJdXPAXfvvrNTM\\/n9uLz+HBY3fjsXnw2FwYWbOqiGuJ3GpL3GL9uKZiwNXSiCWuVX\\/4WysvtLewnv8DWVTwzOl2Q+cAAAAASUVORK5CYII=\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        }
                    ]
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
                "line": 50,
                "function": "extractEndpointsInfoAndWriteToDisk",
                "class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
                "type": "->",
                "args": [
                    {},
                    true
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Commands\\GenerateDocumentation.php",
                "line": 55,
                "function": "get",
                "class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
                "type": "->",
                "args": []
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
                "line": 36,
                "function": "handle",
                "class": "Knuckles\\Scribe\\Commands\\GenerateDocumentation",
                "type": "->",
                "args": [
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Util.php",
                "line": 43,
                "function": "Illuminate\\Container\\{closure}",
                "class": "Illuminate\\Container\\BoundMethod",
                "type": "::",
                "args": []
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
                "line": 96,
                "function": "unwrapIfClosure",
                "class": "Illuminate\\Container\\Util",
                "type": "::",
                "args": [
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
                "line": 35,
                "function": "callBoundMethod",
                "class": "Illuminate\\Container\\BoundMethod",
                "type": "::",
                "args": [
                    {
                        "contextual": [],
                        "contextualAttributes": []
                    },
                    [
                        {},
                        "handle"
                    ],
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Container.php",
                "line": 754,
                "function": "call",
                "class": "Illuminate\\Container\\BoundMethod",
                "type": "::",
                "args": [
                    {
                        "contextual": [],
                        "contextualAttributes": []
                    },
                    [
                        {},
                        "handle"
                    ],
                    [],
                    null
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
                "line": 211,
                "function": "call",
                "class": "Illuminate\\Container\\Container",
                "type": "->",
                "args": [
                    [
                        {},
                        "handle"
                    ]
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\symfony\\console\\Command\\Command.php",
                "line": 318,
                "function": "execute",
                "class": "Illuminate\\Console\\Command",
                "type": "->",
                "args": [
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
                "line": 180,
                "function": "run",
                "class": "Symfony\\Component\\Console\\Command\\Command",
                "type": "->",
                "args": [
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\symfony\\console\\Application.php",
                "line": 1074,
                "function": "run",
                "class": "Illuminate\\Console\\Command",
                "type": "->",
                "args": [
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\symfony\\console\\Application.php",
                "line": 341,
                "function": "doRunCommand",
                "class": "Symfony\\Component\\Console\\Application",
                "type": "->",
                "args": [
                    {},
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\symfony\\console\\Application.php",
                "line": 192,
                "function": "doRun",
                "class": "Symfony\\Component\\Console\\Application",
                "type": "->",
                "args": [
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Console\\Kernel.php",
                "line": 197,
                "function": "run",
                "class": "Symfony\\Component\\Console\\Application",
                "type": "->",
                "args": [
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Application.php",
                "line": 1234,
                "function": "handle",
                "class": "Illuminate\\Foundation\\Console\\Kernel",
                "type": "->",
                "args": [
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\artisan",
                "line": 13,
                "function": "handleCommand",
                "class": "Illuminate\\Foundation\\Application",
                "type": "->",
                "args": [
                    {}
                ]
            }
        ]
    }
}
 

Request      

GET api/ecosystem/startups

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

GET api/ecosystem/startups/{id}

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/startups/597076" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/597076"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/597076';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/597076'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (404):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Startup not found.",
    "result": null
}
 

Request      

GET api/ecosystem/startups/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the startup. Example: 597076

POST api/ecosystem/startups

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"country_code\": \"qv\",
    \"name\": \"twpfdrwajm\",
    \"tagline\": \"slzgmghubtplhse\",
    \"description\": \"Totam omnis amet sint cumque.\",
    \"sector\": \"vtps\",
    \"stage\": \"series_b\",
    \"website\": \"vwhdtukzjybjfkchr\",
    \"founded_year\": 8,
    \"team_size\": 20,
    \"revenue_monthly\": 28,
    \"currency_code\": \"ugs\",
    \"fundraising_target\": 11
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "country_code": "qv",
    "name": "twpfdrwajm",
    "tagline": "slzgmghubtplhse",
    "description": "Totam omnis amet sint cumque.",
    "sector": "vtps",
    "stage": "series_b",
    "website": "vwhdtukzjybjfkchr",
    "founded_year": 8,
    "team_size": 20,
    "revenue_monthly": 28,
    "currency_code": "ugs",
    "fundraising_target": 11
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'country_code' => 'qv',
            'name' => 'twpfdrwajm',
            'tagline' => 'slzgmghubtplhse',
            'description' => 'Totam omnis amet sint cumque.',
            'sector' => 'vtps',
            'stage' => 'series_b',
            'website' => 'vwhdtukzjybjfkchr',
            'founded_year' => 8,
            'team_size' => 20,
            'revenue_monthly' => 28,
            'currency_code' => 'ugs',
            'fundraising_target' => 11,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups'
payload = {
    "country_code": "qv",
    "name": "twpfdrwajm",
    "tagline": "slzgmghubtplhse",
    "description": "Totam omnis amet sint cumque.",
    "sector": "vtps",
    "stage": "series_b",
    "website": "vwhdtukzjybjfkchr",
    "founded_year": 8,
    "team_size": 20,
    "revenue_monthly": 28,
    "currency_code": "ugs",
    "fundraising_target": 11
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/startups

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

country_code   string  optional  

Must be 2 characters. Example: qv

name   string   

Must not be greater than 191 characters. Example: twpfdrwajm

tagline   string  optional  

Must not be greater than 255 characters. Example: slzgmghubtplhse

description   string  optional  

Must not be greater than 50000 characters. Example: Totam omnis amet sint cumque.

sector   string  optional  

Must not be greater than 100 characters. Example: vtps

stage   string  optional  

Example: series_b

Must be one of:
  • idea
  • pre_seed
  • seed
  • series_a
  • series_b
  • series_c
  • growth
website   string  optional  

Must be a valid URL. Must not be greater than 255 characters. Example: vwhdtukzjybjfkchr

founded_year   integer  optional  

Must be at least 1900. Must not be greater than 2027. Example: 8

team_size   integer  optional  

Must be at least 1. Must not be greater than 10000. Example: 20

revenue_monthly   number  optional  

Must be at least 0. Example: 28

currency_code   string  optional  

Must be 3 characters. Example: ugs

Must be one of:
  • SAR
  • AED
  • USD
  • EUR
  • GBP
  • KWD
  • BHD
  • OMR
  • QAR
fundraising_target   number  optional  

Must be at least 0. Example: 11

PUT api/ecosystem/startups/{id}

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/ecosystem/startups/8" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"country_code\": \"kz\",
    \"name\": \"qpfohhvepuvq\",
    \"tagline\": \"ybxuajgkzqswdfrbdxebgxiox\",
    \"description\": \"Aut assumenda illo explicabo quas iste consequuntur.\",
    \"sector\": \"snqg\",
    \"stage\": \"pre_seed\",
    \"website\": \"okwuzgyxgskwmoylamjglode\",
    \"founded_year\": 21,
    \"team_size\": 15,
    \"revenue_monthly\": 46,
    \"currency_code\": \"zwf\",
    \"fundraising_target\": 54,
    \"post_id\": 18
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/8"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "country_code": "kz",
    "name": "qpfohhvepuvq",
    "tagline": "ybxuajgkzqswdfrbdxebgxiox",
    "description": "Aut assumenda illo explicabo quas iste consequuntur.",
    "sector": "snqg",
    "stage": "pre_seed",
    "website": "okwuzgyxgskwmoylamjglode",
    "founded_year": 21,
    "team_size": 15,
    "revenue_monthly": 46,
    "currency_code": "zwf",
    "fundraising_target": 54,
    "post_id": 18
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/8';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'country_code' => 'kz',
            'name' => 'qpfohhvepuvq',
            'tagline' => 'ybxuajgkzqswdfrbdxebgxiox',
            'description' => 'Aut assumenda illo explicabo quas iste consequuntur.',
            'sector' => 'snqg',
            'stage' => 'pre_seed',
            'website' => 'okwuzgyxgskwmoylamjglode',
            'founded_year' => 21,
            'team_size' => 15,
            'revenue_monthly' => 46,
            'currency_code' => 'zwf',
            'fundraising_target' => 54,
            'post_id' => 18,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/8'
payload = {
    "country_code": "kz",
    "name": "qpfohhvepuvq",
    "tagline": "ybxuajgkzqswdfrbdxebgxiox",
    "description": "Aut assumenda illo explicabo quas iste consequuntur.",
    "sector": "snqg",
    "stage": "pre_seed",
    "website": "okwuzgyxgskwmoylamjglode",
    "founded_year": 21,
    "team_size": 15,
    "revenue_monthly": 46,
    "currency_code": "zwf",
    "fundraising_target": 54,
    "post_id": 18
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Request      

PUT api/ecosystem/startups/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the startup. Example: 8

Body Parameters

country_code   string  optional  

Must be 2 characters. Example: kz

name   string  optional  

Must not be greater than 191 characters. Example: qpfohhvepuvq

tagline   string  optional  

Must not be greater than 255 characters. Example: ybxuajgkzqswdfrbdxebgxiox

description   string  optional  

Must not be greater than 50000 characters. Example: Aut assumenda illo explicabo quas iste consequuntur.

sector   string  optional  

Must not be greater than 100 characters. Example: snqg

stage   string  optional  

Example: pre_seed

Must be one of:
  • idea
  • pre_seed
  • seed
  • series_a
  • series_b
  • series_c
  • growth
website   string  optional  

Must be a valid URL. Must not be greater than 255 characters. Example: okwuzgyxgskwmoylamjglode

founded_year   integer  optional  

Must be at least 1900. Must not be greater than 2027. Example: 21

team_size   integer  optional  

Must be at least 1. Must not be greater than 10000. Example: 15

revenue_monthly   number  optional  

Must be at least 0. Example: 46

currency_code   string  optional  

Must be 3 characters. Example: zwf

fundraising_target   number  optional  

Must be at least 0. Example: 54

post_id   integer  optional  

The id of an existing record in the posts table. Example: 18

DELETE api/ecosystem/startups/{id}

Example request:
curl --request DELETE \
    "http://127.0.0.1:8000/api/ecosystem/startups/4" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/4"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/4';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/4'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('DELETE', url, headers=headers)
response.json()

Request      

DELETE api/ecosystem/startups/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the startup. Example: 4

POST api/ecosystem/startups/{id}/accept-publish-terms

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/389/accept-publish-terms" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"accept_terms\": true
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/389/accept-publish-terms"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "accept_terms": true
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/389/accept-publish-terms';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'accept_terms' => true,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/389/accept-publish-terms'
payload = {
    "accept_terms": true
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/startups/{id}/accept-publish-terms

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the startup. Example: 389

Body Parameters

accept_terms   boolean   

Must be accepted. Example: true

POST api/ecosystem/startups/{id}/prepare-listing-fee

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/9147/prepare-listing-fee" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/9147/prepare-listing-fee"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/9147/prepare-listing-fee';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/9147/prepare-listing-fee'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/startups/{id}/prepare-listing-fee

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the startup. Example: 9147

POST api/ecosystem/startups/{id}/confirm-listing-fee

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/03/confirm-listing-fee" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/03/confirm-listing-fee"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/03/confirm-listing-fee';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/03/confirm-listing-fee'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/startups/{id}/confirm-listing-fee

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the startup. Example: 03

POST api/ecosystem/startups/{id}/submit-review

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/93172/submit-review" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/93172/submit-review"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/93172/submit-review';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/93172/submit-review'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/startups/{id}/submit-review

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the startup. Example: 93172

GET api/ecosystem/startups/{id}/kpi

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/startups/20/kpi" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/20/kpi"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/20/kpi';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/20/kpi'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/startups/{id}/kpi

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the startup. Example: 20

GET api/ecosystem/startups/{startupId}/team

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/startups/09733/team" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/09733/team"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/09733/team';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/09733/team'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/startups/{startupId}/team

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 09733

POST api/ecosystem/startups/{startupId}/team

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/0/team" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"name\": \"vyqdhevevdttydbbq\",
    \"role_title\": \"uatgnawlmtultqsc\",
    \"email\": \"gislason.zander@example.net\",
    \"linkedin_url\": \"http:\\/\\/champlin.com\\/\",
    \"is_founder\": true,
    \"sort_order\": 3,
    \"user_id\": 8
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/0/team"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "name": "vyqdhevevdttydbbq",
    "role_title": "uatgnawlmtultqsc",
    "email": "gislason.zander@example.net",
    "linkedin_url": "http:\/\/champlin.com\/",
    "is_founder": true,
    "sort_order": 3,
    "user_id": 8
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/0/team';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'name' => 'vyqdhevevdttydbbq',
            'role_title' => 'uatgnawlmtultqsc',
            'email' => 'gislason.zander@example.net',
            'linkedin_url' => 'http://champlin.com/',
            'is_founder' => true,
            'sort_order' => 3,
            'user_id' => 8,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/0/team'
payload = {
    "name": "vyqdhevevdttydbbq",
    "role_title": "uatgnawlmtultqsc",
    "email": "gislason.zander@example.net",
    "linkedin_url": "http:\/\/champlin.com\/",
    "is_founder": true,
    "sort_order": 3,
    "user_id": 8
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/startups/{startupId}/team

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 0

Body Parameters

name   string   

Must not be greater than 191 characters. Example: vyqdhevevdttydbbq

role_title   string  optional  

Must not be greater than 100 characters. Example: uatgnawlmtultqsc

email   string  optional  

Must be a valid email address. Must not be greater than 191 characters. Example: gislason.zander@example.net

linkedin_url   string  optional  

Must be a valid URL. Must not be greater than 255 characters. Example: http://champlin.com/

is_founder   boolean  optional  

Example: true

sort_order   integer  optional  

Must be at least 0. Example: 3

user_id   integer  optional  

The id of an existing record in the users table. Example: 8

PUT api/ecosystem/startups/{startupId}/team/{memberId}

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/ecosystem/startups/13/team/84" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"name\": \"mrgzbihihfbopamkl\",
    \"role_title\": \"zux\",
    \"email\": \"weimann.cecile@example.org\",
    \"linkedin_url\": \"http:\\/\\/will.org\\/voluptatem-qui-recusandae-ipsum-voluptatem-repellat\",
    \"is_founder\": false,
    \"sort_order\": 84,
    \"user_id\": 20
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/13/team/84"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "name": "mrgzbihihfbopamkl",
    "role_title": "zux",
    "email": "weimann.cecile@example.org",
    "linkedin_url": "http:\/\/will.org\/voluptatem-qui-recusandae-ipsum-voluptatem-repellat",
    "is_founder": false,
    "sort_order": 84,
    "user_id": 20
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/13/team/84';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'name' => 'mrgzbihihfbopamkl',
            'role_title' => 'zux',
            'email' => 'weimann.cecile@example.org',
            'linkedin_url' => 'http://will.org/voluptatem-qui-recusandae-ipsum-voluptatem-repellat',
            'is_founder' => false,
            'sort_order' => 84,
            'user_id' => 20,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/13/team/84'
payload = {
    "name": "mrgzbihihfbopamkl",
    "role_title": "zux",
    "email": "weimann.cecile@example.org",
    "linkedin_url": "http:\/\/will.org\/voluptatem-qui-recusandae-ipsum-voluptatem-repellat",
    "is_founder": false,
    "sort_order": 84,
    "user_id": 20
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Request      

PUT api/ecosystem/startups/{startupId}/team/{memberId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 13

memberId   string   

Example: 84

Body Parameters

name   string   

Must not be greater than 191 characters. Example: mrgzbihihfbopamkl

role_title   string  optional  

Must not be greater than 100 characters. Example: zux

email   string  optional  

Must be a valid email address. Must not be greater than 191 characters. Example: weimann.cecile@example.org

linkedin_url   string  optional  

Must be a valid URL. Must not be greater than 255 characters. Example: http://will.org/voluptatem-qui-recusandae-ipsum-voluptatem-repellat

is_founder   boolean  optional  

Example: false

sort_order   integer  optional  

Must be at least 0. Example: 84

user_id   integer  optional  

The id of an existing record in the users table. Example: 20

DELETE api/ecosystem/startups/{startupId}/team/{memberId}

Example request:
curl --request DELETE \
    "http://127.0.0.1:8000/api/ecosystem/startups/44406/team/9" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/44406/team/9"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/44406/team/9';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/44406/team/9'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('DELETE', url, headers=headers)
response.json()

Request      

DELETE api/ecosystem/startups/{startupId}/team/{memberId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 44406

memberId   string   

Example: 9

GET api/ecosystem/startups/{startupId}/milestones

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/startups/8/milestones" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/8/milestones"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/8/milestones';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/8/milestones'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/startups/{startupId}/milestones

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 8

POST api/ecosystem/startups/{startupId}/milestones

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/7/milestones" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"title\": \"dpmoqojxhnzreikmwcasdw\",
    \"description\": \"Sapiente sequi est vitae inventore ipsa nobis alias.\",
    \"achieved_at\": \"2026-05-21T23:11:35\",
    \"sort_order\": 31
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/7/milestones"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "title": "dpmoqojxhnzreikmwcasdw",
    "description": "Sapiente sequi est vitae inventore ipsa nobis alias.",
    "achieved_at": "2026-05-21T23:11:35",
    "sort_order": 31
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/7/milestones';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'title' => 'dpmoqojxhnzreikmwcasdw',
            'description' => 'Sapiente sequi est vitae inventore ipsa nobis alias.',
            'achieved_at' => '2026-05-21T23:11:35',
            'sort_order' => 31,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/7/milestones'
payload = {
    "title": "dpmoqojxhnzreikmwcasdw",
    "description": "Sapiente sequi est vitae inventore ipsa nobis alias.",
    "achieved_at": "2026-05-21T23:11:35",
    "sort_order": 31
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/startups/{startupId}/milestones

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 7

Body Parameters

title   string   

Must not be greater than 191 characters. Example: dpmoqojxhnzreikmwcasdw

description   string  optional  

Must not be greater than 5000 characters. Example: Sapiente sequi est vitae inventore ipsa nobis alias.

achieved_at   string  optional  

Must be a valid date. Example: 2026-05-21T23:11:35

sort_order   integer  optional  

Must be at least 0. Example: 31

PUT api/ecosystem/startups/{startupId}/milestones/{milestoneId}

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/ecosystem/startups/881/milestones/140" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"title\": \"ccgkrlkrh\",
    \"description\": \"Laborum repudiandae sapiente ipsa sit enim ipsam incidunt autem.\",
    \"achieved_at\": \"2026-05-21T23:11:35\",
    \"sort_order\": 27
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/881/milestones/140"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "title": "ccgkrlkrh",
    "description": "Laborum repudiandae sapiente ipsa sit enim ipsam incidunt autem.",
    "achieved_at": "2026-05-21T23:11:35",
    "sort_order": 27
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/881/milestones/140';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'title' => 'ccgkrlkrh',
            'description' => 'Laborum repudiandae sapiente ipsa sit enim ipsam incidunt autem.',
            'achieved_at' => '2026-05-21T23:11:35',
            'sort_order' => 27,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/881/milestones/140'
payload = {
    "title": "ccgkrlkrh",
    "description": "Laborum repudiandae sapiente ipsa sit enim ipsam incidunt autem.",
    "achieved_at": "2026-05-21T23:11:35",
    "sort_order": 27
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Request      

PUT api/ecosystem/startups/{startupId}/milestones/{milestoneId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 881

milestoneId   string   

Example: 140

Body Parameters

title   string   

Must not be greater than 191 characters. Example: ccgkrlkrh

description   string  optional  

Must not be greater than 5000 characters. Example: Laborum repudiandae sapiente ipsa sit enim ipsam incidunt autem.

achieved_at   string  optional  

Must be a valid date. Example: 2026-05-21T23:11:35

sort_order   integer  optional  

Must be at least 0. Example: 27

DELETE api/ecosystem/startups/{startupId}/milestones/{milestoneId}

Example request:
curl --request DELETE \
    "http://127.0.0.1:8000/api/ecosystem/startups/18163/milestones/5" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/18163/milestones/5"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/18163/milestones/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/18163/milestones/5'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('DELETE', url, headers=headers)
response.json()

Request      

DELETE api/ecosystem/startups/{startupId}/milestones/{milestoneId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 18163

milestoneId   string   

Example: 5

GET api/ecosystem/startups/{startupId}/media

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/startups/032761/media" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/032761/media"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/032761/media';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/032761/media'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/startups/{startupId}/media

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 032761

POST api/ecosystem/startups/{startupId}/media

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/500/media" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --form "type=video"\
    --form "title=jeclwkon"\
    --form "sort_order=89"\
    --form "file=@C:\Users\Micros\AppData\Local\Temp\phpDD57.tmp" 
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/500/media"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

const body = new FormData();
body.append('type', 'video');
body.append('title', 'jeclwkon');
body.append('sort_order', '89');
body.append('file', document.querySelector('input[name="file"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/500/media';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'multipart/form-data',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'multipart' => [
            [
                'name' => 'type',
                'contents' => 'video'
            ],
            [
                'name' => 'title',
                'contents' => 'jeclwkon'
            ],
            [
                'name' => 'sort_order',
                'contents' => '89'
            ],
            [
                'name' => 'file',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\phpDD57.tmp', 'r')
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/500/media'
files = {
  'type': (None, 'video'),
  'title': (None, 'jeclwkon'),
  'sort_order': (None, '89'),
  'file': open('C:\Users\Micros\AppData\Local\Temp\phpDD57.tmp', 'rb')}
payload = {
    "type": "video",
    "title": "jeclwkon",
    "sort_order": 89
}
headers = {
  'Content-Type': 'multipart/form-data',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, files=files)
response.json()

Request      

POST api/ecosystem/startups/{startupId}/media

Headers

Content-Type      

Example: multipart/form-data

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 500

Body Parameters

file   file   

Must be a file. Must not be greater than 10240 kilobytes. Example: C:\Users\Micros\AppData\Local\Temp\phpDD57.tmp

type   string  optional  

Example: video

Must be one of:
  • image
  • document
  • video
title   string  optional  

Must not be greater than 191 characters. Example: jeclwkon

sort_order   integer  optional  

Must be at least 0. Example: 89

DELETE api/ecosystem/startups/{startupId}/media/{mediaId}

Example request:
curl --request DELETE \
    "http://127.0.0.1:8000/api/ecosystem/startups/97572622/media/307005" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/97572622/media/307005"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/97572622/media/307005';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/97572622/media/307005'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('DELETE', url, headers=headers)
response.json()

Request      

DELETE api/ecosystem/startups/{startupId}/media/{mediaId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 97572622

mediaId   string   

Example: 307005

POST api/ecosystem/startups/{startupId}/pitch-deck

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/7/pitch-deck" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --form "pitch_deck=@C:\Users\Micros\AppData\Local\Temp\phpDE07.tmp" 
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/7/pitch-deck"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

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

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/7/pitch-deck';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'multipart/form-data',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'multipart' => [
            [
                'name' => 'pitch_deck',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\phpDE07.tmp', 'r')
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/7/pitch-deck'
files = {
  'pitch_deck': open('C:\Users\Micros\AppData\Local\Temp\phpDE07.tmp', 'rb')}
headers = {
  'Content-Type': 'multipart/form-data',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, files=files)
response.json()

Request      

POST api/ecosystem/startups/{startupId}/pitch-deck

Headers

Content-Type      

Example: multipart/form-data

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 7

Body Parameters

pitch_deck   file   

Must be a file. Must not be greater than 20480 kilobytes. Example: C:\Users\Micros\AppData\Local\Temp\phpDE07.tmp

GET api/ecosystem/startups/{startupId}/rounds

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/startups/1/rounds" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/1/rounds"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/1/rounds';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/1/rounds'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/startups/{startupId}/rounds

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 1

GET api/ecosystem/startups/{startupId}/rounds/{roundId}

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/startups/2/rounds/0323" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/2/rounds/0323"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/2/rounds/0323';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/2/rounds/0323'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/startups/{startupId}/rounds/{roundId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 2

roundId   string   

Example: 0323

POST api/ecosystem/startups/{startupId}/rounds

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/42/rounds" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"title\": \"jwryuevkygaetkos\",
    \"description\": \"Sit ipsa repellat veritatis pariatur.\",
    \"stage\": \"series_b\",
    \"instrument\": \"equity\",
    \"target_amount\": 14,
    \"minimum_investment\": 20,
    \"maximum_investment\": 2,
    \"pre_money_valuation\": 55,
    \"safe_valuation_cap\": 47,
    \"safe_discount_percent\": 12,
    \"currency_code\": \"atr\",
    \"closes_at\": \"2026-05-21T23:11:37\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/42/rounds"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "title": "jwryuevkygaetkos",
    "description": "Sit ipsa repellat veritatis pariatur.",
    "stage": "series_b",
    "instrument": "equity",
    "target_amount": 14,
    "minimum_investment": 20,
    "maximum_investment": 2,
    "pre_money_valuation": 55,
    "safe_valuation_cap": 47,
    "safe_discount_percent": 12,
    "currency_code": "atr",
    "closes_at": "2026-05-21T23:11:37"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/42/rounds';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'title' => 'jwryuevkygaetkos',
            'description' => 'Sit ipsa repellat veritatis pariatur.',
            'stage' => 'series_b',
            'instrument' => 'equity',
            'target_amount' => 14,
            'minimum_investment' => 20,
            'maximum_investment' => 2,
            'pre_money_valuation' => 55,
            'safe_valuation_cap' => 47,
            'safe_discount_percent' => 12,
            'currency_code' => 'atr',
            'closes_at' => '2026-05-21T23:11:37',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/42/rounds'
payload = {
    "title": "jwryuevkygaetkos",
    "description": "Sit ipsa repellat veritatis pariatur.",
    "stage": "series_b",
    "instrument": "equity",
    "target_amount": 14,
    "minimum_investment": 20,
    "maximum_investment": 2,
    "pre_money_valuation": 55,
    "safe_valuation_cap": 47,
    "safe_discount_percent": 12,
    "currency_code": "atr",
    "closes_at": "2026-05-21T23:11:37"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/startups/{startupId}/rounds

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 42

Body Parameters

title   string   

Must not be greater than 191 characters. Example: jwryuevkygaetkos

description   string  optional  

Must not be greater than 20000 characters. Example: Sit ipsa repellat veritatis pariatur.

stage   string   

Example: series_b

Must be one of:
  • idea
  • pre_seed
  • seed
  • series_a
  • series_b
  • series_c
  • growth
instrument   string   

Example: equity

Must be one of:
  • equity
  • safe
  • convertible_note
target_amount   number   

Must be at least 1. Example: 14

minimum_investment   number  optional  

Must be at least 0. Example: 20

maximum_investment   number  optional  

Must be at least 0. Example: 2

pre_money_valuation   number  optional  

Must be at least 0. Example: 55

safe_valuation_cap   number  optional  

Must be at least 0. Example: 47

safe_discount_percent   number  optional  

Must be at least 0. Must not be greater than 100. Example: 12

currency_code   string  optional  

Must be 3 characters. Example: atr

closes_at   string  optional  

Must be a valid date. Example: 2026-05-21T23:11:37

PUT api/ecosystem/startups/{startupId}/rounds/{roundId}

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/ecosystem/startups/67/rounds/047368" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"title\": \"j\",
    \"description\": \"Esse et non at omnis.\",
    \"stage\": \"idea\",
    \"instrument\": \"convertible_note\",
    \"target_amount\": 83,
    \"minimum_investment\": 26,
    \"maximum_investment\": 44,
    \"pre_money_valuation\": 44,
    \"safe_valuation_cap\": 67,
    \"safe_discount_percent\": 15,
    \"currency_code\": \"shg\",
    \"closes_at\": \"2026-05-21T23:11:37\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/67/rounds/047368"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "title": "j",
    "description": "Esse et non at omnis.",
    "stage": "idea",
    "instrument": "convertible_note",
    "target_amount": 83,
    "minimum_investment": 26,
    "maximum_investment": 44,
    "pre_money_valuation": 44,
    "safe_valuation_cap": 67,
    "safe_discount_percent": 15,
    "currency_code": "shg",
    "closes_at": "2026-05-21T23:11:37"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/67/rounds/047368';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'title' => 'j',
            'description' => 'Esse et non at omnis.',
            'stage' => 'idea',
            'instrument' => 'convertible_note',
            'target_amount' => 83,
            'minimum_investment' => 26,
            'maximum_investment' => 44,
            'pre_money_valuation' => 44,
            'safe_valuation_cap' => 67,
            'safe_discount_percent' => 15,
            'currency_code' => 'shg',
            'closes_at' => '2026-05-21T23:11:37',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/67/rounds/047368'
payload = {
    "title": "j",
    "description": "Esse et non at omnis.",
    "stage": "idea",
    "instrument": "convertible_note",
    "target_amount": 83,
    "minimum_investment": 26,
    "maximum_investment": 44,
    "pre_money_valuation": 44,
    "safe_valuation_cap": 67,
    "safe_discount_percent": 15,
    "currency_code": "shg",
    "closes_at": "2026-05-21T23:11:37"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Request      

PUT api/ecosystem/startups/{startupId}/rounds/{roundId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 67

roundId   string   

Example: 047368

Body Parameters

title   string   

Must not be greater than 191 characters. Example: j

description   string  optional  

Must not be greater than 20000 characters. Example: Esse et non at omnis.

stage   string   

Example: idea

Must be one of:
  • idea
  • pre_seed
  • seed
  • series_a
  • series_b
  • series_c
  • growth
instrument   string   

Example: convertible_note

Must be one of:
  • equity
  • safe
  • convertible_note
target_amount   number   

Must be at least 1. Example: 83

minimum_investment   number  optional  

Must be at least 0. Example: 26

maximum_investment   number  optional  

Must be at least 0. Example: 44

pre_money_valuation   number  optional  

Must be at least 0. Example: 44

safe_valuation_cap   number  optional  

Must be at least 0. Example: 67

safe_discount_percent   number  optional  

Must be at least 0. Must not be greater than 100. Example: 15

currency_code   string  optional  

Must be 3 characters. Example: shg

closes_at   string  optional  

Must be a valid date. Example: 2026-05-21T23:11:37

POST api/ecosystem/startups/{startupId}/rounds/{roundId}/open

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/02401/rounds/1/open" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/02401/rounds/1/open"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/02401/rounds/1/open';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/02401/rounds/1/open'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/startups/{startupId}/rounds/{roundId}/open

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 02401

roundId   string   

Example: 1

POST api/ecosystem/startups/{startupId}/rounds/{roundId}/close

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/957/rounds/8003/close" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/957/rounds/8003/close"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/957/rounds/8003/close';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/957/rounds/8003/close'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/startups/{startupId}/rounds/{roundId}/close

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 957

roundId   string   

Example: 8003

DELETE api/ecosystem/startups/{startupId}/rounds/{roundId}

Example request:
curl --request DELETE \
    "http://127.0.0.1:8000/api/ecosystem/startups/0815220/rounds/23" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/0815220/rounds/23"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/0815220/rounds/23';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/0815220/rounds/23'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('DELETE', url, headers=headers)
response.json()

Request      

DELETE api/ecosystem/startups/{startupId}/rounds/{roundId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 0815220

roundId   string   

Example: 23

POST api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/6/rounds/39/commitments" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"amount\": 63,
    \"currency_code\": \"upi\",
    \"notes\": \"xdjasdaqwxwy\",
    \"syndicate_id\": 5
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/6/rounds/39/commitments"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "amount": 63,
    "currency_code": "upi",
    "notes": "xdjasdaqwxwy",
    "syndicate_id": 5
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/6/rounds/39/commitments';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'amount' => 63,
            'currency_code' => 'upi',
            'notes' => 'xdjasdaqwxwy',
            'syndicate_id' => 5,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/6/rounds/39/commitments'
payload = {
    "amount": 63,
    "currency_code": "upi",
    "notes": "xdjasdaqwxwy",
    "syndicate_id": 5
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 6

roundId   string   

Example: 39

Body Parameters

amount   number   

Must be at least 1. Example: 63

currency_code   string  optional  

Must be 3 characters. Example: upi

notes   string  optional  

Must not be greater than 2000 characters. Example: xdjasdaqwxwy

syndicate_id   integer  optional  

Must be at least 1. Example: 5

POST api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments/{commitmentId}/confirm

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/10/rounds/465/commitments/reprehenderit/confirm" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/10/rounds/465/commitments/reprehenderit/confirm"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/10/rounds/465/commitments/reprehenderit/confirm';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/10/rounds/465/commitments/reprehenderit/confirm'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments/{commitmentId}/confirm

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 10

roundId   string   

Example: 465

commitmentId   string   

Example: reprehenderit

POST api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments/{commitmentId}/cancel

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/3/rounds/1/commitments/animi/cancel" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/3/rounds/1/commitments/animi/cancel"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/3/rounds/1/commitments/animi/cancel';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/3/rounds/1/commitments/animi/cancel'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments/{commitmentId}/cancel

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 3

roundId   string   

Example: 1

commitmentId   string   

Example: animi

GET api/ecosystem/startups/{startupId}/rounds/{roundId}/due-diligence

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/startups/7/rounds/122/due-diligence" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/7/rounds/122/due-diligence"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/7/rounds/122/due-diligence';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/7/rounds/122/due-diligence'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/startups/{startupId}/rounds/{roundId}/due-diligence

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 7

roundId   string   

Example: 122

POST api/ecosystem/startups/{startupId}/rounds/{roundId}/due-diligence/{itemId}/toggle

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/8/rounds/1/due-diligence/sit/toggle" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/8/rounds/1/due-diligence/sit/toggle"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/8/rounds/1/due-diligence/sit/toggle';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/8/rounds/1/due-diligence/sit/toggle'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/startups/{startupId}/rounds/{roundId}/due-diligence/{itemId}/toggle

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 8

roundId   string   

Example: 1

itemId   string   

Example: sit

GET api/ecosystem/startups/{startupId}/cap-table

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/startups/4/cap-table" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/4/cap-table"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/4/cap-table';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/4/cap-table'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/startups/{startupId}/cap-table

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 4

POST api/ecosystem/startups/{startupId}/cap-table

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/startups/1/cap-table" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"holder_name\": \"yxqmczcylmxhgvkicozq\",
    \"holder_type\": \"advisor\",
    \"user_id\": 12,
    \"funding_round_id\": 16,
    \"ownership_percent\": 6,
    \"shares\": 6,
    \"invested_amount\": 84,
    \"currency_code\": \"wfz\",
    \"notes\": \"scgbvjqnsrkkrbblyjie\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/1/cap-table"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "holder_name": "yxqmczcylmxhgvkicozq",
    "holder_type": "advisor",
    "user_id": 12,
    "funding_round_id": 16,
    "ownership_percent": 6,
    "shares": 6,
    "invested_amount": 84,
    "currency_code": "wfz",
    "notes": "scgbvjqnsrkkrbblyjie"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/1/cap-table';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'holder_name' => 'yxqmczcylmxhgvkicozq',
            'holder_type' => 'advisor',
            'user_id' => 12,
            'funding_round_id' => 16,
            'ownership_percent' => 6,
            'shares' => 6,
            'invested_amount' => 84,
            'currency_code' => 'wfz',
            'notes' => 'scgbvjqnsrkkrbblyjie',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/1/cap-table'
payload = {
    "holder_name": "yxqmczcylmxhgvkicozq",
    "holder_type": "advisor",
    "user_id": 12,
    "funding_round_id": 16,
    "ownership_percent": 6,
    "shares": 6,
    "invested_amount": 84,
    "currency_code": "wfz",
    "notes": "scgbvjqnsrkkrbblyjie"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/startups/{startupId}/cap-table

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 1

Body Parameters

holder_name   string   

Must not be greater than 191 characters. Example: yxqmczcylmxhgvkicozq

holder_type   string   

Example: advisor

Must be one of:
  • founder
  • investor
  • employee
  • advisor
  • other
user_id   integer  optional  

The id of an existing record in the users table. Example: 12

funding_round_id   integer  optional  

Example: 16

ownership_percent   number  optional  

Must be at least 0. Must not be greater than 100. Example: 6

shares   integer  optional  

Must be at least 0. Example: 6

invested_amount   number  optional  

Must be at least 0. Example: 84

currency_code   string  optional  

Must be 3 characters. Example: wfz

notes   string  optional  

Must not be greater than 2000 characters. Example: scgbvjqnsrkkrbblyjie

PUT api/ecosystem/startups/{startupId}/cap-table/{entryId}

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/ecosystem/startups/151/cap-table/6" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"holder_name\": \"nfo\",
    \"holder_type\": \"founder\",
    \"user_id\": 1,
    \"funding_round_id\": 15,
    \"ownership_percent\": 15,
    \"shares\": 68,
    \"invested_amount\": 10,
    \"currency_code\": \"ecu\",
    \"notes\": \"qqxgtqcyasekgwpodyerwshr\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/151/cap-table/6"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "holder_name": "nfo",
    "holder_type": "founder",
    "user_id": 1,
    "funding_round_id": 15,
    "ownership_percent": 15,
    "shares": 68,
    "invested_amount": 10,
    "currency_code": "ecu",
    "notes": "qqxgtqcyasekgwpodyerwshr"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/151/cap-table/6';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'holder_name' => 'nfo',
            'holder_type' => 'founder',
            'user_id' => 1,
            'funding_round_id' => 15,
            'ownership_percent' => 15,
            'shares' => 68,
            'invested_amount' => 10,
            'currency_code' => 'ecu',
            'notes' => 'qqxgtqcyasekgwpodyerwshr',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/151/cap-table/6'
payload = {
    "holder_name": "nfo",
    "holder_type": "founder",
    "user_id": 1,
    "funding_round_id": 15,
    "ownership_percent": 15,
    "shares": 68,
    "invested_amount": 10,
    "currency_code": "ecu",
    "notes": "qqxgtqcyasekgwpodyerwshr"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Request      

PUT api/ecosystem/startups/{startupId}/cap-table/{entryId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 151

entryId   string   

Example: 6

Body Parameters

holder_name   string   

Must not be greater than 191 characters. Example: nfo

holder_type   string   

Example: founder

Must be one of:
  • founder
  • investor
  • employee
  • advisor
  • other
user_id   integer  optional  

The id of an existing record in the users table. Example: 1

funding_round_id   integer  optional  

Example: 15

ownership_percent   number  optional  

Must be at least 0. Must not be greater than 100. Example: 15

shares   integer  optional  

Must be at least 0. Example: 68

invested_amount   number  optional  

Must be at least 0. Example: 10

currency_code   string  optional  

Must be 3 characters. Example: ecu

notes   string  optional  

Must not be greater than 2000 characters. Example: qqxgtqcyasekgwpodyerwshr

DELETE api/ecosystem/startups/{startupId}/cap-table/{entryId}

Example request:
curl --request DELETE \
    "http://127.0.0.1:8000/api/ecosystem/startups/4/cap-table/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/startups/4/cap-table/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/startups/4/cap-table/1';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/startups/4/cap-table/1'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('DELETE', url, headers=headers)
response.json()

Request      

DELETE api/ecosystem/startups/{startupId}/cap-table/{entryId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 4

entryId   string   

Example: 1

Founder

GET api/ecosystem/founder/profile

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/founder/profile" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/founder/profile"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/founder/profile';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/founder/profile'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/founder/profile

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

PUT api/ecosystem/founder/profile

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/ecosystem/founder/profile" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"headline\": \"tdeqmkgbcrpevacjgkaqm\",
    \"bio\": \"zwqznwkfktzodjivg\",
    \"linkedin_url\": \"http:\\/\\/www.kovacek.com\\/officiis-consequatur-deleniti-quis-quis-dolore-est-nesciunt\",
    \"twitter_url\": \"http:\\/\\/kunze.com\\/\",
    \"experience_years\": 13
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/founder/profile"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "headline": "tdeqmkgbcrpevacjgkaqm",
    "bio": "zwqznwkfktzodjivg",
    "linkedin_url": "http:\/\/www.kovacek.com\/officiis-consequatur-deleniti-quis-quis-dolore-est-nesciunt",
    "twitter_url": "http:\/\/kunze.com\/",
    "experience_years": 13
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/founder/profile';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'headline' => 'tdeqmkgbcrpevacjgkaqm',
            'bio' => 'zwqznwkfktzodjivg',
            'linkedin_url' => 'http://www.kovacek.com/officiis-consequatur-deleniti-quis-quis-dolore-est-nesciunt',
            'twitter_url' => 'http://kunze.com/',
            'experience_years' => 13,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/founder/profile'
payload = {
    "headline": "tdeqmkgbcrpevacjgkaqm",
    "bio": "zwqznwkfktzodjivg",
    "linkedin_url": "http:\/\/www.kovacek.com\/officiis-consequatur-deleniti-quis-quis-dolore-est-nesciunt",
    "twitter_url": "http:\/\/kunze.com\/",
    "experience_years": 13
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Request      

PUT api/ecosystem/founder/profile

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

headline   string  optional  

Must not be greater than 255 characters. Example: tdeqmkgbcrpevacjgkaqm

bio   string  optional  

Must not be greater than 10000 characters. Example: zwqznwkfktzodjivg

linkedin_url   string  optional  

Must be a valid URL. Must not be greater than 255 characters. Example: http://www.kovacek.com/officiis-consequatur-deleniti-quis-quis-dolore-est-nesciunt

twitter_url   string  optional  

Must be a valid URL. Must not be greater than 255 characters. Example: http://kunze.com/

experience_years   integer  optional  

Must be at least 0. Must not be greater than 80. Example: 13

Feasibility Studies

Packages, templates, studies, payments, and HTML reports. Base path: /api/ecosystem/feasibility.

GET api/ecosystem/feasibility/packages

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/feasibility/packages" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/feasibility/packages"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/packages';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/packages'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": [
        {
            "id": 1,
            "tier": "basic",
            "label": "Basic",
            "name": "أساسي",
            "description": "تقرير جدوى مع تحليل العائد ROI",
            "price": "999.00",
            "currencyCode": "SAR",
            "features": [
                "questionnaire",
                "roi",
                "html_report"
            ],
            "includesConsultation": false
        },
        {
            "id": 2,
            "tier": "standard",
            "label": "Standard",
            "name": "قياسي",
            "description": "تقرير كامل مع IRR وNPV وأقسام السوق",
            "price": "2499.00",
            "currencyCode": "SAR",
            "features": [
                "questionnaire",
                "roi",
                "irr",
                "npv",
                "html_report",
                "market_sections"
            ],
            "includesConsultation": false
        },
        {
            "id": 3,
            "tier": "premium",
            "label": "Premium",
            "name": "مميز",
            "description": "تقرير مؤسسي + جلسة استشارية مع خبير",
            "price": "4999.00",
            "currencyCode": "SAR",
            "features": [
                "questionnaire",
                "roi",
                "irr",
                "npv",
                "html_report",
                "consultation"
            ],
            "includesConsultation": true
        }
    ]
}
 

Request      

GET api/ecosystem/feasibility/packages

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

GET api/ecosystem/feasibility/templates

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/feasibility/templates" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/feasibility/templates"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/templates';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/templates'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": [
        {
            "id": 3,
            "sector": "fintech",
            "name": "Fintech",
            "description": "Template for financial technology startups",
            "questionCount": 5
        },
        {
            "id": 4,
            "sector": "healthtech",
            "name": "HealthTech",
            "description": "قالب دراسة جدوى للصحة الرقمية",
            "questionCount": 3
        },
        {
            "id": 5,
            "sector": "legal",
            "name": "Legal / RegTech",
            "description": "قالب لخدمات قانونية وتقنية امتثال",
            "questionCount": 2
        },
        {
            "id": 2,
            "sector": "retail",
            "name": "Retail / E-commerce",
            "description": "Template for retail and e-commerce ventures",
            "questionCount": 5
        },
        {
            "id": 1,
            "sector": "technology",
            "name": "Technology / SaaS",
            "description": "Template for software and technology startups",
            "questionCount": 6
        }
    ]
}
 

Request      

GET api/ecosystem/feasibility/templates

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

GET api/ecosystem/feasibility/templates/{id}

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/feasibility/templates/66165652" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/feasibility/templates/66165652"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/templates/66165652';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/templates/66165652'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (404):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Template not found.",
    "result": null
}
 

Request      

GET api/ecosystem/feasibility/templates/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the template. Example: 66165652

GET api/ecosystem/feasibility/studies

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/feasibility/studies" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/feasibility/studies

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Create feasibility study

Supports bilingual fields and multipart attachments (gallery_images[], documents[]).

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --form "package_id=1"\
    --form "template_id=1"\
    --form "title=Feasibility study — SaaS"\
    --form "startup_id=20"\
    --form "title_en=consequatur"\
    --form "description=Consectetur illo iure tempore."\
    --form "description_en=nihil"\
    --form "sector=illo"\
    --form "sector_en=error"\
    --form "cover_image=@C:\Users\Micros\AppData\Local\Temp\php69BB.tmp" \
    --form "gallery_images[]=@C:\Users\Micros\AppData\Local\Temp\php69BC.tmp" \
    --form "documents[]=@C:\Users\Micros\AppData\Local\Temp\php69BD.tmp" 
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

const body = new FormData();
body.append('package_id', '1');
body.append('template_id', '1');
body.append('title', 'Feasibility study — SaaS');
body.append('startup_id', '20');
body.append('title_en', 'consequatur');
body.append('description', 'Consectetur illo iure tempore.');
body.append('description_en', 'nihil');
body.append('sector', 'illo');
body.append('sector_en', 'error');
body.append('cover_image', document.querySelector('input[name="cover_image"]').files[0]);
body.append('gallery_images[]', document.querySelector('input[name="gallery_images[]"]').files[0]);
body.append('documents[]', document.querySelector('input[name="documents[]"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'multipart/form-data',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'multipart' => [
            [
                'name' => 'package_id',
                'contents' => '1'
            ],
            [
                'name' => 'template_id',
                'contents' => '1'
            ],
            [
                'name' => 'title',
                'contents' => 'Feasibility study — SaaS'
            ],
            [
                'name' => 'startup_id',
                'contents' => '20'
            ],
            [
                'name' => 'title_en',
                'contents' => 'consequatur'
            ],
            [
                'name' => 'description',
                'contents' => 'Consectetur illo iure tempore.'
            ],
            [
                'name' => 'description_en',
                'contents' => 'nihil'
            ],
            [
                'name' => 'sector',
                'contents' => 'illo'
            ],
            [
                'name' => 'sector_en',
                'contents' => 'error'
            ],
            [
                'name' => 'cover_image',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\php69BB.tmp', 'r')
            ],
            [
                'name' => 'gallery_images[]',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\php69BC.tmp', 'r')
            ],
            [
                'name' => 'documents[]',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\php69BD.tmp', 'r')
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies'
files = {
  'package_id': (None, '1'),
  'template_id': (None, '1'),
  'title': (None, 'Feasibility study — SaaS'),
  'startup_id': (None, '20'),
  'title_en': (None, 'consequatur'),
  'description': (None, 'Consectetur illo iure tempore.'),
  'description_en': (None, 'nihil'),
  'sector': (None, 'illo'),
  'sector_en': (None, 'error'),
  'cover_image': open('C:\Users\Micros\AppData\Local\Temp\php69BB.tmp', 'rb'),
  'gallery_images[]': open('C:\Users\Micros\AppData\Local\Temp\php69BC.tmp', 'rb'),
  'documents[]': open('C:\Users\Micros\AppData\Local\Temp\php69BD.tmp', 'rb')}
payload = {
    "package_id": 1,
    "template_id": 1,
    "title": "Feasibility study — SaaS",
    "startup_id": 20,
    "title_en": "consequatur",
    "description": "Consectetur illo iure tempore.",
    "description_en": "nihil",
    "sector": "illo",
    "sector_en": "error"
}
headers = {
  'Content-Type': 'multipart/form-data',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, files=files)
response.json()

Request      

POST api/ecosystem/feasibility/studies

Headers

Content-Type      

Example: multipart/form-data

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

package_id   integer   

Package ID. Example: 1

template_id   integer   

Template ID. Example: 1

title   string   

Arabic title. Example: Feasibility study — SaaS

startup_id   integer  optional  

optional Linked startup ID. Example: 20

title_en   string  optional  

optional English title. Example: consequatur

description   string  optional  

optional Arabic description. Example: Consectetur illo iure tempore.

description_en   string  optional  

optional English description. Example: nihil

sector   string  optional  

optional Sector (Arabic). Example: illo

sector_en   string  optional  

optional Sector (English). Example: error

cover_image   file  optional  

Must be an image. Must not be greater than 5120 kilobytes. Example: C:\Users\Micros\AppData\Local\Temp\php69BB.tmp

gallery_images   file[]  optional  

Must be an image. Must not be greater than 5120 kilobytes.

documents   file[]  optional  

Must be a file. Must not be greater than 20480 kilobytes.

GET api/ecosystem/feasibility/studies/{id}

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/3" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/3"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/3';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/3'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/feasibility/studies/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the study. Example: 3

PUT api/ecosystem/feasibility/studies/{id}/answers

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/05/answers" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"answers\": [],
    \"financials\": {
        \"initial_investment\": 48,
        \"annual_cash_flows\": [
            7181261.52
        ],
        \"discount_rate\": 17,
        \"projected_revenue\": 35,
        \"projected_costs\": 3
    }
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/05/answers"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "answers": [],
    "financials": {
        "initial_investment": 48,
        "annual_cash_flows": [
            7181261.52
        ],
        "discount_rate": 17,
        "projected_revenue": 35,
        "projected_costs": 3
    }
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/05/answers';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'answers' => [],
            'financials' => [
                'initial_investment' => 48,
                'annual_cash_flows' => [
                    7181261.52,
                ],
                'discount_rate' => 17,
                'projected_revenue' => 35,
                'projected_costs' => 3,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/05/answers'
payload = {
    "answers": [],
    "financials": {
        "initial_investment": 48,
        "annual_cash_flows": [
            7181261.52
        ],
        "discount_rate": 17,
        "projected_revenue": 35,
        "projected_costs": 3
    }
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Request      

PUT api/ecosystem/feasibility/studies/{id}/answers

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the study. Example: 05

Body Parameters

answers   object   
financials   object  optional  
initial_investment   number  optional  

Must be at least 0. Example: 48

annual_cash_flows   number[]  optional  
discount_rate   number  optional  

Must be at least 0. Must not be greater than 100. Example: 17

projected_revenue   number  optional  

Must be at least 0. Example: 35

projected_costs   number  optional  

Must be at least 0. Example: 3

POST api/ecosystem/feasibility/studies/{id}/calculate

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/7/calculate" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/7/calculate"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/7/calculate';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/7/calculate'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/feasibility/studies/{id}/calculate

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the study. Example: 7

POST api/ecosystem/feasibility/studies/{id}/request-payment

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/8681491/request-payment" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/8681491/request-payment"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/8681491/request-payment';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/8681491/request-payment'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/feasibility/studies/{id}/request-payment

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the study. Example: 8681491

Confirm online payment

requires authentication

Marks study as paid and applies platform/provider commission split. Returns commission object in result.

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/09/confirm-payment" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/09/confirm-payment"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/09/confirm-payment';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/09/confirm-payment'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/feasibility/studies/{id}/confirm-payment

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the study. Example: 09

POST api/ecosystem/feasibility/studies/{id}/mark-paid

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/73/mark-paid" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/73/mark-paid"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/73/mark-paid';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/73/mark-paid'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/feasibility/studies/{id}/mark-paid

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the study. Example: 73

POST api/ecosystem/feasibility/studies/{id}/generate-report

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/9/generate-report" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/9/generate-report"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/9/generate-report';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/9/generate-report'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/feasibility/studies/{id}/generate-report

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the study. Example: 9

GET api/ecosystem/feasibility/studies/{id}/export

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/7/export" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/feasibility/studies/7/export"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/7/export';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/feasibility/studies/7/export'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/feasibility/studies/{id}/export

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the study. Example: 7

Consulting

Service requests, proposals, and engagements. Base path: /api/ecosystem/consulting.

GET api/ecosystem/consulting/requests

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/consulting/requests" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consulting/requests"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consulting/requests';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consulting/requests'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (500):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "App\\Http\\Resources\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Collections\\Traits\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Resources\\BaseResource.php",
    "result": null,
    "error": "App\\Http\\Resources\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Collections\\Traits\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Resources\\BaseResource.php",
    "exception": {
        "message": "App\\Http\\Resources\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Collections\\Traits\\EnumeratesValues.php on line 458",
        "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Resources\\BaseResource.php",
        "line": 30,
        "code": 0,
        "trace": [
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Collections\\Traits\\EnumeratesValues.php",
                "line": 458,
                "function": "__construct",
                "class": "App\\Http\\Resources\\BaseResource",
                "type": "->",
                "args": [
                    {
                        "id": 45,
                        "user_id": 2,
                        "startup_id": 3,
                        "category": "investment_readiness",
                        "sector": null,
                        "sector_en": null,
                        "title": "تحضير pitch deck للمستثمرين",
                        "title_en": null,
                        "description": "طلب استشارة مفتوح — بيانات تجريبية.",
                        "description_en": null,
                        "budget_min": "10000.00",
                        "budget_max": "50000.00",
                        "currency_code": "SAR",
                        "status": "open",
                        "deadline_at": "2026-06-11T00:47:35.000000Z",
                        "created_at": "2026-05-21T00:47:35.000000Z",
                        "updated_at": "2026-05-21T00:47:35.000000Z",
                        "proposals_count": 0,
                        "client": {
                            "id": 2,
                            "name": "سارة العتيبي",
                            "phone_intl": "",
                            "created_at_formatted": "2026-05-22 02:10",
                            "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                            "original_updated_at": null,
                            "original_last_activity": null,
                            "p_is_online": false,
                            "country_flag_url": null,
                            "remaining_posts": null
                        },
                        "startup": {
                            "id": 3,
                            "name": "رِواء الصحية"
                        }
                    },
                    0
                ]
            },
            {
                "function": "Illuminate\\Support\\Traits\\{closure}",
                "class": "Illuminate\\Support\\Collection",
                "type": "->",
                "args": [
                    {
                        "id": 45,
                        "user_id": 2,
                        "startup_id": 3,
                        "category": "investment_readiness",
                        "sector": null,
                        "sector_en": null,
                        "title": "تحضير pitch deck للمستثمرين",
                        "title_en": null,
                        "description": "طلب استشارة مفتوح — بيانات تجريبية.",
                        "description_en": null,
                        "budget_min": "10000.00",
                        "budget_max": "50000.00",
                        "currency_code": "SAR",
                        "status": "open",
                        "deadline_at": "2026-06-11T00:47:35.000000Z",
                        "created_at": "2026-05-21T00:47:35.000000Z",
                        "updated_at": "2026-05-21T00:47:35.000000Z",
                        "proposals_count": 0,
                        "client": {
                            "id": 2,
                            "name": "سارة العتيبي",
                            "created_at": "2026-05-21T23:10:54.379568Z",
                            "phone_intl": "",
                            "created_at_formatted": "2026-05-22 02:10",
                            "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                            "original_updated_at": null,
                            "original_last_activity": null,
                            "p_is_online": false,
                            "country_flag_url": null,
                            "remaining_posts": null
                        },
                        "startup": {
                            "id": 3,
                            "name": "رِواء الصحية"
                        }
                    },
                    0
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Collections\\Arr.php",
                "line": 754,
                "function": "array_map",
                "args": [
                    {},
                    [
                        {
                            "id": 45,
                            "user_id": 2,
                            "startup_id": 3,
                            "category": "investment_readiness",
                            "sector": null,
                            "sector_en": null,
                            "title": "تحضير pitch deck للمستثمرين",
                            "title_en": null,
                            "description": "طلب استشارة مفتوح — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "10000.00",
                            "budget_max": "50000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-11T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 0,
                            "client": {
                                "id": 2,
                                "name": "سارة العتيبي",
                                "created_at": "2026-05-21T23:10:54.379568Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 3,
                                "name": "رِواء الصحية"
                            }
                        },
                        {
                            "id": 44,
                            "user_id": 24,
                            "startup_id": 15,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "تقرير Due Diligence مالي",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-25T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 24,
                                "name": "منى الحسين",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 15,
                                "name": "مرسال الشحن"
                            }
                        },
                        {
                            "id": 43,
                            "user_id": 24,
                            "startup_id": 15,
                            "category": "legal",
                            "sector": null,
                            "sector_en": null,
                            "title": "حماية العلامة والملكية الفكرية",
                            "title_en": null,
                            "description": "طلب استشارة قانونية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "12000.00",
                            "budget_max": "45000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-18T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 2,
                            "client": {
                                "id": 24,
                                "name": "منى الحسين",
                                "created_at": "2026-05-21T23:10:54.637789Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 15,
                                "name": "مرسال الشحن"
                            }
                        },
                        {
                            "id": 42,
                            "user_id": 23,
                            "startup_id": 13,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "خطة تدفقات نقدية وتحليل حساسية",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-11T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 23,
                                "name": "فيصل الجهني",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 13,
                                "name": "سراج للتمويل"
                            }
                        },
                        {
                            "id": 41,
                            "user_id": 23,
                            "startup_id": 13,
                            "category": "legal",
                            "sector": null,
                            "sector_en": null,
                            "title": "صياغة اتفاقية المساهمين",
                            "title_en": null,
                            "description": "طلب استشارة قانونية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "12000.00",
                            "budget_max": "45000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-04T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 2,
                            "client": {
                                "id": 23,
                                "name": "فيصل الجهني",
                                "created_at": "2026-05-21T23:10:54.802504Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 13,
                                "name": "سراج للتمويل"
                            }
                        },
                        {
                            "id": 40,
                            "user_id": 22,
                            "startup_id": 11,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "نموذج مالي 36 شهراً لجولة Seed",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-25T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 22,
                                "name": "موضي القحطاني",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 11,
                                "name": "سلة التجار"
                            }
                        },
                        {
                            "id": 39,
                            "user_id": 22,
                            "startup_id": 11,
                            "category": "legal",
                            "sector": null,
                            "sector_en": null,
                            "title": "عقد توظيف وتقاسم خيارات",
                            "title_en": null,
                            "description": "طلب استشارة قانونية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "12000.00",
                            "budget_max": "45000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-18T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 2,
                            "client": {
                                "id": 22,
                                "name": "موضي القحطاني",
                                "created_at": "2026-05-21T23:10:54.958265Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 11,
                                "name": "سلة التجار"
                            }
                        },
                        {
                            "id": 38,
                            "user_id": 21,
                            "startup_id": 9,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "هيكلة Cap Table بعد الجولة",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-11T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 21,
                                "name": "بندر السديري",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 9,
                                "name": "زرعة الزراعية"
                            }
                        },
                        {
                            "id": 37,
                            "user_id": 21,
                            "startup_id": 9,
                            "category": "legal",
                            "sector": null,
                            "sector_en": null,
                            "title": "مراجعة نظام الشركات والامتثال",
                            "title_en": null,
                            "description": "طلب استشارة قانونية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "12000.00",
                            "budget_max": "45000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-04T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 2,
                            "client": {
                                "id": 21,
                                "name": "بندر السديري",
                                "created_at": "2026-05-21T23:10:55.110169Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 9,
                                "name": "زرعة الزراعية"
                            }
                        },
                        {
                            "id": 36,
                            "user_id": 20,
                            "startup_id": 7,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "تقييم تقييمي Pre-money",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-25T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 20,
                                "name": "أمل الفهد",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 7,
                                "name": "جدوى التعليم"
                            }
                        }
                    ],
                    [
                        0,
                        1,
                        2,
                        3,
                        4,
                        5,
                        6,
                        7,
                        8,
                        9
                    ]
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Collections\\Collection.php",
                "line": 809,
                "function": "map",
                "class": "Illuminate\\Support\\Arr",
                "type": "::",
                "args": [
                    [
                        {
                            "id": 45,
                            "user_id": 2,
                            "startup_id": 3,
                            "category": "investment_readiness",
                            "sector": null,
                            "sector_en": null,
                            "title": "تحضير pitch deck للمستثمرين",
                            "title_en": null,
                            "description": "طلب استشارة مفتوح — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "10000.00",
                            "budget_max": "50000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-11T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 0,
                            "client": {
                                "id": 2,
                                "name": "سارة العتيبي",
                                "created_at": "2026-05-21T23:10:54.379568Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 3,
                                "name": "رِواء الصحية"
                            }
                        },
                        {
                            "id": 44,
                            "user_id": 24,
                            "startup_id": 15,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "تقرير Due Diligence مالي",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-25T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 24,
                                "name": "منى الحسين",
                                "created_at": "2026-05-21T23:10:54.637789Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 15,
                                "name": "مرسال الشحن"
                            }
                        },
                        {
                            "id": 43,
                            "user_id": 24,
                            "startup_id": 15,
                            "category": "legal",
                            "sector": null,
                            "sector_en": null,
                            "title": "حماية العلامة والملكية الفكرية",
                            "title_en": null,
                            "description": "طلب استشارة قانونية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "12000.00",
                            "budget_max": "45000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-18T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 2,
                            "client": {
                                "id": 24,
                                "name": "منى الحسين",
                                "created_at": "2026-05-21T23:10:54.637789Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 15,
                                "name": "مرسال الشحن"
                            }
                        },
                        {
                            "id": 42,
                            "user_id": 23,
                            "startup_id": 13,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "خطة تدفقات نقدية وتحليل حساسية",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-11T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 23,
                                "name": "فيصل الجهني",
                                "created_at": "2026-05-21T23:10:54.802504Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 13,
                                "name": "سراج للتمويل"
                            }
                        },
                        {
                            "id": 41,
                            "user_id": 23,
                            "startup_id": 13,
                            "category": "legal",
                            "sector": null,
                            "sector_en": null,
                            "title": "صياغة اتفاقية المساهمين",
                            "title_en": null,
                            "description": "طلب استشارة قانونية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "12000.00",
                            "budget_max": "45000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-04T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 2,
                            "client": {
                                "id": 23,
                                "name": "فيصل الجهني",
                                "created_at": "2026-05-21T23:10:54.802504Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 13,
                                "name": "سراج للتمويل"
                            }
                        },
                        {
                            "id": 40,
                            "user_id": 22,
                            "startup_id": 11,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "نموذج مالي 36 شهراً لجولة Seed",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-25T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 22,
                                "name": "موضي القحطاني",
                                "created_at": "2026-05-21T23:10:54.958265Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 11,
                                "name": "سلة التجار"
                            }
                        },
                        {
                            "id": 39,
                            "user_id": 22,
                            "startup_id": 11,
                            "category": "legal",
                            "sector": null,
                            "sector_en": null,
                            "title": "عقد توظيف وتقاسم خيارات",
                            "title_en": null,
                            "description": "طلب استشارة قانونية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "12000.00",
                            "budget_max": "45000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-18T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 2,
                            "client": {
                                "id": 22,
                                "name": "موضي القحطاني",
                                "created_at": "2026-05-21T23:10:54.958265Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 11,
                                "name": "سلة التجار"
                            }
                        },
                        {
                            "id": 38,
                            "user_id": 21,
                            "startup_id": 9,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "هيكلة Cap Table بعد الجولة",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-11T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 21,
                                "name": "بندر السديري",
                                "created_at": "2026-05-21T23:10:55.110169Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 9,
                                "name": "زرعة الزراعية"
                            }
                        },
                        {
                            "id": 37,
                            "user_id": 21,
                            "startup_id": 9,
                            "category": "legal",
                            "sector": null,
                            "sector_en": null,
                            "title": "مراجعة نظام الشركات والامتثال",
                            "title_en": null,
                            "description": "طلب استشارة قانونية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "12000.00",
                            "budget_max": "45000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-04T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 2,
                            "client": {
                                "id": 21,
                                "name": "بندر السديري",
                                "created_at": "2026-05-21T23:10:55.110169Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 9,
                                "name": "زرعة الزراعية"
                            }
                        },
                        {
                            "id": 36,
                            "user_id": 20,
                            "startup_id": 7,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "تقييم تقييمي Pre-money",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-25T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 20,
                                "name": "أمل الفهد",
                                "created_at": "2026-05-21T23:10:55.263329Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 7,
                                "name": "جدوى التعليم"
                            }
                        }
                    ],
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Eloquent\\Collection.php",
                "line": 418,
                "function": "map",
                "class": "Illuminate\\Support\\Collection",
                "type": "->",
                "args": [
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Collections\\Traits\\EnumeratesValues.php",
                "line": 458,
                "function": "map",
                "class": "Illuminate\\Database\\Eloquent\\Collection",
                "type": "->",
                "args": [
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Support\\Traits\\ForwardsCalls.php",
                "line": 23,
                "function": "mapInto",
                "class": "Illuminate\\Support\\Collection",
                "type": "->",
                "args": [
                    "App\\Modules\\Ecosystem\\Http\\Resources\\ConsultingServiceRequestResource"
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pagination\\AbstractPaginator.php",
                "line": 801,
                "function": "forwardCallTo",
                "class": "Illuminate\\Pagination\\AbstractPaginator",
                "type": "->",
                "args": [
                    [
                        {
                            "id": 45,
                            "user_id": 2,
                            "startup_id": 3,
                            "category": "investment_readiness",
                            "sector": null,
                            "sector_en": null,
                            "title": "تحضير pitch deck للمستثمرين",
                            "title_en": null,
                            "description": "طلب استشارة مفتوح — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "10000.00",
                            "budget_max": "50000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-11T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 0,
                            "client": {
                                "id": 2,
                                "name": "سارة العتيبي",
                                "created_at": "2026-05-21T23:10:54.379568Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 3,
                                "name": "رِواء الصحية"
                            }
                        },
                        {
                            "id": 44,
                            "user_id": 24,
                            "startup_id": 15,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "تقرير Due Diligence مالي",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-25T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 24,
                                "name": "منى الحسين",
                                "created_at": "2026-05-21T23:10:54.637789Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 15,
                                "name": "مرسال الشحن"
                            }
                        },
                        {
                            "id": 43,
                            "user_id": 24,
                            "startup_id": 15,
                            "category": "legal",
                            "sector": null,
                            "sector_en": null,
                            "title": "حماية العلامة والملكية الفكرية",
                            "title_en": null,
                            "description": "طلب استشارة قانونية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "12000.00",
                            "budget_max": "45000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-18T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 2,
                            "client": {
                                "id": 24,
                                "name": "منى الحسين",
                                "created_at": "2026-05-21T23:10:54.637789Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 15,
                                "name": "مرسال الشحن"
                            }
                        },
                        {
                            "id": 42,
                            "user_id": 23,
                            "startup_id": 13,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "خطة تدفقات نقدية وتحليل حساسية",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-11T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 23,
                                "name": "فيصل الجهني",
                                "created_at": "2026-05-21T23:10:54.802504Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 13,
                                "name": "سراج للتمويل"
                            }
                        },
                        {
                            "id": 41,
                            "user_id": 23,
                            "startup_id": 13,
                            "category": "legal",
                            "sector": null,
                            "sector_en": null,
                            "title": "صياغة اتفاقية المساهمين",
                            "title_en": null,
                            "description": "طلب استشارة قانونية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "12000.00",
                            "budget_max": "45000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-04T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 2,
                            "client": {
                                "id": 23,
                                "name": "فيصل الجهني",
                                "created_at": "2026-05-21T23:10:54.802504Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 13,
                                "name": "سراج للتمويل"
                            }
                        },
                        {
                            "id": 40,
                            "user_id": 22,
                            "startup_id": 11,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "نموذج مالي 36 شهراً لجولة Seed",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-25T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 22,
                                "name": "موضي القحطاني",
                                "created_at": "2026-05-21T23:10:54.958265Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 11,
                                "name": "سلة التجار"
                            }
                        },
                        {
                            "id": 39,
                            "user_id": 22,
                            "startup_id": 11,
                            "category": "legal",
                            "sector": null,
                            "sector_en": null,
                            "title": "عقد توظيف وتقاسم خيارات",
                            "title_en": null,
                            "description": "طلب استشارة قانونية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "12000.00",
                            "budget_max": "45000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-18T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 2,
                            "client": {
                                "id": 22,
                                "name": "موضي القحطاني",
                                "created_at": "2026-05-21T23:10:54.958265Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 11,
                                "name": "سلة التجار"
                            }
                        },
                        {
                            "id": 38,
                            "user_id": 21,
                            "startup_id": 9,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "هيكلة Cap Table بعد الجولة",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-11T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 21,
                                "name": "بندر السديري",
                                "created_at": "2026-05-21T23:10:55.110169Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 9,
                                "name": "زرعة الزراعية"
                            }
                        },
                        {
                            "id": 37,
                            "user_id": 21,
                            "startup_id": 9,
                            "category": "legal",
                            "sector": null,
                            "sector_en": null,
                            "title": "مراجعة نظام الشركات والامتثال",
                            "title_en": null,
                            "description": "طلب استشارة قانونية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "12000.00",
                            "budget_max": "45000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-04T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 2,
                            "client": {
                                "id": 21,
                                "name": "بندر السديري",
                                "created_at": "2026-05-21T23:10:55.110169Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 9,
                                "name": "زرعة الزراعية"
                            }
                        },
                        {
                            "id": 36,
                            "user_id": 20,
                            "startup_id": 7,
                            "category": "financial",
                            "sector": null,
                            "sector_en": null,
                            "title": "تقييم تقييمي Pre-money",
                            "title_en": null,
                            "description": "طلب خدمة مالية — بيانات تجريبية.",
                            "description_en": null,
                            "budget_min": "18000.00",
                            "budget_max": "90000.00",
                            "currency_code": "SAR",
                            "status": "open",
                            "deadline_at": "2026-06-25T00:47:35.000000Z",
                            "created_at": "2026-05-21T00:47:35.000000Z",
                            "updated_at": "2026-05-21T00:47:35.000000Z",
                            "proposals_count": 3,
                            "client": {
                                "id": 20,
                                "name": "أمل الفهد",
                                "created_at": "2026-05-21T23:10:55.263329Z",
                                "phone_intl": "",
                                "created_at_formatted": "2026-05-22 02:10",
                                "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                "original_updated_at": null,
                                "original_last_activity": null,
                                "p_is_online": false,
                                "country_flag_url": null,
                                "remaining_posts": null
                            },
                            "startup": {
                                "id": 7,
                                "name": "جدوى التعليم"
                            }
                        }
                    ],
                    "mapInto",
                    [
                        "App\\Modules\\Ecosystem\\Http\\Resources\\ConsultingServiceRequestResource"
                    ]
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\CollectsResources.php",
                "line": 35,
                "function": "__call",
                "class": "Illuminate\\Pagination\\AbstractPaginator",
                "type": "->",
                "args": [
                    "mapInto",
                    [
                        "App\\Modules\\Ecosystem\\Http\\Resources\\ConsultingServiceRequestResource"
                    ]
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\Json\\ResourceCollection.php",
                "line": 53,
                "function": "collectResource",
                "class": "Illuminate\\Http\\Resources\\Json\\ResourceCollection",
                "type": "->",
                "args": [
                    {
                        "current_page": 1,
                        "data": [
                            {
                                "id": 45,
                                "user_id": 2,
                                "startup_id": 3,
                                "category": "investment_readiness",
                                "sector": null,
                                "sector_en": null,
                                "title": "تحضير pitch deck للمستثمرين",
                                "title_en": null,
                                "description": "طلب استشارة مفتوح — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "10000.00",
                                "budget_max": "50000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 0,
                                "client": {
                                    "id": 2,
                                    "name": "سارة العتيبي",
                                    "created_at": "2026-05-21T23:10:54.379568Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 3,
                                    "name": "رِواء الصحية"
                                }
                            },
                            {
                                "id": 44,
                                "user_id": 24,
                                "startup_id": 15,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "تقرير Due Diligence مالي",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "created_at": "2026-05-21T23:10:54.637789Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 15,
                                    "name": "مرسال الشحن"
                                }
                            },
                            {
                                "id": 43,
                                "user_id": 24,
                                "startup_id": 15,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "حماية العلامة والملكية الفكرية",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-18T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "created_at": "2026-05-21T23:10:54.637789Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 15,
                                    "name": "مرسال الشحن"
                                }
                            },
                            {
                                "id": 42,
                                "user_id": 23,
                                "startup_id": 13,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "خطة تدفقات نقدية وتحليل حساسية",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "created_at": "2026-05-21T23:10:54.802504Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 13,
                                    "name": "سراج للتمويل"
                                }
                            },
                            {
                                "id": 41,
                                "user_id": 23,
                                "startup_id": 13,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "صياغة اتفاقية المساهمين",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-04T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "created_at": "2026-05-21T23:10:54.802504Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 13,
                                    "name": "سراج للتمويل"
                                }
                            },
                            {
                                "id": 40,
                                "user_id": 22,
                                "startup_id": 11,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "نموذج مالي 36 شهراً لجولة Seed",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "created_at": "2026-05-21T23:10:54.958265Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 11,
                                    "name": "سلة التجار"
                                }
                            },
                            {
                                "id": 39,
                                "user_id": 22,
                                "startup_id": 11,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "عقد توظيف وتقاسم خيارات",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-18T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "created_at": "2026-05-21T23:10:54.958265Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 11,
                                    "name": "سلة التجار"
                                }
                            },
                            {
                                "id": 38,
                                "user_id": 21,
                                "startup_id": 9,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "هيكلة Cap Table بعد الجولة",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "created_at": "2026-05-21T23:10:55.110169Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 9,
                                    "name": "زرعة الزراعية"
                                }
                            },
                            {
                                "id": 37,
                                "user_id": 21,
                                "startup_id": 9,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "مراجعة نظام الشركات والامتثال",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-04T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "created_at": "2026-05-21T23:10:55.110169Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 9,
                                    "name": "زرعة الزراعية"
                                }
                            },
                            {
                                "id": 36,
                                "user_id": 20,
                                "startup_id": 7,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "تقييم تقييمي Pre-money",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 20,
                                    "name": "أمل الفهد",
                                    "created_at": "2026-05-21T23:10:55.263329Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 7,
                                    "name": "جدوى التعليم"
                                }
                            }
                        ],
                        "first_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=1",
                        "from": 1,
                        "last_page": 4,
                        "last_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=4",
                        "links": [
                            {
                                "url": null,
                                "label": "&laquo; Previous",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=1",
                                "label": "1",
                                "active": true
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                                "label": "2",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=3",
                                "label": "3",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=4",
                                "label": "4",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                                "label": "Next &raquo;",
                                "active": false
                            }
                        ],
                        "next_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                        "path": "http://127.0.0.1:8000/api/ecosystem/consulting/requests",
                        "per_page": 10,
                        "prev_page_url": null,
                        "to": 10,
                        "total": 37
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\Json\\AnonymousResourceCollection.php",
                "line": 31,
                "function": "__construct",
                "class": "Illuminate\\Http\\Resources\\Json\\ResourceCollection",
                "type": "->",
                "args": [
                    {
                        "current_page": 1,
                        "data": [
                            {
                                "id": 45,
                                "user_id": 2,
                                "startup_id": 3,
                                "category": "investment_readiness",
                                "sector": null,
                                "sector_en": null,
                                "title": "تحضير pitch deck للمستثمرين",
                                "title_en": null,
                                "description": "طلب استشارة مفتوح — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "10000.00",
                                "budget_max": "50000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 0,
                                "client": {
                                    "id": 2,
                                    "name": "سارة العتيبي",
                                    "created_at": "2026-05-21T23:10:54.379568Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 3,
                                    "name": "رِواء الصحية"
                                }
                            },
                            {
                                "id": 44,
                                "user_id": 24,
                                "startup_id": 15,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "تقرير Due Diligence مالي",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "created_at": "2026-05-21T23:10:54.637789Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 15,
                                    "name": "مرسال الشحن"
                                }
                            },
                            {
                                "id": 43,
                                "user_id": 24,
                                "startup_id": 15,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "حماية العلامة والملكية الفكرية",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-18T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "created_at": "2026-05-21T23:10:54.637789Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 15,
                                    "name": "مرسال الشحن"
                                }
                            },
                            {
                                "id": 42,
                                "user_id": 23,
                                "startup_id": 13,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "خطة تدفقات نقدية وتحليل حساسية",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "created_at": "2026-05-21T23:10:54.802504Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 13,
                                    "name": "سراج للتمويل"
                                }
                            },
                            {
                                "id": 41,
                                "user_id": 23,
                                "startup_id": 13,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "صياغة اتفاقية المساهمين",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-04T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "created_at": "2026-05-21T23:10:54.802504Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 13,
                                    "name": "سراج للتمويل"
                                }
                            },
                            {
                                "id": 40,
                                "user_id": 22,
                                "startup_id": 11,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "نموذج مالي 36 شهراً لجولة Seed",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "created_at": "2026-05-21T23:10:54.958265Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 11,
                                    "name": "سلة التجار"
                                }
                            },
                            {
                                "id": 39,
                                "user_id": 22,
                                "startup_id": 11,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "عقد توظيف وتقاسم خيارات",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-18T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "created_at": "2026-05-21T23:10:54.958265Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 11,
                                    "name": "سلة التجار"
                                }
                            },
                            {
                                "id": 38,
                                "user_id": 21,
                                "startup_id": 9,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "هيكلة Cap Table بعد الجولة",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "created_at": "2026-05-21T23:10:55.110169Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 9,
                                    "name": "زرعة الزراعية"
                                }
                            },
                            {
                                "id": 37,
                                "user_id": 21,
                                "startup_id": 9,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "مراجعة نظام الشركات والامتثال",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-04T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "created_at": "2026-05-21T23:10:55.110169Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 9,
                                    "name": "زرعة الزراعية"
                                }
                            },
                            {
                                "id": 36,
                                "user_id": 20,
                                "startup_id": 7,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "تقييم تقييمي Pre-money",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 20,
                                    "name": "أمل الفهد",
                                    "created_at": "2026-05-21T23:10:55.263329Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 7,
                                    "name": "جدوى التعليم"
                                }
                            }
                        ],
                        "first_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=1",
                        "from": 1,
                        "last_page": 4,
                        "last_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=4",
                        "links": [
                            {
                                "url": null,
                                "label": "&laquo; Previous",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=1",
                                "label": "1",
                                "active": true
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                                "label": "2",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=3",
                                "label": "3",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=4",
                                "label": "4",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                                "label": "Next &raquo;",
                                "active": false
                            }
                        ],
                        "next_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                        "path": "http://127.0.0.1:8000/api/ecosystem/consulting/requests",
                        "per_page": 10,
                        "prev_page_url": null,
                        "to": 10,
                        "total": 37
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\Json\\JsonResource.php",
                "line": 96,
                "function": "__construct",
                "class": "Illuminate\\Http\\Resources\\Json\\AnonymousResourceCollection",
                "type": "->",
                "args": [
                    {
                        "current_page": 1,
                        "data": [
                            {
                                "id": 45,
                                "user_id": 2,
                                "startup_id": 3,
                                "category": "investment_readiness",
                                "sector": null,
                                "sector_en": null,
                                "title": "تحضير pitch deck للمستثمرين",
                                "title_en": null,
                                "description": "طلب استشارة مفتوح — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "10000.00",
                                "budget_max": "50000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 0,
                                "client": {
                                    "id": 2,
                                    "name": "سارة العتيبي",
                                    "created_at": "2026-05-21T23:10:54.379568Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 3,
                                    "name": "رِواء الصحية"
                                }
                            },
                            {
                                "id": 44,
                                "user_id": 24,
                                "startup_id": 15,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "تقرير Due Diligence مالي",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "created_at": "2026-05-21T23:10:54.637789Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 15,
                                    "name": "مرسال الشحن"
                                }
                            },
                            {
                                "id": 43,
                                "user_id": 24,
                                "startup_id": 15,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "حماية العلامة والملكية الفكرية",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-18T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "created_at": "2026-05-21T23:10:54.637789Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 15,
                                    "name": "مرسال الشحن"
                                }
                            },
                            {
                                "id": 42,
                                "user_id": 23,
                                "startup_id": 13,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "خطة تدفقات نقدية وتحليل حساسية",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "created_at": "2026-05-21T23:10:54.802504Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 13,
                                    "name": "سراج للتمويل"
                                }
                            },
                            {
                                "id": 41,
                                "user_id": 23,
                                "startup_id": 13,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "صياغة اتفاقية المساهمين",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-04T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "created_at": "2026-05-21T23:10:54.802504Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 13,
                                    "name": "سراج للتمويل"
                                }
                            },
                            {
                                "id": 40,
                                "user_id": 22,
                                "startup_id": 11,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "نموذج مالي 36 شهراً لجولة Seed",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "created_at": "2026-05-21T23:10:54.958265Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 11,
                                    "name": "سلة التجار"
                                }
                            },
                            {
                                "id": 39,
                                "user_id": 22,
                                "startup_id": 11,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "عقد توظيف وتقاسم خيارات",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-18T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "created_at": "2026-05-21T23:10:54.958265Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 11,
                                    "name": "سلة التجار"
                                }
                            },
                            {
                                "id": 38,
                                "user_id": 21,
                                "startup_id": 9,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "هيكلة Cap Table بعد الجولة",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "created_at": "2026-05-21T23:10:55.110169Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 9,
                                    "name": "زرعة الزراعية"
                                }
                            },
                            {
                                "id": 37,
                                "user_id": 21,
                                "startup_id": 9,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "مراجعة نظام الشركات والامتثال",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-04T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "created_at": "2026-05-21T23:10:55.110169Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 9,
                                    "name": "زرعة الزراعية"
                                }
                            },
                            {
                                "id": 36,
                                "user_id": 20,
                                "startup_id": 7,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "تقييم تقييمي Pre-money",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 20,
                                    "name": "أمل الفهد",
                                    "created_at": "2026-05-21T23:10:55.263329Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 7,
                                    "name": "جدوى التعليم"
                                }
                            }
                        ],
                        "first_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=1",
                        "from": 1,
                        "last_page": 4,
                        "last_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=4",
                        "links": [
                            {
                                "url": null,
                                "label": "&laquo; Previous",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=1",
                                "label": "1",
                                "active": true
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                                "label": "2",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=3",
                                "label": "3",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=4",
                                "label": "4",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                                "label": "Next &raquo;",
                                "active": false
                            }
                        ],
                        "next_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                        "path": "http://127.0.0.1:8000/api/ecosystem/consulting/requests",
                        "per_page": 10,
                        "prev_page_url": null,
                        "to": 10,
                        "total": 37
                    },
                    "App\\Modules\\Ecosystem\\Http\\Resources\\ConsultingServiceRequestResource"
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Resources\\Json\\JsonResource.php",
                "line": 81,
                "function": "newCollection",
                "class": "Illuminate\\Http\\Resources\\Json\\JsonResource",
                "type": "::",
                "args": [
                    {
                        "current_page": 1,
                        "data": [
                            {
                                "id": 45,
                                "user_id": 2,
                                "startup_id": 3,
                                "category": "investment_readiness",
                                "sector": null,
                                "sector_en": null,
                                "title": "تحضير pitch deck للمستثمرين",
                                "title_en": null,
                                "description": "طلب استشارة مفتوح — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "10000.00",
                                "budget_max": "50000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 0,
                                "client": {
                                    "id": 2,
                                    "name": "سارة العتيبي",
                                    "created_at": "2026-05-21T23:10:54.379568Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 3,
                                    "name": "رِواء الصحية"
                                }
                            },
                            {
                                "id": 44,
                                "user_id": 24,
                                "startup_id": 15,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "تقرير Due Diligence مالي",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "created_at": "2026-05-21T23:10:54.637789Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 15,
                                    "name": "مرسال الشحن"
                                }
                            },
                            {
                                "id": 43,
                                "user_id": 24,
                                "startup_id": 15,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "حماية العلامة والملكية الفكرية",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-18T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "created_at": "2026-05-21T23:10:54.637789Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 15,
                                    "name": "مرسال الشحن"
                                }
                            },
                            {
                                "id": 42,
                                "user_id": 23,
                                "startup_id": 13,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "خطة تدفقات نقدية وتحليل حساسية",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "created_at": "2026-05-21T23:10:54.802504Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 13,
                                    "name": "سراج للتمويل"
                                }
                            },
                            {
                                "id": 41,
                                "user_id": 23,
                                "startup_id": 13,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "صياغة اتفاقية المساهمين",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-04T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "created_at": "2026-05-21T23:10:54.802504Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 13,
                                    "name": "سراج للتمويل"
                                }
                            },
                            {
                                "id": 40,
                                "user_id": 22,
                                "startup_id": 11,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "نموذج مالي 36 شهراً لجولة Seed",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "created_at": "2026-05-21T23:10:54.958265Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 11,
                                    "name": "سلة التجار"
                                }
                            },
                            {
                                "id": 39,
                                "user_id": 22,
                                "startup_id": 11,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "عقد توظيف وتقاسم خيارات",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-18T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "created_at": "2026-05-21T23:10:54.958265Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 11,
                                    "name": "سلة التجار"
                                }
                            },
                            {
                                "id": 38,
                                "user_id": 21,
                                "startup_id": 9,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "هيكلة Cap Table بعد الجولة",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "created_at": "2026-05-21T23:10:55.110169Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 9,
                                    "name": "زرعة الزراعية"
                                }
                            },
                            {
                                "id": 37,
                                "user_id": 21,
                                "startup_id": 9,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "مراجعة نظام الشركات والامتثال",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-04T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "created_at": "2026-05-21T23:10:55.110169Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 9,
                                    "name": "زرعة الزراعية"
                                }
                            },
                            {
                                "id": 36,
                                "user_id": 20,
                                "startup_id": 7,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "تقييم تقييمي Pre-money",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 20,
                                    "name": "أمل الفهد",
                                    "created_at": "2026-05-21T23:10:55.263329Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 7,
                                    "name": "جدوى التعليم"
                                }
                            }
                        ],
                        "first_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=1",
                        "from": 1,
                        "last_page": 4,
                        "last_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=4",
                        "links": [
                            {
                                "url": null,
                                "label": "&laquo; Previous",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=1",
                                "label": "1",
                                "active": true
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                                "label": "2",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=3",
                                "label": "3",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=4",
                                "label": "4",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                                "label": "Next &raquo;",
                                "active": false
                            }
                        ],
                        "next_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                        "path": "http://127.0.0.1:8000/api/ecosystem/consulting/requests",
                        "per_page": 10,
                        "prev_page_url": null,
                        "to": 10,
                        "total": 37
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Modules\\Ecosystem\\Services\\ConsultingService.php",
                "line": 54,
                "function": "collection",
                "class": "Illuminate\\Http\\Resources\\Json\\JsonResource",
                "type": "::",
                "args": [
                    {
                        "current_page": 1,
                        "data": [
                            {
                                "id": 45,
                                "user_id": 2,
                                "startup_id": 3,
                                "category": "investment_readiness",
                                "sector": null,
                                "sector_en": null,
                                "title": "تحضير pitch deck للمستثمرين",
                                "title_en": null,
                                "description": "طلب استشارة مفتوح — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "10000.00",
                                "budget_max": "50000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 0,
                                "client": {
                                    "id": 2,
                                    "name": "سارة العتيبي",
                                    "created_at": "2026-05-21T23:10:54.379568Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 3,
                                    "name": "رِواء الصحية"
                                }
                            },
                            {
                                "id": 44,
                                "user_id": 24,
                                "startup_id": 15,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "تقرير Due Diligence مالي",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "created_at": "2026-05-21T23:10:54.637789Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 15,
                                    "name": "مرسال الشحن"
                                }
                            },
                            {
                                "id": 43,
                                "user_id": 24,
                                "startup_id": 15,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "حماية العلامة والملكية الفكرية",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-18T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 24,
                                    "name": "منى الحسين",
                                    "created_at": "2026-05-21T23:10:54.637789Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 15,
                                    "name": "مرسال الشحن"
                                }
                            },
                            {
                                "id": 42,
                                "user_id": 23,
                                "startup_id": 13,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "خطة تدفقات نقدية وتحليل حساسية",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "created_at": "2026-05-21T23:10:54.802504Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 13,
                                    "name": "سراج للتمويل"
                                }
                            },
                            {
                                "id": 41,
                                "user_id": 23,
                                "startup_id": 13,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "صياغة اتفاقية المساهمين",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-04T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 23,
                                    "name": "فيصل الجهني",
                                    "created_at": "2026-05-21T23:10:54.802504Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 13,
                                    "name": "سراج للتمويل"
                                }
                            },
                            {
                                "id": 40,
                                "user_id": 22,
                                "startup_id": 11,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "نموذج مالي 36 شهراً لجولة Seed",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "created_at": "2026-05-21T23:10:54.958265Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 11,
                                    "name": "سلة التجار"
                                }
                            },
                            {
                                "id": 39,
                                "user_id": 22,
                                "startup_id": 11,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "عقد توظيف وتقاسم خيارات",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-18T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 22,
                                    "name": "موضي القحطاني",
                                    "created_at": "2026-05-21T23:10:54.958265Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 11,
                                    "name": "سلة التجار"
                                }
                            },
                            {
                                "id": 38,
                                "user_id": 21,
                                "startup_id": 9,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "هيكلة Cap Table بعد الجولة",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-11T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "created_at": "2026-05-21T23:10:55.110169Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 9,
                                    "name": "زرعة الزراعية"
                                }
                            },
                            {
                                "id": 37,
                                "user_id": 21,
                                "startup_id": 9,
                                "category": "legal",
                                "sector": null,
                                "sector_en": null,
                                "title": "مراجعة نظام الشركات والامتثال",
                                "title_en": null,
                                "description": "طلب استشارة قانونية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "12000.00",
                                "budget_max": "45000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-04T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 2,
                                "client": {
                                    "id": 21,
                                    "name": "بندر السديري",
                                    "created_at": "2026-05-21T23:10:55.110169Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 9,
                                    "name": "زرعة الزراعية"
                                }
                            },
                            {
                                "id": 36,
                                "user_id": 20,
                                "startup_id": 7,
                                "category": "financial",
                                "sector": null,
                                "sector_en": null,
                                "title": "تقييم تقييمي Pre-money",
                                "title_en": null,
                                "description": "طلب خدمة مالية — بيانات تجريبية.",
                                "description_en": null,
                                "budget_min": "18000.00",
                                "budget_max": "90000.00",
                                "currency_code": "SAR",
                                "status": "open",
                                "deadline_at": "2026-06-25T00:47:35.000000Z",
                                "created_at": "2026-05-21T00:47:35.000000Z",
                                "updated_at": "2026-05-21T00:47:35.000000Z",
                                "proposals_count": 3,
                                "client": {
                                    "id": 20,
                                    "name": "أمل الفهد",
                                    "created_at": "2026-05-21T23:10:55.263329Z",
                                    "phone_intl": "",
                                    "created_at_formatted": "2026-05-22 02:10",
                                    "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
                                    "original_updated_at": null,
                                    "original_last_activity": null,
                                    "p_is_online": false,
                                    "country_flag_url": null,
                                    "remaining_posts": null
                                },
                                "startup": {
                                    "id": 7,
                                    "name": "جدوى التعليم"
                                }
                            }
                        ],
                        "first_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=1",
                        "from": 1,
                        "last_page": 4,
                        "last_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=4",
                        "links": [
                            {
                                "url": null,
                                "label": "&laquo; Previous",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=1",
                                "label": "1",
                                "active": true
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                                "label": "2",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=3",
                                "label": "3",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=4",
                                "label": "4",
                                "active": false
                            },
                            {
                                "url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                                "label": "Next &raquo;",
                                "active": false
                            }
                        ],
                        "next_page_url": "http://127.0.0.1:8000/api/ecosystem/consulting/requests?page=2",
                        "path": "http://127.0.0.1:8000/api/ecosystem/consulting/requests",
                        "per_page": 10,
                        "prev_page_url": null,
                        "to": 10,
                        "total": 37
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController.php",
                "line": 34,
                "function": "listRequests",
                "class": "App\\Modules\\Ecosystem\\Services\\ConsultingService",
                "type": "->",
                "args": [
                    []
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\ControllerDispatcher.php",
                "line": 46,
                "function": "index",
                "class": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Route.php",
                "line": 265,
                "function": "dispatch",
                "class": "Illuminate\\Routing\\ControllerDispatcher",
                "type": "->",
                "args": [
                    {
                        "uri": "api/ecosystem/consulting/requests",
                        "methods": [
                            "GET",
                            "HEAD"
                        ],
                        "action": {
                            "middleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                            "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                            "namespace": null,
                            "prefix": "api/ecosystem/consulting/requests",
                            "where": []
                        },
                        "isFallback": false,
                        "controller": {
                            "locale": null,
                            "countryCode": null,
                            "cacheExpiration": 86400,
                            "perPage": 10,
                            "disk": {},
                            "cookieExpiration": 1440
                        },
                        "defaults": [],
                        "wheres": [],
                        "parameters": [],
                        "parameterNames": [],
                        "computedMiddleware": [
                            "api",
                            "throttle:ecosystem-api"
                        ],
                        "compiled": {}
                    },
                    {
                        "locale": null,
                        "countryCode": null,
                        "cacheExpiration": 86400,
                        "perPage": 10,
                        "disk": {},
                        "cookieExpiration": 1440
                    },
                    "index"
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Route.php",
                "line": 211,
                "function": "runController",
                "class": "Illuminate\\Routing\\Route",
                "type": "->",
                "args": []
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
                "line": 808,
                "function": "run",
                "class": "Illuminate\\Routing\\Route",
                "type": "->",
                "args": []
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 169,
                "function": "Illuminate\\Routing\\{closure}",
                "class": "Illuminate\\Routing\\Router",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\ThrottleRequests.php",
                "line": 123,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\ThrottleRequests.php",
                "line": 88,
                "function": "handleRequestUsingNamedLimiter",
                "class": "Illuminate\\Routing\\Middleware\\ThrottleRequests",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {},
                    "ecosystem-api",
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Routing\\Middleware\\ThrottleRequests",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {},
                    "ecosystem-api"
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\LastUserActivity.php",
                "line": 46,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\LastUserActivity",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\BannedUser.php",
                "line": 45,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\BannedUser",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\DemoRestriction.php",
                "line": 56,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\DemoRestriction",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Services\\Auth\\App\\Http\\Middleware\\IsVerifiedUser.php",
                "line": 40,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Services\\Auth\\App\\Http\\Middleware\\IsVerifiedUser",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\GetLocalization.php",
                "line": 56,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\GetLocalization",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\RequirementsChecker.php",
                "line": 44,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\RequirementsChecker",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\SubstituteBindings.php",
                "line": 50,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Routing\\Middleware\\SubstituteBindings",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\ThrottleRequests.php",
                "line": 123,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Middleware\\ThrottleRequests.php",
                "line": 88,
                "function": "handleRequestUsingNamedLimiter",
                "class": "Illuminate\\Routing\\Middleware\\ThrottleRequests",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {},
                    "api",
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Routing\\Middleware\\ThrottleRequests",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {},
                    "api"
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\sanctum\\src\\Http\\Middleware\\EnsureFrontendRequestsAreStateful.php",
                "line": 26,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 169,
                "function": "Laravel\\Sanctum\\Http\\Middleware\\{closure}",
                "class": "Laravel\\Sanctum\\Http\\Middleware\\EnsureFrontendRequestsAreStateful",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 126,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\sanctum\\src\\Http\\Middleware\\EnsureFrontendRequestsAreStateful.php",
                "line": 25,
                "function": "then",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Laravel\\Sanctum\\Http\\Middleware\\EnsureFrontendRequestsAreStateful",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\VerifyAPIAccess.php",
                "line": 47,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\VerifyAPIAccess",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\Installed.php",
                "line": 103,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\Installed.php",
                "line": 45,
                "function": "handleApi",
                "class": "App\\Http\\Middleware\\Installed",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\Installed",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 126,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
                "line": 807,
                "function": "then",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
                "line": 786,
                "function": "runRouteWithinStack",
                "class": "Illuminate\\Routing\\Router",
                "type": "->",
                "args": [
                    {
                        "uri": "api/ecosystem/consulting/requests",
                        "methods": [
                            "GET",
                            "HEAD"
                        ],
                        "action": {
                            "middleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                            "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                            "namespace": null,
                            "prefix": "api/ecosystem/consulting/requests",
                            "where": []
                        },
                        "isFallback": false,
                        "controller": {
                            "locale": null,
                            "countryCode": null,
                            "cacheExpiration": 86400,
                            "perPage": 10,
                            "disk": {},
                            "cookieExpiration": 1440
                        },
                        "defaults": [],
                        "wheres": [],
                        "parameters": [],
                        "parameterNames": [],
                        "computedMiddleware": [
                            "api",
                            "throttle:ecosystem-api"
                        ],
                        "compiled": {}
                    },
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
                "line": 750,
                "function": "runRoute",
                "class": "Illuminate\\Routing\\Router",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {
                        "uri": "api/ecosystem/consulting/requests",
                        "methods": [
                            "GET",
                            "HEAD"
                        ],
                        "action": {
                            "middleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                            "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                            "namespace": null,
                            "prefix": "api/ecosystem/consulting/requests",
                            "where": []
                        },
                        "isFallback": false,
                        "controller": {
                            "locale": null,
                            "countryCode": null,
                            "cacheExpiration": 86400,
                            "perPage": 10,
                            "disk": {},
                            "cookieExpiration": 1440
                        },
                        "defaults": [],
                        "wheres": [],
                        "parameters": [],
                        "parameterNames": [],
                        "computedMiddleware": [
                            "api",
                            "throttle:ecosystem-api"
                        ],
                        "compiled": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Routing\\Router.php",
                "line": 739,
                "function": "dispatchToRoute",
                "class": "Illuminate\\Routing\\Router",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
                "line": 200,
                "function": "dispatch",
                "class": "Illuminate\\Routing\\Router",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 169,
                "function": "Illuminate\\Foundation\\Http\\{closure}",
                "class": "Illuminate\\Foundation\\Http\\Kernel",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\barryvdh\\laravel-debugbar\\src\\Middleware\\InjectDebugbar.php",
                "line": 59,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Barryvdh\\Debugbar\\Middleware\\InjectDebugbar",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\packages\\larapen\\honeypot\\src\\app\\Http\\Middleware\\ProtectAgainstSpam.php",
                "line": 15,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Larapen\\Honeypot\\app\\Http\\Middleware\\ProtectAgainstSpam",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest.php",
                "line": 21,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull.php",
                "line": 31,
                "function": "handle",
                "class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest.php",
                "line": 21,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Middleware\\TrimStrings.php",
                "line": 51,
                "function": "handle",
                "class": "Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Foundation\\Http\\Middleware\\TrimStrings",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\ValidatePostSize.php",
                "line": 27,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Http\\Middleware\\ValidatePostSize",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\app\\Http\\Middleware\\PreventRequestsDuringMaintenance.php",
                "line": 114,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "App\\Http\\Middleware\\PreventRequestsDuringMaintenance",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\HandleCors.php",
                "line": 61,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Http\\Middleware\\HandleCors",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Http\\Middleware\\TrustProxies.php",
                "line": 58,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 208,
                "function": "handle",
                "class": "Illuminate\\Http\\Middleware\\TrustProxies",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Pipeline\\Pipeline.php",
                "line": 126,
                "function": "Illuminate\\Pipeline\\{closure}",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
                "line": 175,
                "function": "then",
                "class": "Illuminate\\Pipeline\\Pipeline",
                "type": "->",
                "args": [
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php",
                "line": 144,
                "function": "sendRequestThroughRouter",
                "class": "Illuminate\\Foundation\\Http\\Kernel",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
                "line": 256,
                "function": "handle",
                "class": "Illuminate\\Foundation\\Http\\Kernel",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
                "line": 249,
                "function": "callLaravelRoute",
                "class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
                "line": 86,
                "function": "makeApiCall",
                "class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
                "type": "->",
                "args": [
                    {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    },
                    {
                        "uri": "api/ecosystem/consulting/requests",
                        "methods": [
                            "GET",
                            "HEAD"
                        ],
                        "action": {
                            "middleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                            "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                            "namespace": null,
                            "prefix": "api/ecosystem/consulting/requests",
                            "where": []
                        },
                        "isFallback": false,
                        "controller": {
                            "locale": null,
                            "countryCode": null,
                            "cacheExpiration": 86400,
                            "perPage": 10,
                            "disk": {},
                            "cookieExpiration": 1440
                        },
                        "defaults": [],
                        "wheres": [],
                        "parameters": [],
                        "parameterNames": [],
                        "computedMiddleware": [
                            "api",
                            "throttle:ecosystem-api"
                        ],
                        "compiled": {}
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Strategies\\Responses\\ResponseCalls.php",
                "line": 39,
                "function": "makeResponseCall",
                "class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
                "type": "->",
                "args": [
                    {
                        "custom": [],
                        "httpMethods": [
                            "GET"
                        ],
                        "uri": "api/ecosystem/consulting/requests",
                        "metadata": {
                            "custom": [],
                            "groupName": "Consulting",
                            "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                            "subgroup": "",
                            "subgroupDescription": "",
                            "title": "",
                            "description": "",
                            "authenticated": false
                        },
                        "headers": {
                            "Content-Type": "application/json",
                            "Accept": "application/json",
                            "Content-Language": "en",
                            "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                            "X-AppType": "docs"
                        },
                        "urlParameters": [],
                        "cleanUrlParameters": [],
                        "queryParameters": [],
                        "cleanQueryParameters": [],
                        "bodyParameters": [],
                        "cleanBodyParameters": [],
                        "fileParameters": [],
                        "responses": [],
                        "responseFields": [],
                        "auth": [],
                        "controller": {
                            "name": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController"
                        },
                        "method": {
                            "name": "index",
                            "class": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController"
                        },
                        "route": {
                            "uri": "api/ecosystem/consulting/requests",
                            "methods": [
                                "GET",
                                "HEAD"
                            ],
                            "action": {
                                "middleware": [
                                    "api",
                                    "throttle:ecosystem-api"
                                ],
                                "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                                "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                                "namespace": null,
                                "prefix": "api/ecosystem/consulting/requests",
                                "where": []
                            },
                            "isFallback": false,
                            "controller": {
                                "locale": null,
                                "countryCode": null,
                                "cacheExpiration": 86400,
                                "perPage": 10,
                                "disk": {},
                                "cookieExpiration": 1440
                            },
                            "defaults": [],
                            "wheres": [],
                            "parameters": [],
                            "parameterNames": [],
                            "computedMiddleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "compiled": {}
                        }
                    },
                    {
                        "only": [
                            "GET *"
                        ],
                        "except": [],
                        "config": {
                            "app.env": "local",
                            "app.debug": false
                        },
                        "queryParams": [],
                        "bodyParams": [],
                        "fileParams": [],
                        "cookies": []
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
                "line": 240,
                "function": "__invoke",
                "class": "Knuckles\\Scribe\\Extracting\\Strategies\\Responses\\ResponseCalls",
                "type": "->",
                "args": [
                    {
                        "custom": [],
                        "httpMethods": [
                            "GET"
                        ],
                        "uri": "api/ecosystem/consulting/requests",
                        "metadata": {
                            "custom": [],
                            "groupName": "Consulting",
                            "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                            "subgroup": "",
                            "subgroupDescription": "",
                            "title": "",
                            "description": "",
                            "authenticated": false
                        },
                        "headers": {
                            "Content-Type": "application/json",
                            "Accept": "application/json",
                            "Content-Language": "en",
                            "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                            "X-AppType": "docs"
                        },
                        "urlParameters": [],
                        "cleanUrlParameters": [],
                        "queryParameters": [],
                        "cleanQueryParameters": [],
                        "bodyParameters": [],
                        "cleanBodyParameters": [],
                        "fileParameters": [],
                        "responses": [],
                        "responseFields": [],
                        "auth": [],
                        "controller": {
                            "name": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController"
                        },
                        "method": {
                            "name": "index",
                            "class": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController"
                        },
                        "route": {
                            "uri": "api/ecosystem/consulting/requests",
                            "methods": [
                                "GET",
                                "HEAD"
                            ],
                            "action": {
                                "middleware": [
                                    "api",
                                    "throttle:ecosystem-api"
                                ],
                                "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                                "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                                "namespace": null,
                                "prefix": "api/ecosystem/consulting/requests",
                                "where": []
                            },
                            "isFallback": false,
                            "controller": {
                                "locale": null,
                                "countryCode": null,
                                "cacheExpiration": 86400,
                                "perPage": 10,
                                "disk": {},
                                "cookieExpiration": 1440
                            },
                            "defaults": [],
                            "wheres": [],
                            "parameters": [],
                            "parameterNames": [],
                            "computedMiddleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "compiled": {}
                        }
                    },
                    {
                        "only": [
                            "GET *"
                        ],
                        "except": [],
                        "config": {
                            "app.env": "local",
                            "app.debug": false
                        },
                        "queryParams": [],
                        "bodyParams": [],
                        "fileParams": [],
                        "cookies": []
                    }
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
                "line": 165,
                "function": "iterateThroughStrategies",
                "class": "Knuckles\\Scribe\\Extracting\\Extractor",
                "type": "->",
                "args": [
                    "responses",
                    {
                        "custom": [],
                        "httpMethods": [
                            "GET"
                        ],
                        "uri": "api/ecosystem/consulting/requests",
                        "metadata": {
                            "custom": [],
                            "groupName": "Consulting",
                            "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                            "subgroup": "",
                            "subgroupDescription": "",
                            "title": "",
                            "description": "",
                            "authenticated": false
                        },
                        "headers": {
                            "Content-Type": "application/json",
                            "Accept": "application/json",
                            "Content-Language": "en",
                            "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                            "X-AppType": "docs"
                        },
                        "urlParameters": [],
                        "cleanUrlParameters": [],
                        "queryParameters": [],
                        "cleanQueryParameters": [],
                        "bodyParameters": [],
                        "cleanBodyParameters": [],
                        "fileParameters": [],
                        "responses": [],
                        "responseFields": [],
                        "auth": [],
                        "controller": {
                            "name": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController"
                        },
                        "method": {
                            "name": "index",
                            "class": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController"
                        },
                        "route": {
                            "uri": "api/ecosystem/consulting/requests",
                            "methods": [
                                "GET",
                                "HEAD"
                            ],
                            "action": {
                                "middleware": [
                                    "api",
                                    "throttle:ecosystem-api"
                                ],
                                "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                                "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                                "namespace": null,
                                "prefix": "api/ecosystem/consulting/requests",
                                "where": []
                            },
                            "isFallback": false,
                            "controller": {
                                "locale": null,
                                "countryCode": null,
                                "cacheExpiration": 86400,
                                "perPage": 10,
                                "disk": {},
                                "cookieExpiration": 1440
                            },
                            "defaults": [],
                            "wheres": [],
                            "parameters": [],
                            "parameterNames": [],
                            "computedMiddleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "compiled": {}
                        }
                    },
                    [],
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Extracting\\Extractor.php",
                "line": 97,
                "function": "fetchResponses",
                "class": "Knuckles\\Scribe\\Extracting\\Extractor",
                "type": "->",
                "args": [
                    {
                        "custom": [],
                        "httpMethods": [
                            "GET"
                        ],
                        "uri": "api/ecosystem/consulting/requests",
                        "metadata": {
                            "custom": [],
                            "groupName": "Consulting",
                            "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                            "subgroup": "",
                            "subgroupDescription": "",
                            "title": "",
                            "description": "",
                            "authenticated": false
                        },
                        "headers": {
                            "Content-Type": "application/json",
                            "Accept": "application/json",
                            "Content-Language": "en",
                            "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                            "X-AppType": "docs"
                        },
                        "urlParameters": [],
                        "cleanUrlParameters": [],
                        "queryParameters": [],
                        "cleanQueryParameters": [],
                        "bodyParameters": [],
                        "cleanBodyParameters": [],
                        "fileParameters": [],
                        "responses": [],
                        "responseFields": [],
                        "auth": [],
                        "controller": {
                            "name": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController"
                        },
                        "method": {
                            "name": "index",
                            "class": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController"
                        },
                        "route": {
                            "uri": "api/ecosystem/consulting/requests",
                            "methods": [
                                "GET",
                                "HEAD"
                            ],
                            "action": {
                                "middleware": [
                                    "api",
                                    "throttle:ecosystem-api"
                                ],
                                "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                                "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                                "namespace": null,
                                "prefix": "api/ecosystem/consulting/requests",
                                "where": []
                            },
                            "isFallback": false,
                            "controller": {
                                "locale": null,
                                "countryCode": null,
                                "cacheExpiration": 86400,
                                "perPage": 10,
                                "disk": {},
                                "cookieExpiration": 1440
                            },
                            "defaults": [],
                            "wheres": [],
                            "parameters": [],
                            "parameterNames": [],
                            "computedMiddleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "compiled": {}
                        }
                    },
                    []
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
                "line": 125,
                "function": "processRoute",
                "class": "Knuckles\\Scribe\\Extracting\\Extractor",
                "type": "->",
                "args": [
                    {
                        "uri": "api/ecosystem/consulting/requests",
                        "methods": [
                            "GET",
                            "HEAD"
                        ],
                        "action": {
                            "middleware": [
                                "api",
                                "throttle:ecosystem-api"
                            ],
                            "uses": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                            "controller": "App\\Modules\\Ecosystem\\Http\\Controllers\\Api\\ConsultingRequestController@index",
                            "namespace": null,
                            "prefix": "api/ecosystem/consulting/requests",
                            "where": []
                        },
                        "isFallback": false,
                        "controller": {
                            "locale": null,
                            "countryCode": null,
                            "cacheExpiration": 86400,
                            "perPage": 10,
                            "disk": {},
                            "cookieExpiration": 1440
                        },
                        "defaults": [],
                        "wheres": [],
                        "parameters": [],
                        "parameterNames": [],
                        "computedMiddleware": [
                            "api",
                            "throttle:ecosystem-api"
                        ],
                        "compiled": {}
                    },
                    []
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
                "line": 72,
                "function": "extractEndpointsInfoFromLaravelApp",
                "class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
                "type": "->",
                "args": [
                    [
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {},
                        {}
                    ],
                    [
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 500,
                                    "content": "{\"success\":false,\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"result\":null,\"error\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"exception\":{\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458\",\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"line\":30,\"code\":0,\"trace\":[{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"__construct\",\"class\":\"App\\\\Http\\\\Resources\\\\BaseResource\",\"type\":\"->\",\"args\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},0]},{\"function\":\"Illuminate\\\\Support\\\\Traits\\\\{closure}\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},0]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Arr.php\",\"line\":754,\"function\":\"array_map\",\"args\":[{},[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],[0,1,2,3,4,5,6,7,8,9]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Collection.php\",\"line\":809,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Arr\",\"type\":\"::\",\"args\":[[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Database\\\\Eloquent\\\\Collection.php\",\"line\":418,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"map\",\"class\":\"Illuminate\\\\Database\\\\Eloquent\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Support\\\\Traits\\\\ForwardsCalls.php\",\"line\":23,\"function\":\"mapInto\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pagination\\\\AbstractPaginator.php\",\"line\":801,\"function\":\"forwardCallTo\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\CollectsResources.php\",\"line\":35,\"function\":\"__call\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection.php\",\"line\":53,\"function\":\"collectResource\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection.php\",\"line\":31,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":96,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23},\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":81,\"function\":\"newCollection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Services\\\\StartupService.php\",\"line\":75,\"function\":\"collection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController.php\",\"line\":34,\"function\":\"list\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Services\\\\StartupService\",\"type\":\"->\",\"args\":[[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\ControllerDispatcher.php\",\"line\":46,\"function\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":265,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\ControllerDispatcher\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"index\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":211,\"function\":\"runController\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":808,\"function\":\"run\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Routing\\\\{closure}\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\LastUserActivity.php\",\"line\":46,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\LastUserActivity\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\BannedUser.php\",\"line\":45,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\BannedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\DemoRestriction.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\DemoRestriction\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser.php\",\"line\":40,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\GetLocalization.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\GetLocalization\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\RequirementsChecker.php\",\"line\":44,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\RequirementsChecker\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings.php\",\"line\":50,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":123,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":88,\"function\":\"handleRequestUsingNamedLimiter\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\",{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":26,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\{closure}\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":25,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\VerifyAPIAccess.php\",\"line\":47,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\VerifyAPIAccess\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":103,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":45,\"function\":\"handleApi\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":807,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":786,\"function\":\"runRouteWithinStack\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":750,\"function\":\"runRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":739,\"function\":\"dispatchToRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":200,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Foundation\\\\Http\\\\{closure}\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\barryvdh\\\\laravel-debugbar\\\\src\\\\Middleware\\\\InjectDebugbar.php\",\"line\":59,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Barryvdh\\\\Debugbar\\\\Middleware\\\\InjectDebugbar\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\packages\\\\larapen\\\\honeypot\\\\src\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam.php\",\"line\":15,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Larapen\\\\Honeypot\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull.php\",\"line\":31,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings.php\",\"line\":51,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize.php\",\"line\":27,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance.php\",\"line\":114,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\HandleCors.php\",\"line\":61,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\HandleCors\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\TrustProxies.php\",\"line\":58,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\TrustProxies\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":175,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":144,\"function\":\"sendRequestThroughRouter\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":256,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":249,\"function\":\"callLaravelRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":86,\"function\":\"makeApiCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":39,\"function\":\"makeResponseCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":240,\"function\":\"__invoke\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":165,\"function\":\"iterateThroughStrategies\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[\"responses\",{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":97,\"function\":\"fetchResponses\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":125,\"function\":\"processRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":72,\"function\":\"extractEndpointsInfoFromLaravelApp\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}],[],[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":50,\"function\":\"extractEndpointsInfoAndWriteToDisk\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[{},false]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Commands\\\\GenerateDocumentation.php\",\"line\":55,\"function\":\"get\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":36,\"function\":\"handle\",\"class\":\"Knuckles\\\\Scribe\\\\Commands\\\\GenerateDocumentation\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Util.php\",\"line\":43,\"function\":\"Illuminate\\\\Container\\\\{closure}\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":96,\"function\":\"unwrapIfClosure\",\"class\":\"Illuminate\\\\Container\\\\Util\",\"type\":\"::\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":35,\"function\":\"callBoundMethod\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Container.php\",\"line\":754,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],[],null]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":211,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\Container\",\"type\":\"->\",\"args\":[[{},\"handle\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Command\\\\Command.php\",\"line\":318,\"function\":\"execute\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":180,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Command\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":1074,\"function\":\"run\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":341,\"function\":\"doRunCommand\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":192,\"function\":\"doRun\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Console\\\\Kernel.php\",\"line\":197,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Application.php\",\"line\":1234,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Console\\\\Kernel\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\artisan\",\"line\":13,\"function\":\"handleCommand\",\"class\":\"Illuminate\\\\Foundation\\\\Application\",\"type\":\"->\",\"args\":[{}]}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{id}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "792",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "792"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Startup not found.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "Must be 2 characters.",
                                    "required": false,
                                    "example": "uy",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "aasxuphfzoodpj",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tagline": {
                                    "name": "tagline",
                                    "description": "Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "ysyr",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 50000 characters.",
                                    "required": false,
                                    "example": "Vel molestias qui ut enim iure voluptates.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "vhjadwugnfjwzbfrpsov",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": false,
                                    "example": "pre_seed",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "website": {
                                    "name": "website",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "whlicyzjiuhagssmpjv",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "founded_year": {
                                    "name": "founded_year",
                                    "description": "Must be at least 1900. Must not be greater than 2027.",
                                    "required": false,
                                    "example": 22,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "team_size": {
                                    "name": "team_size",
                                    "description": "Must be at least 1. Must not be greater than 10000.",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "revenue_monthly": {
                                    "name": "revenue_monthly",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 20,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "xrw",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "fundraising_target": {
                                    "name": "fundraising_target",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 3,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "uy",
                                "name": "aasxuphfzoodpj",
                                "tagline": "ysyr",
                                "description": "Vel molestias qui ut enim iure voluptates.",
                                "sector": "vhjadwugnfjwzbfrpsov",
                                "stage": "pre_seed",
                                "website": "whlicyzjiuhagssmpjv",
                                "founded_year": 22,
                                "team_size": 5,
                                "revenue_monthly": 20,
                                "currency_code": "xrw",
                                "fundraising_target": 3
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{id}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "84",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "84"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "Must be 2 characters.",
                                    "required": false,
                                    "example": "cx",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "wfnzrcvdz",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tagline": {
                                    "name": "tagline",
                                    "description": "Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "wutcwwitvlod",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 50000 characters.",
                                    "required": false,
                                    "example": "Quia sed veniam repudiandae molestiae eos.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "mxuofbler",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": false,
                                    "example": "idea",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "website": {
                                    "name": "website",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "iwnknplvomjocshy",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "founded_year": {
                                    "name": "founded_year",
                                    "description": "Must be at least 1900. Must not be greater than 2027.",
                                    "required": false,
                                    "example": 8,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "team_size": {
                                    "name": "team_size",
                                    "description": "Must be at least 1. Must not be greater than 10000.",
                                    "required": false,
                                    "example": 22,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "revenue_monthly": {
                                    "name": "revenue_monthly",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 36,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "rjf",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "fundraising_target": {
                                    "name": "fundraising_target",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 73,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The <code>id</code> of an existing record in the posts table.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "cx",
                                "name": "wfnzrcvdz",
                                "tagline": "wutcwwitvlod",
                                "description": "Quia sed veniam repudiandae molestiae eos.",
                                "sector": "mxuofbler",
                                "stage": "idea",
                                "website": "iwnknplvomjocshy",
                                "founded_year": 8,
                                "team_size": 22,
                                "revenue_monthly": 36,
                                "currency_code": "rjf",
                                "fundraising_target": 73,
                                "post_id": 1
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{id}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "6118135",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "6118135"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{id}/submit-review",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "15",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "15"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{id}/kpi",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "929223",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "929223"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "83924",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "83924"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "6542",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "6542"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "cxpfupzc",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "role_title": {
                                    "name": "role_title",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "lqauwptvjkuoghmkmfulklj",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "Must be a valid email address. Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "bud18@example.com",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://hintz.net/",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "is_founder": {
                                    "name": "is_founder",
                                    "description": "",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 83,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 12,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "cxpfupzc",
                                "role_title": "lqauwptvjkuoghmkmfulklj",
                                "email": "bud18@example.com",
                                "linkedin_url": "http://hintz.net/",
                                "is_founder": false,
                                "sort_order": 83,
                                "user_id": 12
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team/{memberId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "2",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "347",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "2",
                                "memberId": "347"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "qeoajazjaokqfwmgpb",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "role_title": {
                                    "name": "role_title",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "clhwnjxcfxxdrttzgiidj",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "Must be a valid email address. Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "sally.erdman@example.net",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://kautzer.com/",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "is_founder": {
                                    "name": "is_founder",
                                    "description": "",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 69,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "qeoajazjaokqfwmgpb",
                                "role_title": "clhwnjxcfxxdrttzgiidj",
                                "email": "sally.erdman@example.net",
                                "linkedin_url": "http://kautzer.com/",
                                "is_founder": false,
                                "sort_order": 69,
                                "user_id": 3
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team/{memberId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "7",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "4",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "7",
                                "memberId": "4"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "338",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "338"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "4709",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "4709"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "yayhqikpprrkyoijgy",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "Modi neque nam corrupti voluptas necessitatibus ad quo et.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "achieved_at": {
                                    "name": "achieved_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:12",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "yayhqikpprrkyoijgy",
                                "description": "Modi neque nam corrupti voluptas necessitatibus ad quo et.",
                                "achieved_at": "2026-05-21T04:42:12",
                                "sort_order": 1
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones/{milestoneId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "64",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "64",
                                "milestoneId": "8"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "drrhijbcbcmyys",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "Molestias quis facere et dolorem.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "achieved_at": {
                                    "name": "achieved_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:12",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 19,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "drrhijbcbcmyys",
                                "description": "Molestias quis facere et dolorem.",
                                "achieved_at": "2026-05-21T04:42:12",
                                "sort_order": 19
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones/{milestoneId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "482",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "39",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "482",
                                "milestoneId": "39"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/media",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "9873",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "9873"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/media",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "87",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "87"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "file": {
                                    "name": "file",
                                    "description": "Must be a file. Must not be greater than 10240 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "type": {
                                    "name": "type",
                                    "description": "",
                                    "required": false,
                                    "example": "document",
                                    "type": "string",
                                    "enumValues": [
                                        "image",
                                        "document",
                                        "video"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "cpsldhyluebfbhcdazejvjw",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 16,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "type": "document",
                                "title": "cpsldhyluebfbhcdazejvjw",
                                "sort_order": 16
                            },
                            "fileParameters": {
                                "file": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/media/{mediaId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "9",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "mediaId": {
                                    "name": "mediaId",
                                    "description": "",
                                    "required": true,
                                    "example": "472339",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "9",
                                "mediaId": "472339"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/logo",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "83",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "83"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "logo": {
                                    "name": "logo",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": [],
                            "fileParameters": {
                                "logo": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/pitch-deck",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "61",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "61"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "pitch_deck": {
                                    "name": "pitch_deck",
                                    "description": "Must be a file. Must not be greater than 20480 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": [],
                            "fileParameters": {
                                "pitch_deck": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "66",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "99",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "66",
                                "roundId": "99"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "2",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "2"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "glxfqtky",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Itaque maxime aliquid eos veritatis.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": true,
                                    "example": "series_a",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "instrument": {
                                    "name": "instrument",
                                    "description": "",
                                    "required": true,
                                    "example": "safe",
                                    "type": "string",
                                    "enumValues": [
                                        "equity",
                                        "safe",
                                        "convertible_note"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 29,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "minimum_investment": {
                                    "name": "minimum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 27,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_investment": {
                                    "name": "maximum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 9,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "pre_money_valuation": {
                                    "name": "pre_money_valuation",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 81,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_valuation_cap": {
                                    "name": "safe_valuation_cap",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 22,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_discount_percent": {
                                    "name": "safe_discount_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 10,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "ipl",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:13",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "glxfqtky",
                                "description": "Itaque maxime aliquid eos veritatis.",
                                "stage": "series_a",
                                "instrument": "safe",
                                "target_amount": 29,
                                "minimum_investment": 27,
                                "maximum_investment": 9,
                                "pre_money_valuation": 81,
                                "safe_valuation_cap": 22,
                                "safe_discount_percent": 10,
                                "currency_code": "ipl",
                                "closes_at": "2026-05-21T04:42:13"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "12",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "5",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "12",
                                "roundId": "5"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "aizvchpss",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Voluptatibus vel perferendis soluta a sunt veniam tenetur est.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": true,
                                    "example": "growth",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "instrument": {
                                    "name": "instrument",
                                    "description": "",
                                    "required": true,
                                    "example": "equity",
                                    "type": "string",
                                    "enumValues": [
                                        "equity",
                                        "safe",
                                        "convertible_note"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 49,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "minimum_investment": {
                                    "name": "minimum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 78,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_investment": {
                                    "name": "maximum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 76,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "pre_money_valuation": {
                                    "name": "pre_money_valuation",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 7,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_valuation_cap": {
                                    "name": "safe_valuation_cap",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 19,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_discount_percent": {
                                    "name": "safe_discount_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 13,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "qgf",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:13",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "aizvchpss",
                                "description": "Voluptatibus vel perferendis soluta a sunt veniam tenetur est.",
                                "stage": "growth",
                                "instrument": "equity",
                                "target_amount": 49,
                                "minimum_investment": 78,
                                "maximum_investment": 76,
                                "pre_money_valuation": 7,
                                "safe_valuation_cap": 19,
                                "safe_discount_percent": 13,
                                "currency_code": "qgf",
                                "closes_at": "2026-05-21T04:42:13"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/open",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "55",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "918",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "55",
                                "roundId": "918"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/close",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "82088",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "931689552",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "82088",
                                "roundId": "931689552"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "746",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "4925",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "746",
                                "roundId": "4925"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "20",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "989",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "20",
                                "roundId": "989"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "amount": {
                                    "name": "amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 71,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "kxh",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": false,
                                    "example": "jfuxvqftdtsmzp",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "syndicate_id": {
                                    "name": "syndicate_id",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 89,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "amount": 71,
                                "currency_code": "kxh",
                                "notes": "jfuxvqftdtsmzp",
                                "syndicate_id": 89
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments/{commitmentId}/confirm",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "9539845",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "3076585",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "commitmentId": {
                                    "name": "commitmentId",
                                    "description": "",
                                    "required": true,
                                    "example": "itaque",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "9539845",
                                "roundId": "3076585",
                                "commitmentId": "itaque"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments/{commitmentId}/cancel",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "98",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "commitmentId": {
                                    "name": "commitmentId",
                                    "description": "",
                                    "required": true,
                                    "example": "qui",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "1",
                                "roundId": "98",
                                "commitmentId": "qui"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/due-diligence",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "706398",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "8",
                                "roundId": "706398"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/due-diligence/{itemId}/toggle",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "42644280",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "itemId": {
                                    "name": "itemId",
                                    "description": "",
                                    "required": true,
                                    "example": "accusamus",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "42644280",
                                "roundId": "1",
                                "itemId": "accusamus"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "55244475",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "55244475"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "holder_name": {
                                    "name": "holder_name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "nfweimfsbcdtptxmumgp",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "holder_type": {
                                    "name": "holder_type",
                                    "description": "",
                                    "required": true,
                                    "example": "other",
                                    "type": "string",
                                    "enumValues": [
                                        "founder",
                                        "investor",
                                        "employee",
                                        "advisor",
                                        "other"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 20,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "funding_round_id": {
                                    "name": "funding_round_id",
                                    "description": "",
                                    "required": false,
                                    "example": 16,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ownership_percent": {
                                    "name": "ownership_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 13,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "shares": {
                                    "name": "shares",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 33,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "invested_amount": {
                                    "name": "invested_amount",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 52,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "gur",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": false,
                                    "example": "ckunnjmscekco",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "holder_name": "nfweimfsbcdtptxmumgp",
                                "holder_type": "other",
                                "user_id": 20,
                                "funding_round_id": 16,
                                "ownership_percent": 13,
                                "shares": 33,
                                "invested_amount": 52,
                                "currency_code": "gur",
                                "notes": "ckunnjmscekco"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table/{entryId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entryId": {
                                    "name": "entryId",
                                    "description": "",
                                    "required": true,
                                    "example": "4",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "3",
                                "entryId": "4"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "holder_name": {
                                    "name": "holder_name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "zxgdgzzsrobe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "holder_type": {
                                    "name": "holder_type",
                                    "description": "",
                                    "required": true,
                                    "example": "other",
                                    "type": "string",
                                    "enumValues": [
                                        "founder",
                                        "investor",
                                        "employee",
                                        "advisor",
                                        "other"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "funding_round_id": {
                                    "name": "funding_round_id",
                                    "description": "",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ownership_percent": {
                                    "name": "ownership_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 23,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "shares": {
                                    "name": "shares",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 82,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "invested_amount": {
                                    "name": "invested_amount",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 29,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "emz",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": false,
                                    "example": "asxnwr",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "holder_name": "zxgdgzzsrobe",
                                "holder_type": "other",
                                "user_id": 3,
                                "funding_round_id": 5,
                                "ownership_percent": 23,
                                "shares": 82,
                                "invested_amount": 29,
                                "currency_code": "emz",
                                "notes": "asxnwr"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table/{entryId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "645094",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entryId": {
                                    "name": "entryId",
                                    "description": "",
                                    "required": true,
                                    "example": "6",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "645094",
                                "entryId": "6"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/packages",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":[{\"id\":1,\"tier\":\"basic\",\"label\":\"Basic\",\"name\":\"أساسي\",\"description\":\"تقرير جدوى مع تحليل العائد ROI\",\"price\":\"999.00\",\"currencyCode\":\"SAR\",\"features\":[\"questionnaire\",\"roi\",\"html_report\"],\"includesConsultation\":false},{\"id\":2,\"tier\":\"standard\",\"label\":\"Standard\",\"name\":\"قياسي\",\"description\":\"تقرير كامل مع IRR وNPV وأقسام السوق\",\"price\":\"2499.00\",\"currencyCode\":\"SAR\",\"features\":[\"questionnaire\",\"roi\",\"irr\",\"npv\",\"html_report\",\"market_sections\"],\"includesConsultation\":false},{\"id\":3,\"tier\":\"premium\",\"label\":\"Premium\",\"name\":\"مميز\",\"description\":\"تقرير مؤسسي + جلسة استشارية مع خبير\",\"price\":\"4999.00\",\"currencyCode\":\"SAR\",\"features\":[\"questionnaire\",\"roi\",\"irr\",\"npv\",\"html_report\",\"consultation\"],\"includesConsultation\":true}]}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/templates",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":[{\"id\":3,\"sector\":\"fintech\",\"name\":\"Fintech\",\"description\":\"Template for financial technology startups\",\"questionCount\":5},{\"id\":4,\"sector\":\"healthtech\",\"name\":\"HealthTech\",\"description\":\"قالب دراسة جدوى للصحة الرقمية\",\"questionCount\":3},{\"id\":5,\"sector\":\"legal\",\"name\":\"Legal \\/ RegTech\",\"description\":\"قالب لخدمات قانونية وتقنية امتثال\",\"questionCount\":2},{\"id\":2,\"sector\":\"retail\",\"name\":\"Retail \\/ E-commerce\",\"description\":\"Template for retail and e-commerce ventures\",\"questionCount\":5},{\"id\":1,\"sector\":\"technology\",\"name\":\"Technology \\/ SaaS\",\"description\":\"Template for software and technology startups\",\"questionCount\":6}]}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/templates/{id}",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the template.",
                                    "required": true,
                                    "example": "04",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "04"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":4,\"sector\":\"healthtech\",\"name\":\"HealthTech\",\"description\":\"قالب دراسة جدوى للصحة الرقمية\",\"questionnaire\":[{\"id\":\"product\",\"type\":\"text\",\"label\":\"المنتج الطبي\\/الرقمي\",\"required\":true},{\"id\":\"regulatory\",\"type\":\"text\",\"label\":\"متطلبات تنظيمية\",\"required\":true},{\"id\":\"growth_rate\",\"type\":\"number\",\"label\":\"نمو سنوي %\",\"required\":true}],\"defaultFinancials\":{\"discount_rate\":0.14,\"operating_margin\":0.18,\"annual_revenue_y1\":400000,\"annual_revenue_y2\":1200000,\"annual_revenue_y3\":2800000,\"initial_investment\":800000}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/studies",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Create feasibility study",
                                "description": "Supports bilingual fields and multipart attachments (`gallery_images[]`, `documents[]`).",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "package_id": {
                                    "name": "package_id",
                                    "description": "Package ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "template_id": {
                                    "name": "template_id",
                                    "description": "Template ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "Arabic title.",
                                    "required": true,
                                    "example": "Feasibility study — SaaS",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "startup_id": {
                                    "name": "startup_id",
                                    "description": "optional Linked startup ID.",
                                    "required": false,
                                    "example": 9,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "title_en": {
                                    "name": "title_en",
                                    "description": "optional English title.",
                                    "required": false,
                                    "example": "explicabo",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "optional Arabic description.",
                                    "required": false,
                                    "example": "Voluptatem numquam eos odio rerum voluptatem laudantium autem.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description_en": {
                                    "name": "description_en",
                                    "description": "optional English description.",
                                    "required": false,
                                    "example": "quas",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "optional Sector (Arabic).",
                                    "required": false,
                                    "example": "quis",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector_en": {
                                    "name": "sector_en",
                                    "description": "optional Sector (English).",
                                    "required": false,
                                    "example": "rerum",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "cover_image": {
                                    "name": "cover_image",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "gallery_images": {
                                    "name": "gallery_images",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "documents": {
                                    "name": "documents",
                                    "description": "Must be a file. Must not be greater than 20480 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "package_id": 1,
                                "template_id": 1,
                                "title": "Feasibility study — SaaS",
                                "startup_id": 9,
                                "title_en": "explicabo",
                                "description": "Voluptatem numquam eos odio rerum voluptatem laudantium autem.",
                                "description_en": "quas",
                                "sector": "quis",
                                "sector_en": "rerum"
                            },
                            "fileParameters": {
                                "cover_image": null,
                                "gallery_images": [
                                    null
                                ],
                                "documents": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "0"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/answers",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "6318",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "6318"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "answers": {
                                    "name": "answers",
                                    "description": "",
                                    "required": true,
                                    "example": [],
                                    "type": "object",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials": {
                                    "name": "financials",
                                    "description": "",
                                    "required": false,
                                    "example": null,
                                    "type": "object",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.initial_investment": {
                                    "name": "financials.initial_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 76,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.annual_cash_flows": {
                                    "name": "financials.annual_cash_flows",
                                    "description": "",
                                    "required": false,
                                    "example": [
                                        219.274051
                                    ],
                                    "type": "number[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.discount_rate": {
                                    "name": "financials.discount_rate",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 23,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.projected_revenue": {
                                    "name": "financials.projected_revenue",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 63,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.projected_costs": {
                                    "name": "financials.projected_costs",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 63,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "answers": [],
                                "financials": {
                                    "initial_investment": 76,
                                    "annual_cash_flows": [
                                        219.274051
                                    ],
                                    "discount_rate": 23,
                                    "projected_revenue": 63,
                                    "projected_costs": 63
                                }
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/calculate",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "718",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "718"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/request-payment",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "1458",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "1458"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/confirm-payment",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Confirm online payment",
                                "description": "Marks study as paid and applies platform/provider commission split. Returns `commission` object in `result`.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_KEY}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "5",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "5"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hEdafav6Ze84k6PD1V5g3bc"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/mark-paid",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "29",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "29"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/generate-report",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "5",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "5"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/export",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/requests",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 500,
                                    "content": "{\"success\":false,\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"result\":null,\"error\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"exception\":{\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458\",\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"line\":30,\"code\":0,\"trace\":[{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"__construct\",\"class\":\"App\\\\Http\\\\Resources\\\\BaseResource\",\"type\":\"->\",\"args\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},0]},{\"function\":\"Illuminate\\\\Support\\\\Traits\\\\{closure}\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},0]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Arr.php\",\"line\":754,\"function\":\"array_map\",\"args\":[{},[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],[0,1,2,3,4,5,6,7,8,9]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Collection.php\",\"line\":809,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Arr\",\"type\":\"::\",\"args\":[[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Database\\\\Eloquent\\\\Collection.php\",\"line\":418,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"map\",\"class\":\"Illuminate\\\\Database\\\\Eloquent\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Support\\\\Traits\\\\ForwardsCalls.php\",\"line\":23,\"function\":\"mapInto\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pagination\\\\AbstractPaginator.php\",\"line\":801,\"function\":\"forwardCallTo\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\CollectsResources.php\",\"line\":35,\"function\":\"__call\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection.php\",\"line\":53,\"function\":\"collectResource\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection.php\",\"line\":31,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":96,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37},\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":81,\"function\":\"newCollection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Services\\\\ConsultingService.php\",\"line\":53,\"function\":\"collection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController.php\",\"line\":34,\"function\":\"listRequests\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Services\\\\ConsultingService\",\"type\":\"->\",\"args\":[[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\ControllerDispatcher.php\",\"line\":46,\"function\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":265,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\ControllerDispatcher\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"index\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":211,\"function\":\"runController\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":808,\"function\":\"run\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Routing\\\\{closure}\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\LastUserActivity.php\",\"line\":46,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\LastUserActivity\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\BannedUser.php\",\"line\":45,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\BannedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\DemoRestriction.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\DemoRestriction\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser.php\",\"line\":40,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\GetLocalization.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\GetLocalization\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\RequirementsChecker.php\",\"line\":44,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\RequirementsChecker\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings.php\",\"line\":50,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":123,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":88,\"function\":\"handleRequestUsingNamedLimiter\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\",{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":26,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\{closure}\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":25,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\VerifyAPIAccess.php\",\"line\":47,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\VerifyAPIAccess\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":103,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":45,\"function\":\"handleApi\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":807,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":786,\"function\":\"runRouteWithinStack\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":750,\"function\":\"runRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":739,\"function\":\"dispatchToRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":200,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Foundation\\\\Http\\\\{closure}\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\barryvdh\\\\laravel-debugbar\\\\src\\\\Middleware\\\\InjectDebugbar.php\",\"line\":59,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Barryvdh\\\\Debugbar\\\\Middleware\\\\InjectDebugbar\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\packages\\\\larapen\\\\honeypot\\\\src\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam.php\",\"line\":15,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Larapen\\\\Honeypot\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull.php\",\"line\":31,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings.php\",\"line\":51,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize.php\",\"line\":27,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance.php\",\"line\":114,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\HandleCors.php\",\"line\":61,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\HandleCors\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\TrustProxies.php\",\"line\":58,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\TrustProxies\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":175,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":144,\"function\":\"sendRequestThroughRouter\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":256,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":249,\"function\":\"callLaravelRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":86,\"function\":\"makeApiCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":39,\"function\":\"makeResponseCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":240,\"function\":\"__invoke\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":165,\"function\":\"iterateThroughStrategies\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[\"responses\",{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":97,\"function\":\"fetchResponses\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":125,\"function\":\"processRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":72,\"function\":\"extractEndpointsInfoFromLaravelApp\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}],[],[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":50,\"function\":\"extractEndpointsInfoAndWriteToDisk\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[{},false]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Commands\\\\GenerateDocumentation.php\",\"line\":55,\"function\":\"get\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":36,\"function\":\"handle\",\"class\":\"Knuckles\\\\Scribe\\\\Commands\\\\GenerateDocumentation\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Util.php\",\"line\":43,\"function\":\"Illuminate\\\\Container\\\\{closure}\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":96,\"function\":\"unwrapIfClosure\",\"class\":\"Illuminate\\\\Container\\\\Util\",\"type\":\"::\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":35,\"function\":\"callBoundMethod\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Container.php\",\"line\":754,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],[],null]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":211,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\Container\",\"type\":\"->\",\"args\":[[{},\"handle\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Command\\\\Command.php\",\"line\":318,\"function\":\"execute\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":180,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Command\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":1074,\"function\":\"run\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":341,\"function\":\"doRunCommand\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":192,\"function\":\"doRun\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Console\\\\Kernel.php\",\"line\":197,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Application.php\",\"line\":1234,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Console\\\\Kernel\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\artisan\",\"line\":13,\"function\":\"handleCommand\",\"class\":\"Illuminate\\\\Foundation\\\\Application\",\"type\":\"->\",\"args\":[{}]}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "4693",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4693"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Consulting request not found.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Create consulting request",
                                "description": "Use `category` matching active `consulting_service_catalog.code`. `financial` uses `financial_accounting` commission rates.\nMultipart: `gallery_images[]`, `documents[]`.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_KEY}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "startup_id": {
                                    "name": "startup_id",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 18,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "category": {
                                    "name": "category",
                                    "description": "Catalog code.",
                                    "required": true,
                                    "example": "legal",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "",
                                    "required": true,
                                    "example": "repudiandae",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "budget_min": {
                                    "name": "budget_min",
                                    "description": "optional",
                                    "required": false,
                                    "example": 269.40432,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "budget_max": {
                                    "name": "budget_max",
                                    "description": "optional",
                                    "required": false,
                                    "example": 23310.31072,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "pnv",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "deadline_at": {
                                    "name": "deadline_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:07",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "title_en": {
                                    "name": "title_en",
                                    "description": "optional",
                                    "required": false,
                                    "example": "voluptas",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "",
                                    "required": true,
                                    "example": "Dolore iusto porro iste nesciunt totam vel.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description_en": {
                                    "name": "description_en",
                                    "description": "optional",
                                    "required": false,
                                    "example": "natus",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "optional",
                                    "required": false,
                                    "example": "unde",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector_en": {
                                    "name": "sector_en",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "twfyzmyurbfw",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "cover_image": {
                                    "name": "cover_image",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "gallery_images": {
                                    "name": "gallery_images",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "documents": {
                                    "name": "documents",
                                    "description": "Must be a file. Must not be greater than 20480 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "startup_id": 18,
                                "category": "legal",
                                "title": "repudiandae",
                                "budget_min": 269.40432,
                                "budget_max": 23310.31072,
                                "currency_code": "pnv",
                                "deadline_at": "2026-05-21T04:42:07",
                                "title_en": "voluptas",
                                "description": "Dolore iusto porro iste nesciunt totam vel.",
                                "description_en": "natus",
                                "sector": "unde",
                                "sector_en": "twfyzmyurbfw"
                            },
                            "fileParameters": {
                                "cover_image": null,
                                "gallery_images": [
                                    null
                                ],
                                "documents": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer a3f6hb1DEdvk4PV5acg6Z8e"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}/cancel",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "741652902",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "741652902"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}/proposals",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "8251",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8251"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "amount": {
                                    "name": "amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 53,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "ecc",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "delivery_days": {
                                    "name": "delivery_days",
                                    "description": "Must be at least 1. Must not be greater than 365.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "proposal_text": {
                                    "name": "proposal_text",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": true,
                                    "example": "lfeedkealhaqjfz",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "amount": 53,
                                "currency_code": "ecc",
                                "delivery_days": 2,
                                "proposal_text": "lfeedkealhaqjfz"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}/proposals/{proposalId}/accept",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "8166",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "proposalId": {
                                    "name": "proposalId",
                                    "description": "",
                                    "required": true,
                                    "example": "132789987",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8166",
                                "proposalId": "132789987"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/engagements",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "5339",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "5339"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/complete",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "51",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "51"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/review",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "2774",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "2774"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "rating": {
                                    "name": "rating",
                                    "description": "Must be at least 1. Must not be greater than 5.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "comment": {
                                    "name": "comment",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "y",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "rating": 1,
                                "comment": "y"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/milestones/{milestoneId}/fund",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "8674048",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "55",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8674048",
                                "milestoneId": "55"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/milestones/{milestoneId}/release",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "314",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "034940",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "314",
                                "milestoneId": "034940"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consultant/profile/{userId}",
                            "metadata": {
                                "groupName": "Consultant & Providers",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": "26",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": "26"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":10,\"userId\":26,\"bio\":null,\"specialties\":[],\"hourlyRate\":null,\"currencyCode\":null,\"ratingAvg\":null,\"reviewsCount\":null,\"isVerified\":false,\"user\":{\"id\":26,\"name\":\"لينا الخريجي\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consultant/profile",
                            "metadata": {
                                "groupName": "Consultant & Providers",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/consultant/profile",
                            "metadata": {
                                "groupName": "Consultant & Providers",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "bio": {
                                    "name": "bio",
                                    "description": "Must not be greater than 10000 characters.",
                                    "required": false,
                                    "example": "uqiba",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "specialties": {
                                    "name": "specialties",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": [
                                        "osnivesnktl"
                                    ],
                                    "type": "string[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "hourly_rate": {
                                    "name": "hourly_rate",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 57,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "htn",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "bio": "uqiba",
                                "specialties": [
                                    "osnivesnktl"
                                ],
                                "hourly_rate": 57,
                                "currency_code": "htn"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/founder/profile",
                            "metadata": {
                                "groupName": "Founder",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/founder/profile",
                            "metadata": {
                                "groupName": "Founder",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "headline": {
                                    "name": "headline",
                                    "description": "Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "lzoxyednsfne",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "bio": {
                                    "name": "bio",
                                    "description": "Must not be greater than 10000 characters.",
                                    "required": false,
                                    "example": "cjnnnqo",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://beatty.org/vitae-consequatur-vitae-ut-rem-distinctio-eligendi-totam.html",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "twitter_url": {
                                    "name": "twitter_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "https://shields.com/reiciendis-et-sed-magni-nihil-quis-at.html",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "experience_years": {
                                    "name": "experience_years",
                                    "description": "Must be at least 0. Must not be greater than 80.",
                                    "required": false,
                                    "example": 10,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "headline": "lzoxyednsfne",
                                "bio": "cjnnnqo",
                                "linkedin_url": "http://beatty.org/vitae-consequatur-vitae-ut-rem-distinctio-eligendi-totam.html",
                                "twitter_url": "https://shields.com/reiciendis-et-sed-magni-nihil-quis-at.html",
                                "experience_years": 10
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/profile",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/investor/profile",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "investor_type": {
                                    "name": "investor_type",
                                    "description": "",
                                    "required": false,
                                    "example": "corporate",
                                    "type": "string",
                                    "enumValues": [
                                        "angel",
                                        "vc",
                                        "family_office",
                                        "corporate",
                                        "syndicate"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "organization_name": {
                                    "name": "organization_name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "lhdvmzhyptblqvszldhvu",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "bio": {
                                    "name": "bio",
                                    "description": "Must not be greater than 10000 characters.",
                                    "required": false,
                                    "example": "avsm",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://kerluke.com/aut-incidunt-eos-velit-cupiditate-nesciunt-ab",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ticket_min": {
                                    "name": "ticket_min",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 20,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ticket_max": {
                                    "name": "ticket_max",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 22,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "wfo",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "is_accredited": {
                                    "name": "is_accredited",
                                    "description": "",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "preferred_sectors": {
                                    "name": "preferred_sectors",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": [
                                        "vjwggpdcafupikynatmqg"
                                    ],
                                    "type": "string[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "preferred_stages": {
                                    "name": "preferred_stages",
                                    "description": "Must not be greater than 32 characters.",
                                    "required": false,
                                    "example": [
                                        "ypazuoqnnmxosunaf"
                                    ],
                                    "type": "string[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "preferred_country_code": {
                                    "name": "preferred_country_code",
                                    "description": "Must be 2 characters.",
                                    "required": false,
                                    "example": "ac",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "investor_type": "corporate",
                                "organization_name": "lhdvmzhyptblqvszldhvu",
                                "bio": "avsm",
                                "linkedin_url": "http://kerluke.com/aut-incidunt-eos-velit-cupiditate-nesciunt-ab",
                                "ticket_min": 20,
                                "ticket_max": 22,
                                "currency_code": "wfo",
                                "is_accredited": false,
                                "preferred_sectors": [
                                    "vjwggpdcafupikynatmqg"
                                ],
                                "preferred_stages": [
                                    "ypazuoqnnmxosunaf"
                                ],
                                "preferred_country_code": "ac"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/investor/profile/submit-kyc",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/portfolio",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/matches",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/watchlist",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/investor/watchlist/{startupId}",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "885",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "885"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "mtariftgcmm",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "notes": "mtariftgcmm"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/investor/watchlist/{startupId}",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "0"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "startup_id": {
                                    "name": "startup_id",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 40,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "funding_round_id": {
                                    "name": "funding_round_id",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 34,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "krfpbpxp",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Doloremque nam similique fugit rerum omnis eveniet impedit.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 26,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "carry_percent": {
                                    "name": "carry_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 18,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "minimum_commitment": {
                                    "name": "minimum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 1,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_commitment": {
                                    "name": "maximum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 90,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "qar",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:10",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "startup_id": 40,
                                "funding_round_id": 34,
                                "name": "krfpbpxp",
                                "description": "Doloremque nam similique fugit rerum omnis eveniet impedit.",
                                "target_amount": 26,
                                "carry_percent": 18,
                                "minimum_commitment": 1,
                                "maximum_commitment": 90,
                                "currency_code": "qar",
                                "closes_at": "2026-05-21T04:42:10"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "4933",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4933"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "6",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "6"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "ratohlar",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Expedita aut ut quas velit ullam aperiam.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 72,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "carry_percent": {
                                    "name": "carry_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 1,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "minimum_commitment": {
                                    "name": "minimum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 88,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_commitment": {
                                    "name": "maximum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 4,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:10",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "ratohlar",
                                "description": "Expedita aut ut quas velit ullam aperiam.",
                                "target_amount": 72,
                                "carry_percent": 1,
                                "minimum_commitment": 88,
                                "maximum_commitment": 4,
                                "closes_at": "2026-05-21T04:42:10"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/open",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "24760",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "24760"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/close",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "15",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "15"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/dashboard",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "82",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "82"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/join",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "4347",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4347"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/leave",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "73430",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "73430"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/members",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "28",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "28"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/members/{memberId}/approve",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "4",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "05",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4",
                                "memberId": "05"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/members/{memberId}/reject",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "2",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "770832",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "2",
                                "memberId": "770832"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/commitments/{commitmentId}",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "commitmentId": {
                                    "name": "commitmentId",
                                    "description": "",
                                    "required": true,
                                    "example": "1778017",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "commitmentId": "1778017"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/{id}/hold",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the escrow.",
                                    "required": true,
                                    "example": "7",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "7"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/{id}/release",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the escrow.",
                                    "required": true,
                                    "example": "9562",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "9562"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/{id}/refund",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the escrow.",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/investors/{userId}/approve-kyc",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": "57",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": "57"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/investors/{userId}/reject-kyc",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": "6",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": "6"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/approve",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "075",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "075"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/reject",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "rejection_reason": {
                                    "name": "rejection_reason",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": true,
                                    "example": "dm",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "rejection_reason": "dm"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/fundraising",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "669",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "669"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/close-round",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "7",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "7"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/suspend",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "551",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "551"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/auth/login",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Log in",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address or username (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "user@demosite.com",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "123456",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The user's mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "quas",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "email": "user@demosite.com",
                                "password": "123456",
                                "auth_field": "email",
                                "phone": null,
                                "phone_country": null,
                                "captcha_key": "quas"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/logout/{userId}",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Log out",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "The ID of the user to logout.",
                                    "required": false,
                                    "example": 4,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": 4
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 400,
                                    "content": "{\"success\":false,\"message\":\"An error occurred and the logout failed.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 3fVDZa4hPdvgaEeb6kc8651"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/auth/password/forgot",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Forgot password",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address or username (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "user@demosite.com",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The user's mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "qui",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "email": "user@demosite.com",
                                "auth_field": "email",
                                "phone": null,
                                "phone_country": null,
                                "captcha_key": "qui"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/auth/password/reset",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Reset password",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address or username (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "token": {
                                    "name": "token",
                                    "description": "",
                                    "required": true,
                                    "example": "ratione",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The user's mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password_confirmation": {
                                    "name": "password_confirmation",
                                    "description": "The confirmation of the user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "dolorum",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "email": "john.doe@domain.tld",
                                "token": "ratione",
                                "phone_country": null,
                                "password": "js!X07$z61hLA",
                                "auth_field": "email",
                                "phone": null,
                                "password_confirmation": "js!X07$z61hLA",
                                "captcha_key": "dolorum"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/connect/{provider}",
                            "metadata": {
                                "groupName": "Social Auth",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get target URL",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "provider": {
                                    "name": "provider",
                                    "description": "The provider's name - Possible values: facebook, linkedin, or google.",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "provider": null
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"API endpoint not found.\"}",
                                    "headers": {
                                        "cache-control": "no-cache, private",
                                        "content-type": "application/json",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/connect/{provider}/callback",
                            "metadata": {
                                "groupName": "Social Auth",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get user info",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "provider": {
                                    "name": "provider",
                                    "description": "The provider's name - Possible values: facebook, linkedin, or google.",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "provider": null
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"API endpoint not found.\"}",
                                    "headers": {
                                        "cache-control": "no-cache, private",
                                        "content-type": "application/json",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/verify/{entityMetadataKey}/{entityId}/resend/email",
                            "metadata": {
                                "groupName": "Verification",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Email: Re-send link",
                                "description": "Re-send email verification link to the user",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "entityMetadataKey": {
                                    "name": "entityMetadataKey",
                                    "description": "The slug of the entity to verify ('users' or 'posts').",
                                    "required": true,
                                    "example": "users",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entityId": {
                                    "name": "entityId",
                                    "description": "The entity/model identifier (ID).",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "entityMetadataKey": "users",
                                "entityId": 3
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":false,\"message\":\"Your Email address is already verified.\",\"result\":{\"id\":3,\"name\":\"خالد الشمري\",\"username\":\"demo.founder3\",\"two_factor_enabled\":false,\"two_factor_method\":\"email\",\"updated_at\":\"2026-05-21T00:47:21.000000Z\",\"original_updated_at\":\"2026-05-21 00:47:21\",\"original_last_activity\":null,\"created_at_formatted\":\"2026-05-21 01:10\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"p_is_online\":false,\"country_flag_url\":\"http:\\/\\/127.0.0.1:8000\\/images\\/flags\\/circle\\/16\\/sa.png\"},\"extra\":{\"isUnverifiedField\":false,\"fieldVerificationSent\":false,\"resendUrl\":\"http:\\/\\/127.0.0.1:8000\\/auth\\/verify\\/users\\/3\\/resend\\/email\",\"field\":\"email\",\"fieldValue\":\"demo.founder3@platform.test\",\"fieldHiddenValue\":\"de**********************est\",\"resendLocked\":false}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/verify/{entityMetadataKey}/{entityId}/resend/sms",
                            "metadata": {
                                "groupName": "Verification",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "SMS: Re-send code",
                                "description": "Re-send mobile phone verification token by SMS",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "entityMetadataKey": {
                                    "name": "entityMetadataKey",
                                    "description": "The slug of the entity to verify ('users' or 'posts').",
                                    "required": true,
                                    "example": "users",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entityId": {
                                    "name": "entityId",
                                    "description": "The entity/model identifier (ID).",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "entityMetadataKey": "users",
                                "entityId": 3
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":false,\"message\":\"Your Phone Number is already verified.\",\"result\":{\"id\":3,\"name\":\"خالد الشمري\",\"username\":\"demo.founder3\",\"two_factor_enabled\":false,\"two_factor_method\":\"email\",\"updated_at\":\"2026-05-21T00:47:21.000000Z\",\"original_updated_at\":\"2026-05-21 00:47:21\",\"original_last_activity\":null,\"created_at_formatted\":\"2026-05-21 01:10\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"p_is_online\":false,\"country_flag_url\":\"http:\\/\\/127.0.0.1:8000\\/images\\/flags\\/circle\\/16\\/sa.png\"},\"extra\":{\"isUnverifiedField\":false,\"fieldVerificationSent\":false,\"resendUrl\":\"http:\\/\\/127.0.0.1:8000\\/api\\/auth\\/verify\\/users\\/3\\/resend\\/sms\",\"field\":\"phone\",\"fieldValue\":\"\",\"fieldHiddenValue\":\"********\",\"resendLocked\":false}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/verify/{entityMetadataKey}/{field}/{token?}",
                            "metadata": {
                                "groupName": "Verification",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Verification",
                                "description": "Verify the user's email address or mobile phone number",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "entityMetadataKey": {
                                    "name": "entityMetadataKey",
                                    "description": "The slug of the entity to verify ('users' or 'posts').",
                                    "required": true,
                                    "example": "users",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "field": {
                                    "name": "field",
                                    "description": "The field to verify.",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "token": {
                                    "name": "token",
                                    "description": "The verification token.",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "entityMetadataKey": "users",
                                "field": "email",
                                "token": null
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 400,
                                    "content": "{\"success\":false,\"message\":\"The verification token or code is missing.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/genders",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List genders",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"1\":{\"id\":1,\"name\":\"MALE\",\"label\":\"Male\",\"title\":\"Mr.\"},\"2\":{\"id\":2,\"name\":\"FEMALE\",\"label\":\"Female\",\"title\":\"Mrs\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/genders/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get gender",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The gender's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"MALE\",\"label\":\"Male\",\"title\":\"Mr.\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/userTypes",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List user types",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"2\":{\"id\":2,\"name\":\"INDIVIDUAL\",\"label\":\"Individual\"},\"1\":{\"id\":1,\"name\":\"PROFESSIONAL\",\"label\":\"Professional\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/userTypes/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get user type",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user type's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"PROFESSIONAL\",\"label\":\"Professional\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List users",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 403,
                                    "content": "{\"success\":false,\"message\":\"Forbidden\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get user",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_KEY}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 3
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: country,userType,gender,countPostsViews,countPosts,countSavedPosts.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":3,\"name\":\"خالد الشمري\",\"username\":\"demo.founder3\",\"two_factor_enabled\":false,\"two_factor_method\":\"email\",\"updated_at\":\"2026-05-21T00:47:21.000000Z\",\"original_updated_at\":\"2026-05-21 00:47:21\",\"original_last_activity\":null,\"created_at_formatted\":\"2026-05-21 01:10\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"p_is_online\":false,\"country_flag_url\":\"http:\\/\\/127.0.0.1:8000\\/images\\/flags\\/circle\\/16\\/sa.png\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hg48va6fEPcdeDVZbk1a563"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/users",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store user",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The mobile phone number of the user (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Field to allow user to accept or not the website terms.",
                                    "required": true,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_type_id": {
                                    "name": "user_type_id",
                                    "description": "The ID of user type.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "gender_id": {
                                    "name": "gender_id",
                                    "description": "The ID of gender.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "photo_path": {
                                    "name": "photo_path",
                                    "description": "The file of user photo.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Field to hide or show the user phone number in public.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "username": {
                                    "name": "username",
                                    "description": "The user's username.",
                                    "required": false,
                                    "example": "john_doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password_confirmation": {
                                    "name": "password_confirmation",
                                    "description": "The confirmation of the user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "disable_comments": {
                                    "name": "disable_comments",
                                    "description": "Field to disable or enable comments on the user's listings.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "create_from_ip": {
                                    "name": "create_from_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Field to allow user to accept or not marketing offers sending.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "time_zone": {
                                    "name": "time_zone",
                                    "description": "The user's time zone.",
                                    "required": false,
                                    "example": "America/New_York",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "alias",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "John Doe",
                                "country_code": "US",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "password": "js!X07$z61hLA",
                                "accept_terms": true,
                                "email": "john.doe@domain.tld",
                                "language_code": "en",
                                "user_type_id": 1,
                                "gender_id": 1,
                                "phone_hidden": false,
                                "username": "john_doe",
                                "password_confirmation": "js!X07$z61hLA",
                                "disable_comments": true,
                                "create_from_ip": "127.0.0.1",
                                "accept_marketing_offers": false,
                                "time_zone": "America/New_York",
                                "captcha_key": "alias"
                            },
                            "fileParameters": {
                                "photo_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users/{id}/stats",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "User's mini stats",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 3
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer g8EaZv3hD4Vc6kd1Pbea56f"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users/{id}/photo/delete",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete user's photo",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer Ev86efPD35c6Zkaab4dh1gV"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}/photo",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update user's photo",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "photo_path": {
                                    "name": "photo_path",
                                    "description": "Must be a file. Must be at least 0 kilobytes. Must not be greater than 2500 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "latest_update_ip": "127.0.0.1"
                            },
                            "fileParameters": {
                                "photo_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hfPbZa153Dv8V4Ed6ageck6"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}/preferences",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update user's preferences",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "disable_comments": {
                                    "name": "disable_comments",
                                    "description": "Field to disable or enable comments on the user's listings.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Field to allow user to accept or not the website terms.",
                                    "required": true,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Field to allow user to accept or not marketing offers sending.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "time_zone": {
                                    "name": "time_zone",
                                    "description": "The user's time zone.",
                                    "required": false,
                                    "example": "America/New_York",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "disable_comments": true,
                                "latest_update_ip": "127.0.0.1",
                                "accept_terms": true,
                                "accept_marketing_offers": false,
                                "time_zone": "America/New_York"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 483Zbcf5ake1dP6agvDhE6V"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}/save-theme-preference",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update the user's theme preference",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "theme": {
                                    "name": "theme",
                                    "description": "The user's theme preference value.",
                                    "required": true,
                                    "example": "light, dark or system",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "theme": "light, dark or system"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update user",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The mobile phone number of the user (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "username": {
                                    "name": "username",
                                    "description": "The user's username.",
                                    "required": false,
                                    "example": "john_doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address (Required when 'auth_field' value is 'email').",
                                    "required": true,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_type_id": {
                                    "name": "user_type_id",
                                    "description": "The ID of user type.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "gender_id": {
                                    "name": "gender_id",
                                    "description": "The ID of gender.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "photo_path": {
                                    "name": "photo_path",
                                    "description": "The file of user photo.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "remove_photo": {
                                    "name": "remove_photo",
                                    "description": "Enable the user photo removal ('0' or '1'). When its value is '1' the user's photo file will be removed and the 'photo_path' column will be empty.",
                                    "required": false,
                                    "example": 0,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Field to hide or show the user phone number in public.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password_confirmation": {
                                    "name": "password_confirmation",
                                    "description": "The confirmation of the user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "disable_comments": {
                                    "name": "disable_comments",
                                    "description": "Field to disable or enable comments on the user's listings.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Field to allow user to accept or not the website terms.",
                                    "required": true,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Field to allow user to accept or not marketing offers sending.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "time_zone": {
                                    "name": "time_zone",
                                    "description": "The user's time zone.",
                                    "required": false,
                                    "example": "America/New_York",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "John Doe",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "username": "john_doe",
                                "email": "john.doe@domain.tld",
                                "country_code": "US",
                                "language_code": "en",
                                "user_type_id": 1,
                                "gender_id": 1,
                                "remove_photo": 0,
                                "phone_hidden": false,
                                "password": "js!X07$z61hLA",
                                "password_confirmation": "js!X07$z61hLA",
                                "disable_comments": true,
                                "latest_update_ip": "127.0.0.1",
                                "accept_terms": true,
                                "accept_marketing_offers": false,
                                "time_zone": "America/New_York"
                            },
                            "fileParameters": {
                                "photo_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer vaf4dcakb6EZVgD8e3hP156"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/users/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete user",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 3h1d6cvbkgDEfaaP854Z6eV"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/postTypes",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List listing types",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"1\":{\"id\":1,\"name\":\"INDIVIDUAL\",\"label\":\"Individual\"},\"2\":{\"id\":2,\"name\":\"PROFESSIONAL\",\"label\":\"Professional\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/postTypes/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get listing type",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The listing type's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"INDIVIDUAL\",\"label\":\"Individual\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/reportTypes",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List report types",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"id\":5,\"name\":\"Other\"},{\"id\":4,\"name\":\"Wrong category\"},{\"id\":3,\"name\":\"Spam\"},{\"id\":2,\"name\":\"Duplicate\"},{\"id\":1,\"name\":\"Fraud\"}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/reportTypes/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get report type",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The report type's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"Fraud\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/posts",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List listings",
                                "description": "Note: The main picture of the listings is fetched via a 'picture' attribute (added as fake column),\nthat provide default picture as image placeholder when the listing has no pictures.\nIn addition, for performance reasons, default picture is also provided when the 'pictures' table is not embed in the endpoint.\nSo you need to embed the picture table like: /api/posts?embed=pictures to retrieve right main picture data.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "op": {
                                    "name": "op",
                                    "description": "Type of listings list (optional) - Possible value: search,premium,latest,free,premiumFirst,similar.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "postId": {
                                    "name": "postId",
                                    "description": "Base Listing's ID to get similar listings (optional) - Mandatory to get similar listings (when op=similar).",
                                    "required": false,
                                    "example": null,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "distance": {
                                    "name": "distance",
                                    "description": "Distance to get similar listings (optional) - Also optional when the type of similar listings is based on the current listing's category. Mandatory when the type of similar listings is based on the current listing's location. So, its usage is limited to get similar listings (when op=similar) based on the current listing's location.",
                                    "required": false,
                                    "example": null,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "belongLoggedUser": {
                                    "name": "belongLoggedUser",
                                    "description": "Force users to be logged to get data that belongs to him. Authentication token needs to be sent in the header, and the \"op\" parameter needs to be null or unset - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pendingApproval": {
                                    "name": "pendingApproval",
                                    "description": "To list a user's listings in pending approval. Authentication token needs to be sent in the header, and the \"op\" parameter needs to be null or unset - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "archived": {
                                    "name": "archived",
                                    "description": "To list a user's archived listings. Authentication token needs to be sent in the header, and the \"op\" parameter need be null or unset - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user,category,parent,postType,city,currency,savedByLoggedUser,pictures,payment,package.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "op": null,
                                "postId": null,
                                "distance": null,
                                "belongLoggedUser": false,
                                "pendingApproval": true,
                                "archived": true,
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No listings found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/posts/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get listing",
                                "description": "Note: The main picture of the listing is fetched via a 'picture' attribute (added as fake column),\nthat provide default picture as image placeholder when the listing has no pictures.\nIn addition, for performance reasons, default picture is also provided when the 'pictures' table is not embed in the endpoint.\nSo you need to embed the picture table like: /api/posts/1?embed=pictures to retrieve right main picture data.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The post/listing's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 2
                            },
                            "queryParameters": {
                                "unactivatedIncluded": {
                                    "name": "unactivatedIncluded",
                                    "description": "Include or not unactivated entries - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "belongLoggedUser": {
                                    "name": "belongLoggedUser",
                                    "description": "Force users to be logged to get data that belongs to him - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "noCache": {
                                    "name": "noCache",
                                    "description": "Disable the cache for this request - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user,category,parent,postType,city,currency,savedByLoggedUser,pictures,payment,package,fieldsValues.",
                                    "required": false,
                                    "example": "user,postType",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "detailed": {
                                    "name": "detailed",
                                    "description": "Allow getting the listing's details with all its relationships (No need to set the 'embed' parameter).",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "unactivatedIncluded": true,
                                "belongLoggedUser": false,
                                "noCache": false,
                                "embed": "user,postType",
                                "detailed": false
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Listing not found\",\"result\":null,\"error\":\"Listing not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/posts",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store listing",
                                "description": "For both types of listing's creation (Single step or Multi steps).\nNote: The field 'admin_code' is only available when the listing's country's 'admin_type' column is set to 1 or 2.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "category_id": {
                                    "name": "category_id",
                                    "description": "The category's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "The listing's title.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "The listing's description.",
                                    "required": true,
                                    "example": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "contact_name": {
                                    "name": "contact_name",
                                    "description": "The listing's author name.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The listing's author mobile number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "city_id": {
                                    "name": "city_id",
                                    "description": "The city's ID.",
                                    "required": true,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Accept the website terms and conditions.",
                                    "required": true,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pictures": {
                                    "name": "pictures",
                                    "description": "The listing's pictures.",
                                    "required": true,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The listing's author email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_type_id": {
                                    "name": "post_type_id",
                                    "description": "The listing type's ID.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin_code": {
                                    "name": "admin_code",
                                    "description": "The administrative division's code.",
                                    "required": false,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "price": {
                                    "name": "price",
                                    "description": "The price.",
                                    "required": true,
                                    "example": 5000,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "negotiable": {
                                    "name": "negotiable",
                                    "description": "Negotiable price or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Mobile phone number will be hidden in public or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "create_from_ip": {
                                    "name": "create_from_ip",
                                    "description": "The listing's author IP address.",
                                    "required": false,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Accept to receive marketing offers or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "is_permanent": {
                                    "name": "is_permanent",
                                    "description": "Is it permanent post or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tags": {
                                    "name": "tags",
                                    "description": "Comma-separated tags list.",
                                    "required": false,
                                    "example": "car,automotive,tesla,cyber,truck",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "package_id": {
                                    "name": "package_id",
                                    "description": "The package's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payment_method_id": {
                                    "name": "payment_method_id",
                                    "description": "The payment method's ID (required when the selected package's price is > 0).",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "quisquam",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "category_id": 1,
                                "title": "John Doe",
                                "description": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                "contact_name": "John Doe",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "city_id": 5,
                                "accept_terms": false,
                                "email": "john.doe@domain.tld",
                                "country_code": "US",
                                "post_type_id": 1,
                                "admin_code": "0",
                                "price": 5000,
                                "negotiable": false,
                                "phone_hidden": false,
                                "create_from_ip": "127.0.0.1",
                                "accept_marketing_offers": false,
                                "is_permanent": false,
                                "tags": "car,automotive,tesla,cyber,truck",
                                "package_id": 2,
                                "payment_method_id": 5,
                                "captcha_key": "quisquam"
                            },
                            "fileParameters": {
                                "pictures": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer DP431h6Z6V5fbedacgav8kE"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/posts/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update listing",
                                "description": "Note: The fields 'pictures', 'package_id' and 'payment_method_id' are only available with the single step listing edition.\nThe field 'admin_code' is only available when the listing's country's 'admin_type' column is set to 1 or 2.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The post/listing's ID.",
                                    "required": true,
                                    "example": 14,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 14
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "category_id": {
                                    "name": "category_id",
                                    "description": "The category's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "The listing's title.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "The listing's description.",
                                    "required": true,
                                    "example": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "contact_name": {
                                    "name": "contact_name",
                                    "description": "The listing's author name.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The listing's author mobile number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "city_id": {
                                    "name": "city_id",
                                    "description": "The city's ID.",
                                    "required": true,
                                    "example": 20,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Accept the website terms and conditions.",
                                    "required": true,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The listing's author email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_type_id": {
                                    "name": "post_type_id",
                                    "description": "The listing type's ID.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin_code": {
                                    "name": "admin_code",
                                    "description": "The administrative division's code.",
                                    "required": false,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "price": {
                                    "name": "price",
                                    "description": "The price.",
                                    "required": true,
                                    "example": 5000,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "negotiable": {
                                    "name": "negotiable",
                                    "description": "Negotiable price or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Mobile phone number will be hidden in public or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The listing's author IP address.",
                                    "required": false,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Accept to receive marketing offers or no.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "is_permanent": {
                                    "name": "is_permanent",
                                    "description": "Is it permanent post or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tags": {
                                    "name": "tags",
                                    "description": "Comma-separated tags list.",
                                    "required": false,
                                    "example": "car,automotive,tesla,cyber,truck",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pictures": {
                                    "name": "pictures",
                                    "description": "The listing's pictures.",
                                    "required": true,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "package_id": {
                                    "name": "package_id",
                                    "description": "The package's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payment_method_id": {
                                    "name": "payment_method_id",
                                    "description": "The payment method's ID (Required when the selected package's price is > 0).",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "category_id": 1,
                                "title": "John Doe",
                                "description": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                "contact_name": "John Doe",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "city_id": 20,
                                "accept_terms": false,
                                "email": "john.doe@domain.tld",
                                "country_code": "US",
                                "post_type_id": 1,
                                "admin_code": "0",
                                "price": 5000,
                                "negotiable": false,
                                "phone_hidden": false,
                                "latest_update_ip": "127.0.0.1",
                                "accept_marketing_offers": true,
                                "is_permanent": false,
                                "tags": "car,automotive,tesla,cyber,truck",
                                "package_id": 2,
                                "payment_method_id": 5
                            },
                            "fileParameters": {
                                "pictures": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 6c14hZfDdgP58va3Ebak6Ve"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/posts/{ids}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete listing(s)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of listing(s).",
                                    "required": true,
                                    "example": "111111,222222,333333",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "111111,222222,333333"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer f1V5ZaPba4h6D683kEcegdv"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/categories",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List categories",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "parentId": {
                                    "name": "parentId",
                                    "description": "The ID of the parent category of the sub categories to retrieve.",
                                    "required": false,
                                    "example": 0,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "nestedIncluded": {
                                    "name": "nestedIncluded",
                                    "description": "If parent ID is not provided, are nested entries will be included? - Possible values: 0,1.",
                                    "required": false,
                                    "example": 0,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: parent,children.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "parentId": 0,
                                "nestedIncluded": 0,
                                "embed": null,
                                "sort": "-lft",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"id\":122,\"parent_id\":null,\"name\":\"Local Events\",\"slug\":\"local-events\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-regular fa-calendar-days\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":144,\"rgt\":158,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\",\"parentClosure\":null},{\"id\":114,\"parent_id\":null,\"name\":\"Learning\",\"slug\":\"learning\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-graduation-cap\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":134,\"rgt\":143,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\",\"parentClosure\":null}],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=6\",\"prev\":null,\"next\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":6,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=5\",\"label\":\"5\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=6\",\"label\":\"6\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories\",\"per_page\":2,\"to\":2,\"total\":12}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/categories/{slugOrId}",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get category",
                                "description": "Get category by its unique slug or ID.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "slugOrId": {
                                    "name": "slugOrId",
                                    "description": "The slug or ID of the category.",
                                    "required": true,
                                    "example": "cars",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "slugOrId": "cars"
                            },
                            "queryParameters": {
                                "parentCatSlug": {
                                    "name": "parentCatSlug",
                                    "description": "The slug of the parent category to retrieve used when category's slug provided instead of ID.",
                                    "required": false,
                                    "example": "automobiles",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "parentCatSlug": "automobiles"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":2,\"parent_id\":1,\"name\":\"Cars\",\"slug\":\"cars\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"bi bi-folder-fill\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":2,\"rgt\":3,\"depth\":1,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/categories/{id}/fields",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List category's fields",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the category.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The unique ID of the post.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "language_code": "en",
                                "post_id": 1
                            },
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":[{\"id\":1,\"belongs_to\":\"post\",\"name\":\"Car Brand\",\"type\":\"select\",\"max\":null,\"default_value\":\"\",\"required\":1,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":1,\"field_id\":1,\"value\":\"Toyota\",\"parent_id\":null,\"lft\":1,\"rgt\":2,\"depth\":null},{\"id\":2,\"field_id\":1,\"value\":\"BMW\",\"parent_id\":null,\"lft\":3,\"rgt\":4,\"depth\":null},{\"id\":3,\"field_id\":1,\"value\":\"Mercedes-Benz\",\"parent_id\":null,\"lft\":5,\"rgt\":6,\"depth\":null},{\"id\":4,\"field_id\":1,\"value\":\"Chevrolet\",\"parent_id\":null,\"lft\":7,\"rgt\":8,\"depth\":null},{\"id\":5,\"field_id\":1,\"value\":\"Cadillac\",\"parent_id\":null,\"lft\":9,\"rgt\":10,\"depth\":null},{\"id\":6,\"field_id\":1,\"value\":\"Buick\",\"parent_id\":null,\"lft\":11,\"rgt\":12,\"depth\":null},{\"id\":7,\"field_id\":1,\"value\":\"GMC\",\"parent_id\":null,\"lft\":13,\"rgt\":14,\"depth\":null},{\"id\":8,\"field_id\":1,\"value\":\"Ford\",\"parent_id\":null,\"lft\":15,\"rgt\":16,\"depth\":null},{\"id\":9,\"field_id\":1,\"value\":\"Chrysler\",\"parent_id\":null,\"lft\":17,\"rgt\":18,\"depth\":null},{\"id\":10,\"field_id\":1,\"value\":\"Dodge\",\"parent_id\":null,\"lft\":19,\"rgt\":20,\"depth\":null},{\"id\":11,\"field_id\":1,\"value\":\"Jeep\",\"parent_id\":null,\"lft\":21,\"rgt\":22,\"depth\":null},{\"id\":12,\"field_id\":1,\"value\":\"Tesla\",\"parent_id\":null,\"lft\":23,\"rgt\":24,\"depth\":null},{\"id\":13,\"field_id\":1,\"value\":\"Lexus\",\"parent_id\":null,\"lft\":25,\"rgt\":26,\"depth\":null},{\"id\":14,\"field_id\":1,\"value\":\"Suzuki\",\"parent_id\":null,\"lft\":27,\"rgt\":28,\"depth\":null},{\"id\":15,\"field_id\":1,\"value\":\"Mazda\",\"parent_id\":null,\"lft\":29,\"rgt\":30,\"depth\":null},{\"id\":16,\"field_id\":1,\"value\":\"Honda\",\"parent_id\":null,\"lft\":31,\"rgt\":32,\"depth\":null},{\"id\":17,\"field_id\":1,\"value\":\"Acura\",\"parent_id\":null,\"lft\":33,\"rgt\":34,\"depth\":null},{\"id\":18,\"field_id\":1,\"value\":\"Mitsubishi\",\"parent_id\":null,\"lft\":35,\"rgt\":36,\"depth\":null},{\"id\":19,\"field_id\":1,\"value\":\"Nissan\",\"parent_id\":null,\"lft\":37,\"rgt\":38,\"depth\":null},{\"id\":20,\"field_id\":1,\"value\":\"Infiniti\",\"parent_id\":null,\"lft\":39,\"rgt\":40,\"depth\":null},{\"id\":21,\"field_id\":1,\"value\":\"Audi\",\"parent_id\":null,\"lft\":41,\"rgt\":42,\"depth\":null},{\"id\":22,\"field_id\":1,\"value\":\"Volkswagen\",\"parent_id\":null,\"lft\":43,\"rgt\":44,\"depth\":null},{\"id\":23,\"field_id\":1,\"value\":\"Porsche\",\"parent_id\":null,\"lft\":45,\"rgt\":46,\"depth\":null},{\"id\":24,\"field_id\":1,\"value\":\"Opel\",\"parent_id\":null,\"lft\":47,\"rgt\":48,\"depth\":null},{\"id\":25,\"field_id\":1,\"value\":\"Jaguar\",\"parent_id\":null,\"lft\":49,\"rgt\":50,\"depth\":null},{\"id\":26,\"field_id\":1,\"value\":\"Land Rover\",\"parent_id\":null,\"lft\":51,\"rgt\":52,\"depth\":null},{\"id\":27,\"field_id\":1,\"value\":\"MINI\",\"parent_id\":null,\"lft\":53,\"rgt\":54,\"depth\":null},{\"id\":28,\"field_id\":1,\"value\":\"Aston Martin\",\"parent_id\":null,\"lft\":55,\"rgt\":56,\"depth\":null},{\"id\":29,\"field_id\":1,\"value\":\"Bentley\",\"parent_id\":null,\"lft\":57,\"rgt\":58,\"depth\":null},{\"id\":30,\"field_id\":1,\"value\":\"Rolls-Royce\",\"parent_id\":null,\"lft\":59,\"rgt\":60,\"depth\":null},{\"id\":31,\"field_id\":1,\"value\":\"McLaren\",\"parent_id\":null,\"lft\":61,\"rgt\":62,\"depth\":null},{\"id\":32,\"field_id\":1,\"value\":\"Fiat\",\"parent_id\":null,\"lft\":63,\"rgt\":64,\"depth\":null},{\"id\":33,\"field_id\":1,\"value\":\"Alfa Romeo\",\"parent_id\":null,\"lft\":65,\"rgt\":66,\"depth\":null},{\"id\":34,\"field_id\":1,\"value\":\"Maserati\",\"parent_id\":null,\"lft\":67,\"rgt\":68,\"depth\":null},{\"id\":35,\"field_id\":1,\"value\":\"Ferrari\",\"parent_id\":null,\"lft\":69,\"rgt\":70,\"depth\":null},{\"id\":36,\"field_id\":1,\"value\":\"Lamborghini\",\"parent_id\":null,\"lft\":71,\"rgt\":72,\"depth\":null},{\"id\":37,\"field_id\":1,\"value\":\"Pagani\",\"parent_id\":null,\"lft\":73,\"rgt\":74,\"depth\":null},{\"id\":38,\"field_id\":1,\"value\":\"Lancia\",\"parent_id\":null,\"lft\":75,\"rgt\":76,\"depth\":null},{\"id\":39,\"field_id\":1,\"value\":\"Renault\",\"parent_id\":null,\"lft\":77,\"rgt\":78,\"depth\":null},{\"id\":40,\"field_id\":1,\"value\":\"Peugeot\",\"parent_id\":null,\"lft\":79,\"rgt\":80,\"depth\":null},{\"id\":41,\"field_id\":1,\"value\":\"Citroen\",\"parent_id\":null,\"lft\":81,\"rgt\":82,\"depth\":null},{\"id\":42,\"field_id\":1,\"value\":\"Bugatti\",\"parent_id\":null,\"lft\":83,\"rgt\":84,\"depth\":null},{\"id\":43,\"field_id\":1,\"value\":\"Tata\",\"parent_id\":null,\"lft\":85,\"rgt\":86,\"depth\":null},{\"id\":44,\"field_id\":1,\"value\":\"Hyundai\",\"parent_id\":null,\"lft\":87,\"rgt\":88,\"depth\":null},{\"id\":45,\"field_id\":1,\"value\":\"Kia\",\"parent_id\":null,\"lft\":89,\"rgt\":90,\"depth\":null},{\"id\":46,\"field_id\":1,\"value\":\"Daewoo\",\"parent_id\":null,\"lft\":91,\"rgt\":92,\"depth\":null},{\"id\":47,\"field_id\":1,\"value\":\"Volvo\",\"parent_id\":null,\"lft\":93,\"rgt\":94,\"depth\":null},{\"id\":48,\"field_id\":1,\"value\":\"Saab\",\"parent_id\":null,\"lft\":95,\"rgt\":96,\"depth\":null},{\"id\":49,\"field_id\":1,\"value\":\"Lada\",\"parent_id\":null,\"lft\":97,\"rgt\":98,\"depth\":null},{\"id\":50,\"field_id\":1,\"value\":\"Volga\",\"parent_id\":null,\"lft\":99,\"rgt\":100,\"depth\":null},{\"id\":51,\"field_id\":1,\"value\":\"Zil\",\"parent_id\":null,\"lft\":101,\"rgt\":102,\"depth\":null},{\"id\":52,\"field_id\":1,\"value\":\"GAZ\",\"parent_id\":null,\"lft\":103,\"rgt\":104,\"depth\":null},{\"id\":53,\"field_id\":1,\"value\":\"Geely\",\"parent_id\":null,\"lft\":105,\"rgt\":106,\"depth\":null},{\"id\":54,\"field_id\":1,\"value\":\"Chery\",\"parent_id\":null,\"lft\":107,\"rgt\":108,\"depth\":null},{\"id\":55,\"field_id\":1,\"value\":\"Hongqi\",\"parent_id\":null,\"lft\":109,\"rgt\":110,\"depth\":null},{\"id\":56,\"field_id\":1,\"value\":\"Dacia\",\"parent_id\":null,\"lft\":111,\"rgt\":112,\"depth\":null},{\"id\":57,\"field_id\":1,\"value\":\"Daihatsu\",\"parent_id\":null,\"lft\":113,\"rgt\":114,\"depth\":null},{\"id\":58,\"field_id\":1,\"value\":\"FIAT\",\"parent_id\":null,\"lft\":115,\"rgt\":116,\"depth\":null},{\"id\":59,\"field_id\":1,\"value\":\"Genesis\",\"parent_id\":null,\"lft\":117,\"rgt\":118,\"depth\":null},{\"id\":60,\"field_id\":1,\"value\":\"Isuzu\",\"parent_id\":null,\"lft\":119,\"rgt\":120,\"depth\":null},{\"id\":61,\"field_id\":1,\"value\":\"Lincoln\",\"parent_id\":null,\"lft\":121,\"rgt\":122,\"depth\":null},{\"id\":62,\"field_id\":1,\"value\":\"Lotus\",\"parent_id\":null,\"lft\":123,\"rgt\":124,\"depth\":null},{\"id\":63,\"field_id\":1,\"value\":\"Ram\",\"parent_id\":null,\"lft\":125,\"rgt\":126,\"depth\":null},{\"id\":64,\"field_id\":1,\"value\":\"Ram\",\"parent_id\":null,\"lft\":127,\"rgt\":128,\"depth\":null},{\"id\":65,\"field_id\":1,\"value\":\"SEAT\",\"parent_id\":null,\"lft\":129,\"rgt\":130,\"depth\":null},{\"id\":66,\"field_id\":1,\"value\":\"Skoda\",\"parent_id\":null,\"lft\":131,\"rgt\":132,\"depth\":null},{\"id\":67,\"field_id\":1,\"value\":\"Smart\",\"parent_id\":null,\"lft\":133,\"rgt\":134,\"depth\":null},{\"id\":68,\"field_id\":1,\"value\":\"Subaru\",\"parent_id\":null,\"lft\":135,\"rgt\":136,\"depth\":null},{\"id\":69,\"field_id\":1,\"value\":\"Other\",\"parent_id\":null,\"lft\":137,\"rgt\":138,\"depth\":null}]},{\"id\":2,\"belongs_to\":\"post\",\"name\":\"Car Model\",\"type\":\"text\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":0,\"help\":\"\",\"active\":1,\"options\":[]},{\"id\":3,\"belongs_to\":\"post\",\"name\":\"Year of registration\",\"type\":\"number\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":0,\"help\":\"\",\"active\":1,\"options\":[]},{\"id\":5,\"belongs_to\":\"post\",\"name\":\"Fuel Type\",\"type\":\"select\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":70,\"field_id\":5,\"value\":\"Essence\",\"parent_id\":null,\"lft\":139,\"rgt\":140,\"depth\":null},{\"id\":71,\"field_id\":5,\"value\":\"Diesel\",\"parent_id\":null,\"lft\":141,\"rgt\":142,\"depth\":null}]},{\"id\":7,\"belongs_to\":\"post\",\"name\":\"Transmission\",\"type\":\"radio\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":76,\"field_id\":7,\"value\":\"Automatic\",\"parent_id\":null,\"lft\":151,\"rgt\":152,\"depth\":null},{\"id\":77,\"field_id\":7,\"value\":\"Manual\",\"parent_id\":null,\"lft\":153,\"rgt\":154,\"depth\":null}]},{\"id\":8,\"belongs_to\":\"post\",\"name\":\"Condition\",\"type\":\"select\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":78,\"field_id\":8,\"value\":\"New\",\"parent_id\":null,\"lft\":155,\"rgt\":156,\"depth\":null},{\"id\":79,\"field_id\":8,\"value\":\"Used\",\"parent_id\":null,\"lft\":157,\"rgt\":158,\"depth\":null}]},{\"id\":4,\"belongs_to\":\"post\",\"name\":\"Mileage\",\"type\":\"text\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":0,\"help\":\"\",\"active\":1,\"options\":[]},{\"id\":6,\"belongs_to\":\"post\",\"name\":\"Features\",\"type\":\"checkbox_multiple\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":72,\"field_id\":6,\"value\":\"Air Conditioner\",\"parent_id\":null,\"lft\":143,\"rgt\":144,\"depth\":null},{\"id\":73,\"field_id\":6,\"value\":\"GPS\",\"parent_id\":null,\"lft\":145,\"rgt\":146,\"depth\":null},{\"id\":74,\"field_id\":6,\"value\":\"Security System\",\"parent_id\":null,\"lft\":147,\"rgt\":148,\"depth\":null},{\"id\":75,\"field_id\":6,\"value\":\"Spare Tire\",\"parent_id\":null,\"lft\":149,\"rgt\":150,\"depth\":null}]}],\"extra\":{\"errors\":[],\"oldInput\":null}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/categories/{id}/fields",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List category's fields",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the category.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The unique ID of the post.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "language_code": "en",
                                "post_id": 1
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List countries",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Language": "en",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the country relationships for Eager Loading - Possible values: currency,continent.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "includeNonActive": {
                                    "name": "includeNonActive",
                                    "description": "Allow including the non-activated countries in the list.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "iti": {
                                    "name": "iti",
                                    "description": "Allow getting option data for the phone number input. Possible value: 'i18n' or 'onlyCountries'.",
                                    "required": false,
                                    "example": "'onlyCountries'",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The code of the current country (Only when the 'iti' parameter is filled to true).",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "includeNonActive": false,
                                "iti": "'onlyCountries'",
                                "countryCode": null,
                                "sort": "-name",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 400,
                                    "content": "{\"success\":false,\"message\":\"No data available. Only \\\"i18n\\\" and \\\"onlyCountries\\\" are accepted for the \\\"iti\\\" parameter.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{code}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get country",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The country's ISO 3166-1 code.",
                                    "required": true,
                                    "example": "DE",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "DE"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the country relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": "currency",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": "currency"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Country not found\",\"result\":null,\"error\":\"Country not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{countryCode}/subAdmins1",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List admin. divisions (1)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The country code of the country of the cities to retrieve.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "countryCode": "US"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (1) relationships for Eager Loading - Possible values: country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "q": {
                                    "name": "q",
                                    "description": "Get the administrative division list related to the entered keyword.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "q": null,
                                "sort": "-name",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No administrative divisions found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{countryCode}/subAdmins2",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List admin. divisions (2)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The country code of the country of the cities to retrieve.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "countryCode": "US"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (2) relationships for Eager Loading - Possible values: country,subAdmin1.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin1Code": {
                                    "name": "admin1Code",
                                    "description": "Get the administrative division 2 list related to the administrative division 1 code.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "q": {
                                    "name": "q",
                                    "description": "Get the administrative division 2 list related to the entered keyword.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "admin1Code": null,
                                "q": null,
                                "sort": "-name",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No administrative divisions found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{countryCode}/cities",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List cities",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The country code of the country of the cities to retrieve.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "countryCode": "US"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the city relationships for Eager Loading - Possible values: country,subAdmin1,subAdmin2.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin1Code": {
                                    "name": "admin1Code",
                                    "description": "Get the city list related to the administrative division 1 code.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin2Code": {
                                    "name": "admin2Code",
                                    "description": "Get the city list related to the administrative division 2 code.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "q": {
                                    "name": "q",
                                    "description": "Get the city list related to the entered keyword.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "autocomplete": {
                                    "name": "autocomplete",
                                    "description": "Allow getting the city list in the autocomplete data format. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "string|array The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name,population.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "admin1Code": null,
                                "admin2Code": null,
                                "q": null,
                                "autocomplete": false,
                                "sort": "-name",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No cities found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/subAdmins1/{code}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get admin. division (1)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The administrative division (1)'s code.",
                                    "required": true,
                                    "example": "CH.VD",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "CH.VD"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (1) relationships for Eager Loading - Possible values: country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No administrative divisions found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD\",\"per_page\":39,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/subAdmins2/{code}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get admin. division (2)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The administrative division (2)'s code.",
                                    "required": true,
                                    "example": "CH.VD.2225",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "CH.VD.2225"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (2) relationships for Eager Loading - Possible values: country,subAdmin1.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Administrative division not found\",\"result\":null,\"error\":\"Administrative division not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/cities/{id}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get city",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The city's ID.",
                                    "required": true,
                                    "example": 12544,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 12544
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the city relationships for Eager Loading - Possible values: country,subAdmin1,subAdmin2.",
                                    "required": false,
                                    "example": "country",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": "country"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"City not found\",\"result\":null,\"error\":\"City not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/savedPosts",
                            "metadata": {
                                "groupName": "Saved Posts",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store/Delete saved listing",
                                "description": "Save a post/listing in favorite, or remove it from favorite.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post/listing's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "post_id": 2
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hdP6k3gaZ16e5afEbvDV8c4"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/savedPosts",
                            "metadata": {
                                "groupName": "Saved Posts",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List saved listings",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: post,city,pictures,user.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "country_code": "US",
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 6h63PDefgdak5Ev1cZbV8a4"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/savedPosts/{ids}",
                            "metadata": {
                                "groupName": "Saved Posts",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete saved listing(s)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of saved post/listing(s).",
                                    "required": true,
                                    "example": "1,2,3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "1,2,3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hkcP6Ee6aba3fVg58DZ4vd1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/savedSearches",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store/Delete saved search",
                                "description": "Save a search result in favorite, or remove it from favorite.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "url": {
                                    "name": "url",
                                    "description": "Search URL to save.",
                                    "required": true,
                                    "example": "https://demo.laraclassifier.com/search/?q=test&l=",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "count_posts": {
                                    "name": "count_posts",
                                    "description": "The number of posts found for the URL.",
                                    "required": true,
                                    "example": 29,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "url": "https://demo.laraclassifier.com/search/?q=test&l=",
                                "count_posts": 29
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer dvfEP56DeV8Zkc63gha1ba4"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/savedSearches",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List saved searches",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: user,country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer VPg36a4kf5vEZ8he6Dacbd1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/savedSearches/{id}",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get saved search",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the saved search.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: user,country,pictures,postType,category,city,country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer bh8ce15kgfPaD6634EvVdZa"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/savedSearches/{ids}",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete saved search(es)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of saved search(es).",
                                    "required": true,
                                    "example": "1,2,3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "1,2,3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer afe531v6cg6adVbEZPDkh48"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/pictures/{id}",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get picture",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The picture's ID.",
                                    "required": true,
                                    "example": 298,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 298
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The list of the picture relationships separated by comma for Eager Loading.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Picture not found\",\"result\":null,\"error\":\"Picture not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/pictures",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store picture",
                                "description": "Note: This endpoint is only available for the multi steps post edition.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "count_packages": {
                                    "name": "count_packages",
                                    "description": "The number of available packages.",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "count_payment_methods": {
                                    "name": "count_payment_methods",
                                    "description": "The number of available payment methods.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pictures": {
                                    "name": "pictures",
                                    "description": "The files to upload.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "US",
                                "count_packages": 3,
                                "count_payment_methods": 1,
                                "post_id": 2
                            },
                            "fileParameters": {
                                "pictures": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hE46e68ck3DZva5dbfPVa1g"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/pictures/{id}",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete picture",
                                "description": "Note: This endpoint is only available for the multi steps form edition.\nFor newly created listings, the post's ID needs to be added in the request input with the key 'new_post_id'.\nThe 'new_post_id' and 'new_post_tmp_token' fields need to be removed or unset during the listing edition steps.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The picture's ID.",
                                    "required": true,
                                    "example": 999999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "post_id": 2
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer ZaEVDfcdP6v6h3481b5gkae"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/pictures/reorder",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Reorder pictures",
                                "description": "Note: This endpoint is only available for the multi steps form edition.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "X-Action": "bulk",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "body": {
                                    "name": "body",
                                    "description": "Encoded json of the new pictures' positions array [['id' => 2, 'position' => 1], ['id' => 1, 'position' => 2], ...]",
                                    "required": true,
                                    "example": "saepe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "post_id": 2,
                                "body": "saepe"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 8ga43EkhbaP5c6DdeZV61vf"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/posts/{postId}/pictures",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List pictures",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "postId": {
                                    "name": "postId",
                                    "description": "",
                                    "required": true,
                                    "example": 346316,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "postId": 346316
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The list of the picture relationships separated by comma for Eager Loading. Possible values: post.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "postId": {
                                    "name": "postId",
                                    "description": "List of pictures related to a listing (using the listing ID).",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest": {
                                    "name": "latest",
                                    "description": "Get only the first picture after ordering (as object instead of collection). Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: position, created_at.",
                                    "required": false,
                                    "example": "-position",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "postId": 1,
                                "latest": false,
                                "sort": "-position",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No pictures found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures\",\"per_page\":10,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/packages/promotion",
                            "metadata": {
                                "groupName": "Packages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List packages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the package relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "-lft"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No packages found\",\"result\":{\"data\":[]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/packages/subscription",
                            "metadata": {
                                "groupName": "Packages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List packages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the package relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "-lft"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No packages found\",\"result\":{\"data\":[]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/packages/{id}",
                            "metadata": {
                                "groupName": "Packages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get package",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The package's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 2
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the package relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": "currency",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": "currency"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Package not found\",\"result\":null,\"error\":\"Package not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/paymentMethods",
                            "metadata": {
                                "groupName": "Payment Methods",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payment methods",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "Country code. Select only the payment methods related to a country.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "countryCode": "US",
                                "sort": "-lft"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No payment methods found\",\"result\":{\"data\":[]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/paymentMethods/{id}",
                            "metadata": {
                                "groupName": "Payment Methods",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get payment method",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "Can be the ID (int) or name (string) of the payment method.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Payment method not found\",\"result\":null,\"error\":\"Payment method not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/promotion",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payments",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "valid": {
                                    "name": "valid",
                                    "description": "Allow getting the valid payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "active": {
                                    "name": "active",
                                    "description": "Allow getting the active payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "valid": false,
                                "active": false,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer EDfd3aPhZ4b5aek8cVv66g1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/subscription",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payments",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "valid": {
                                    "name": "valid",
                                    "description": "Allow getting the valid payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "active": {
                                    "name": "active",
                                    "description": "Allow getting the active payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "valid": false,
                                "active": false,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer e4D61k3VdEPh6va5fgZabc8"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/subscription/users/{userId}/payments",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payments",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": 1
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "valid": {
                                    "name": "valid",
                                    "description": "Allow getting the valid payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "active": {
                                    "name": "active",
                                    "description": "Allow getting the active payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "valid": false,
                                "active": false,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 1abhD5ZVafg3cE86ekv64dP"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/{id}",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get payment",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The payment's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 2
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer fP6a8bgd3Zk1av5DVche4E6"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/payments",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store payment",
                                "description": "Note: This endpoint is only available for the multi steps form edition.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "package": {
                                    "name": "package",
                                    "description": "Selected package ID.",
                                    "required": false,
                                    "example": 8,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "package": 8
                            },
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payable_id": {
                                    "name": "payable_id",
                                    "description": "The payable's ID (ID of the listing or user).",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payable_type": {
                                    "name": "payable_type",
                                    "description": "The payable model's name - Possible values: Post,User.",
                                    "required": true,
                                    "example": "Post",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "package_id": {
                                    "name": "package_id",
                                    "description": "The package's ID (Auto filled when the query parameter 'package' is set).",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payment_method_id": {
                                    "name": "payment_method_id",
                                    "description": "The payment method's ID (required when the selected package's price is > 0).",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "US",
                                "payable_id": 2,
                                "payable_type": "Post",
                                "package_id": 1,
                                "payment_method_id": 5
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer bZaPda6h3ecgV5E1f6k8D4v"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/threads",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store thread",
                                "description": "Start a conversation. Creation of a new thread.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "The thread's creator name.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The thread's creator email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The thread's creator mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "iure",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "body": {
                                    "name": "body",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "Modi temporibus voluptas expedita voluptatibus voluptas veniam.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The related post ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "file_path": {
                                    "name": "file_path",
                                    "description": "The thread attached file.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "necessitatibus",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "John Doe",
                                "auth_field": "email",
                                "email": "john.doe@domain.tld",
                                "phone": "iure",
                                "phone_country": null,
                                "body": "Modi temporibus voluptas expedita voluptatibus voluptas veniam.",
                                "post_id": 2,
                                "captcha_key": "necessitatibus"
                            },
                            "fileParameters": {
                                "file_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List threads",
                                "description": "Get all logged user's threads.\nFilters:\n- unread: Get the logged user's unread threads\n- started: Get the logged user's started threads\n- important: Get the logged user's make as important threads",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "filter": {
                                    "name": "filter",
                                    "description": "Filter for the list - Possible value: unread, started or important.",
                                    "required": false,
                                    "example": "unread",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: post.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "filter": "unread",
                                "embed": null,
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer abPED38f6vZh4a65Vke1dcg"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads/{id}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get thread",
                                "description": "Get a thread (owned by the logged user) details",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 8,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 8
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user,post,messages,participants.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer ab3VfE8v6e1cP5k4Dg6ahZd"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/threads/{id}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update thread",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 111111,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 111111
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "body": {
                                    "name": "body",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "Modi temporibus voluptas expedita voluptatibus voluptas veniam.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "file_path": {
                                    "name": "file_path",
                                    "description": "The thread attached file.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "body": "Modi temporibus voluptas expedita voluptatibus voluptas veniam."
                            },
                            "fileParameters": {
                                "file_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer P6h3b45aVvk61cfDaZ8dEge"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/threads/{ids}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete thread(s)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of thread(s).",
                                    "required": true,
                                    "example": "111111,222222,333333",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "111111,222222,333333"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer Dc61fdEav5b8P3V4g6kaheZ"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/threads/bulkUpdate/{ids?}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Bulk updates",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of thread(s)..",
                                    "required": true,
                                    "example": "111111,222222,333333",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "111111,222222,333333"
                            },
                            "queryParameters": {
                                "type": {
                                    "name": "type",
                                    "description": "The type of action to execute (markAsRead, markAsUnread, markAsImportant, markAsNotImportant or markAllAsRead).",
                                    "required": true,
                                    "example": "animi",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "type": "animi"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer k68vVZb4PDE356a1ghadefc"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads/{threadId}/messages",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List messages",
                                "description": "Get all thread's messages",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "threadId": {
                                    "name": "threadId",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 293,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "threadId": 293
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer dh518g6Pv3cVaZeak4ED6fb"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads/{threadId}/messages/{id}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get message",
                                "description": "Get a thread's message (owned by the logged user) details",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "threadId": {
                                    "name": "threadId",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 293,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "id": {
                                    "name": "id",
                                    "description": "The thread's message's ID.",
                                    "required": true,
                                    "example": 3545,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "threadId": 293,
                                "id": 3545
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: thread,user.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer f8k6VaZgEaPc6d35b4vheD1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/pages",
                            "metadata": {
                                "groupName": "Pages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List pages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "excludedFromFooter": {
                                    "name": "excludedFromFooter",
                                    "description": "Select or unselect pages that can list in footer.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft, created_at.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "excludedFromFooter": false,
                                "sort": "-lft",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"id\":4,\"parent_id\":null,\"type\":\"standard\",\"name\":\"FAQ\",\"slug\":\"faq\",\"image_path\":null,\"title\":\"Frequently Asked Questions\",\"content\":\"<p><b>How do I place an ad?<\\/b><\\/p><p>It's very easy to place an ad: click on the button \\\"Post free Ads\\\" above right.<\\/p><p><b>What does it cost to advertise?<\\/b><\\/p><p>The publication is 100% free throughout the website.<\\/p><p><b>If I post an listing, will I also get more spam e-mails?<\\/b><\\/p><p>Absolutely not because your email address is not visible on the website.<\\/p><p><b>How long will my listing remain on the website?<\\/b><\\/p><p>In general, an listing is automatically deactivated from the website after 3 months. You will receive an email a week before D-Day and another on the day of deactivation. You have the ability to put them online in the following month by logging into your account on the site. After this delay, your listing will be automatically removed permanently from the website.<\\/p><p><b>I sold my item. How do I delete my ad?<\\/b><\\/p><p>Once your product is sold or leased, log in to your account to remove your listing.<\\/p>\",\"external_link\":null,\"name_color\":null,\"title_color\":null,\"target_blank\":0,\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"excluded_from_footer\":0,\"active\":1,\"lft\":2,\"rgt\":3,\"depth\":1,\"image_url\":null},{\"id\":3,\"parent_id\":null,\"type\":\"standard\",\"name\":\"Anti-Scam\",\"slug\":\"anti-scam\",\"image_path\":null,\"title\":\"Anti-Scam\",\"content\":\"<p><b>Protect yourself against Internet fraud!<\\/b><\\/p><p>The vast majority of listings are posted by honest people and trust. So you can do excellent business. Despite this, it is important to follow a few common sense rules following to prevent any attempt to scam.<\\/p><p><b>Our advices<\\/b><\\/p><ul><li>Doing business with people you can meet in person.<\\/li><li>Never send money by Western Union, MoneyGram or other anonymous payment systems.<\\/li><li>Never send money or products abroad.<\\/li><li>Do not accept checks.<\\/li><li>Ask about the person you're dealing with another confirming source name, address and telephone number.<\\/li><li>Keep copies of all correspondence (emails, listings, letters, etc.) and details of the person.<\\/li><li>If a deal seems too good to be true, there is every chance that this is the case. Refrain.<\\/li><\\/ul><p><b>Recognize attempted scam<\\/b><\\/p><ul><li>The majority of scams have one or more of these characteristics:<\\/li><li>The person is abroad or traveling abroad.<\\/li><li>The person refuses to meet you in person.<\\/li><li>Payment is made through Western Union, Money Gram or check.<\\/li><li>The messages are in broken language (English or French or ...).<\\/li><li>The texts seem to be copied and pasted.<\\/li><li>The deal seems to be too good to be true.<\\/li><\\/ul>\",\"external_link\":null,\"name_color\":null,\"title_color\":null,\"target_blank\":0,\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"excluded_from_footer\":0,\"active\":1,\"lft\":4,\"rgt\":5,\"depth\":1,\"image_url\":null}],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\",\"prev\":null,\"next\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":2,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages\",\"per_page\":2,\"to\":2,\"total\":4}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/pages/{slugOrId}",
                            "metadata": {
                                "groupName": "Pages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get page",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "slugOrId": {
                                    "name": "slugOrId",
                                    "description": "The slug or ID of the page.",
                                    "required": true,
                                    "example": "terms",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "slugOrId": "terms"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"parent_id\":null,\"type\":\"terms\",\"name\":\"Terms\",\"slug\":\"terms\",\"image_path\":null,\"title\":\"Terms & Conditions\",\"content\":\"<h4><b>Definitions<\\/b><\\/h4><p>Each of the terms mentioned below have in these Conditions of Sale Ecosystem Service (hereinafter the \\\"Conditions\\\") the following meanings:<\\/p><ol><li>Announcement&nbsp;: refers to all the elements and data (visual, textual, sound, photographs, drawings), presented by an Advertiser editorial under his sole responsibility, in order to buy, rent or sell a product or service and broadcast on the Website and Mobile Site.<\\/li><li>Advertiser&nbsp;: means any natural or legal person, a major, established in France, holds an account and having submitted an announcement, from it, on the Website. Any Advertiser must be connected to the Personal Account for deposit and or manage its listings. Add first deposit automatically entails the establishment of a Personal Account to the Advertiser.<\\/li><li>Personal Account&nbsp;: refers to the free space than any Advertiser must create and which it should connect from the Website to disseminate, manage and view its listings.<\\/li><li>Ecosystem&nbsp;: means the company that publishes and operates the Website and Mobile Site {YourCompany}, registered at the Trade and Companies Register of {YourCity} under the number {YourCompany Registration Number} whose registered office is at {YourCompany Address}.<\\/li><li>Customer Service&nbsp;: Ecosystem means the department to which the Advertiser may obtain further information. This service can be contacted via email by clicking the link on the Website and Mobile Site.<\\/li><li>Ecosystem Service&nbsp;: Ecosystem means the services made available to Users and Advertisers on the Website and Mobile Site.<\\/li><li>Website&nbsp;: means the website operated by Ecosystem accessed mainly from the URL <a href=\\\"https:\\/\\/Ecosystem.com\\\">https:\\/\\/Ecosystem.com<\\/a> and allowing Users and Advertisers to access the Service via internet Ecosystem.<\\/li><li>Mobile Site&nbsp;: is the mobile site operated by Ecosystem accessible from the URL <a href=\\\"https:\\/\\/Ecosystem.com\\\">https:\\/\\/Ecosystem.com<\\/a> and allowing Users and Advertisers to access via their mobile phone service {YourSiteName}.<\\/li><li>User&nbsp;: any visitor with access to Ecosystem Service via the Website and Mobile Site and Consultant Service Ecosystem accessible from different media.<\\/li><\\/ol><h4><b>Subject<\\/b><\\/h4><p>These Terms and Conditions Of Use establish the contractual conditions applicable to any subscription by an Advertiser connected to its Personal Account from the Website and Mobile Site.<br><\\/p><h4><b>Acceptance<\\/b><\\/h4><p>Any use of the website by an Advertiser is full acceptance of the current Terms.<br><\\/p><h4><b>Responsibility<\\/b><\\/h4><p>Responsibility for Ecosystem can not be held liable for non-performance or improper performance of due control, either because of the Advertiser, or a case of major force.<br><\\/p><h4><b>Modification of these terms<\\/b><\\/h4><p>Ecosystem reserves the right, at any time, to modify all or part of the Terms and Conditions.<\\/p><p>Advertisers are advised to consult the Terms to be aware of the changes.<\\/p><h4><b>Miscellaneous<\\/b><\\/h4><p>If part of the Terms should be illegal, invalid or unenforceable for any reason whatsoever, the provisions in question would be deemed unwritten, without questioning the validity of the remaining provisions will continue to apply between Advertisers and Ecosystem.<\\/p><p>Any complaints should be addressed to Customer Service Ecosystem.<\\/p>\",\"external_link\":null,\"name_color\":null,\"title_color\":null,\"target_blank\":0,\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"excluded_from_footer\":0,\"active\":1,\"lft\":6,\"rgt\":7,\"depth\":1,\"image_url\":null}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/contact",
                            "metadata": {
                                "groupName": "Contact",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Send Form",
                                "description": "Send a message to the site owner.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "",
                                    "required": true,
                                    "example": "aperiam",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address.",
                                    "required": true,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "",
                                    "required": true,
                                    "example": "quae",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "message": {
                                    "name": "message",
                                    "description": "The message to send.",
                                    "required": true,
                                    "example": "Nesciunt porro possimus maiores voluptatibus accusamus velit qui aspernatur.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The user's country code.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_name": {
                                    "name": "country_name",
                                    "description": "The user's country name.",
                                    "required": true,
                                    "example": "United Sates",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "first_name": {
                                    "name": "first_name",
                                    "description": "The user's first name.",
                                    "required": true,
                                    "example": "John",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "last_name": {
                                    "name": "last_name",
                                    "description": "The user's last name.",
                                    "required": true,
                                    "example": "Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "suscipit",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "aperiam",
                                "email": "john.doe@domain.tld",
                                "phone": "quae",
                                "message": "Nesciunt porro possimus maiores voluptatibus accusamus velit qui aspernatur.",
                                "country_code": "US",
                                "country_name": "United Sates",
                                "first_name": "John",
                                "last_name": "Doe",
                                "captcha_key": "suscipit"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/posts/{id}/report",
                            "metadata": {
                                "groupName": "Contact",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Report post",
                                "description": "Report abuse or issues",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The post ID.",
                                    "required": true,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 5
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "report_type_id": {
                                    "name": "report_type_id",
                                    "description": "The report type ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address.",
                                    "required": true,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "message": {
                                    "name": "message",
                                    "description": "The message to send.",
                                    "required": true,
                                    "example": "Et sunt voluptatibus ducimus id assumenda sint.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "aliquid",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "report_type_id": 2,
                                "email": "john.doe@domain.tld",
                                "message": "Et sunt voluptatibus ducimus id assumenda sint.",
                                "captcha_key": "aliquid"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/languages",
                            "metadata": {
                                "groupName": "Languages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List languages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"code\":\"en\",\"locale\":\"en_US\",\"name\":\"English\",\"native\":\"English\",\"flag\":\"flag-icon-gb\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":1,\"parent_id\":null,\"lft\":2,\"rgt\":3,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"en_US\",\"tag\":\"en\",\"primary\":\"en\"},{\"code\":\"fr\",\"locale\":\"fr_FR\",\"name\":\"French\",\"native\":\"Français\",\"flag\":\"flag-icon-fr\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":4,\"rgt\":5,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"fr_FR\",\"tag\":\"fr\",\"primary\":\"fr\"},{\"code\":\"es\",\"locale\":\"es_ES\",\"name\":\"Spanish\",\"native\":\"Español\",\"flag\":\"flag-icon-es\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":6,\"rgt\":7,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"es_ES\",\"tag\":\"es\",\"primary\":\"es\"},{\"code\":\"ar\",\"locale\":\"ar_SA\",\"name\":\"Arabic\",\"native\":\"العربية\",\"flag\":\"flag-icon-sa\",\"script\":\"Arab\",\"direction\":\"rtl\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":8,\"rgt\":9,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ar_SA\",\"tag\":\"ar\",\"primary\":\"ar\"},{\"code\":\"pt\",\"locale\":\"pt_PT\",\"name\":\"Portuguese\",\"native\":\"Português\",\"flag\":\"flag-icon-pt\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":10,\"rgt\":11,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"pt_PT\",\"tag\":\"pt\",\"primary\":\"pt\"},{\"code\":\"de\",\"locale\":\"de_DE\",\"name\":\"German\",\"native\":\"Deutsch\",\"flag\":\"flag-icon-de\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":12,\"rgt\":13,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"de_DE\",\"tag\":\"de\",\"primary\":\"de\"},{\"code\":\"it\",\"locale\":\"it_IT\",\"name\":\"Italian\",\"native\":\"Italiano\",\"flag\":\"flag-icon-it\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":14,\"rgt\":15,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"it_IT\",\"tag\":\"it\",\"primary\":\"it\"},{\"code\":\"tr\",\"locale\":\"tr_TR\",\"name\":\"Turkish\",\"native\":\"Türkçe\",\"flag\":\"flag-icon-tr\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":16,\"rgt\":17,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"tr_TR\",\"tag\":\"tr\",\"primary\":\"tr\"},{\"code\":\"ru\",\"locale\":\"ru_RU\",\"name\":\"Russian\",\"native\":\"Русский\",\"flag\":\"flag-icon-ru\",\"script\":\"Cyrl\",\"direction\":\"ltr\",\"russian_pluralization\":1,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":18,\"rgt\":19,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ru_RU\",\"tag\":\"ru\",\"primary\":\"ru\"},{\"code\":\"hi\",\"locale\":\"hi_IN\",\"name\":\"Hindi\",\"native\":\"हिन्दी\",\"flag\":\"flag-icon-in\",\"script\":\"Deva\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":20,\"rgt\":21,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"hi_IN\",\"tag\":\"hi\",\"primary\":\"hi\"},{\"code\":\"bn\",\"locale\":\"bn_BD\",\"name\":\"Bengali\",\"native\":\"বাংলা\",\"flag\":\"flag-icon-bd\",\"script\":\"Beng\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":22,\"rgt\":23,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"bn_BD\",\"tag\":\"bn\",\"primary\":\"bn\"},{\"code\":\"zh\",\"locale\":\"zh_CN\",\"name\":\"Simplified Chinese\",\"native\":\"简体中文\",\"flag\":\"flag-icon-cn\",\"script\":\"Hans\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":24,\"rgt\":25,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"zh_CN\",\"tag\":\"zh\",\"primary\":\"zh\"},{\"code\":\"ja\",\"locale\":\"ja_JP\",\"name\":\"Japanese\",\"native\":\"日本語\",\"flag\":\"flag-icon-jp\",\"script\":\"Jpan\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":26,\"rgt\":27,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ja_JP\",\"tag\":\"ja\",\"primary\":\"ja\"},{\"code\":\"he\",\"locale\":\"he_IL\",\"name\":\"Hebrew\",\"native\":\"עִברִית\",\"flag\":\"flag-icon-il\",\"script\":\"Hebr\",\"direction\":\"rtl\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":28,\"rgt\":29,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"he_IL\",\"tag\":\"he\",\"primary\":\"he\"},{\"code\":\"th\",\"locale\":\"th_TH\",\"name\":\"Thai\",\"native\":\"ไทย\",\"flag\":\"flag-icon-th\",\"script\":\"Thai\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":30,\"rgt\":31,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"th_TH\",\"tag\":\"th\",\"primary\":\"th\"},{\"code\":\"ro\",\"locale\":\"ro_RO\",\"name\":\"Romanian\",\"native\":\"Română\",\"flag\":\"flag-icon-ro\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":32,\"rgt\":33,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ro_RO\",\"tag\":\"ro\",\"primary\":\"ro\"},{\"code\":\"ka\",\"locale\":\"ka_GE\",\"name\":\"Georgian\",\"native\":\"ქართული\",\"flag\":\"flag-icon-ge\",\"script\":\"Geor\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":34,\"rgt\":35,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ka_GE\",\"tag\":\"ka\",\"primary\":\"ka\"}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/languages/{code}",
                            "metadata": {
                                "groupName": "Languages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get language",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The language's code.",
                                    "required": true,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "en"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"code\":\"en\",\"locale\":\"en_US\",\"name\":\"English\",\"native\":\"English\",\"flag\":\"flag-icon-gb\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":1,\"parent_id\":null,\"lft\":2,\"rgt\":3,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"en_US\",\"tag\":\"en\",\"primary\":\"en\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/settings",
                            "metadata": {
                                "groupName": "Settings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List settings",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"app\":{\"name\":\"SHAREK FORSA\",\"logo\":\"app\\/logo\\/logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark\":\"app\\/default\\/logo-dark.png\",\"logo_light\":\"app\\/default\\/logo-light.png\",\"favicon\":\"app\\/default\\/ico\\/favicon.png\",\"date_format\":\"YYYY-MM-DD\",\"datetime_format\":\"YYYY-MM-DD HH:mm\",\"date_from_now_modifier\":\"DIFF_RELATIVE_TO_NOW\",\"date_from_now_short\":\"0\",\"vector_charts_type\":\"morris_bar\",\"vector_charts_limit\":\"7\",\"show_countries_charts\":\"1\",\"countries_charts_limit\":\"5\",\"latest_entries_limit\":\"5\",\"general_settings_as_submenu_in_sidebar\":\"1\",\"dark_theme_enabled\":\"0\",\"system_theme_enabled\":\"0\",\"php_specific_date_format\":\"0\",\"logo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_light_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"favicon_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/ico\\/favicon.png\"},\"style\":{\"skin\":\"blueIzis\",\"page_width\":\"1200\",\"header_full_width\":\"0\",\"dark_header\":\"0\",\"header_shadow\":\"0\",\"header_background_class\":\"bg-body-tertiary\",\"header_animation\":\"1\",\"header_fixed_top\":\"1\",\"header_height_offset\":\"200\",\"fixed_dark_header\":\"0\",\"fixed_header_shadow\":\"1\",\"header_highlighted_btn_link\":\"listingCreationLink\",\"header_highlighted_btn_class\":\"btn-highlight\",\"logo_width\":216,\"logo_height\":40,\"logo_aspect_ratio\":\"1\",\"dark_footer\":\"1\",\"high_spacing_footer\":\"1\",\"footer_full_width\":\"0\",\"admin_logo_bg\":\"skin3\",\"admin_navbar_bg\":\"skin6\",\"admin_sidebar_type\":\"full\",\"admin_sidebar_bg\":\"skin5\",\"admin_sidebar_position\":\"1\",\"admin_header_position\":\"1\",\"admin_boxed_layout\":\"0\",\"admin_dark_theme\":\"0\",\"body_background_image_animation\":\"0\",\"header_highlighted_btn_outline\":\"0\"},\"listing_form\":{\"publication_form_type\":\"multi-steps-form\",\"city_selection\":\"modal\",\"picture_mandatory\":\"1\",\"listings_limit\":\"50\",\"pictures_limit\":\"5\",\"title_min_length\":\"2\",\"title_max_length\":\"150\",\"description_min_length\":\"5\",\"description_max_length\":\"6000\",\"tags_limit\":\"15\",\"tags_min_length\":\"2\",\"tags_max_length\":\"30\",\"guest_can_submit_listings\":\"0\",\"permanent_listings_enabled\":\"0\",\"default_package_type\":\"promotion\",\"utf8mb4_enabled\":\"0\",\"allow_emojis\":\"0\",\"cat_display_type\":\"c_bigIcon_list\",\"wysiwyg_editor\":\"tinymce\",\"auto_registration\":\"0\"},\"listings_list\":{\"display_browse_listings_link\":\"0\",\"display_mode\":\"grid-view\",\"show_left_sidebar\":\"1\",\"left_sidebar_offcanvas\":\"md\",\"min_price\":\"0\",\"max_price\":\"10000\",\"price_slider_step\":\"50\",\"show_category_icon\":\"7\",\"enable_cities_autocompletion\":\"1\",\"enable_diacritics\":\"0\",\"cities_extended_searches\":\"1\",\"distance_calculation_formula\":\"ST_Distance_Sphere\",\"search_distance_max\":\"500\",\"search_distance_default\":\"50\",\"search_distance_interval\":\"100\",\"premium_first\":\"0\",\"premium_first_category\":\"1\",\"premium_first_location\":\"1\",\"free_listings_in_premium\":\"0\"},\"listing_page\":{\"guest_can_contact_authors\":\"0\",\"pictures_slider\":\"swiper-horizontal\",\"similar_listings\":\"1\",\"similar_listings_in_carousel\":\"1\"},\"mail\":{\"sendmail_path\":\"\\/usr\\/sbin\\/sendmail -bs -i\"},\"sms\":{\"enable_phone_as_auth_field\":\"0\",\"default_auth_field\":\"email\",\"phone_of_countries\":\"local\",\"phone_validator\":\"isPossiblePhoneNumber\",\"phone_placeholder_type\":\"auto-0\",\"phone_verification\":\"1\",\"driver\":null},\"upload\":{\"file_types\":\"pdf,doc,docx,rtf,rtx,ppt,pptx,odt,odp,wps,jpg,jpeg,gif,png,avif,bmp,webp\",\"min_file_size\":0,\"max_file_size\":2500,\"image_types\":\"jpg,jpeg,gif,png,avif,bmp,webp\",\"image_quality\":\"90\",\"client_image_types\":\"jpg,png\",\"min_image_size\":0,\"max_image_size\":2500,\"img_resize_default_method\":\"resize\",\"img_resize_default_width\":1500,\"img_resize_default_height\":1500,\"img_resize_default_ratio\":\"1\",\"img_resize_default_upsize\":\"0\",\"img_resize_default_position\":\"center\",\"img_resize_default_bgColor\":\"ffffff\",\"img_resize_logo_method\":\"resize\",\"img_resize_logo_width\":485,\"img_resize_logo_height\":90,\"img_resize_logo_ratio\":\"1\",\"img_resize_logo_upsize\":\"0\",\"img_resize_logo_position\":\"center\",\"img_resize_logo_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_logo_max_method\":\"resize\",\"img_resize_logo_max_width\":430,\"img_resize_logo_max_height\":80,\"img_resize_logo_max_ratio\":\"1\",\"img_resize_logo_max_upsize\":\"0\",\"img_resize_logo_max_position\":\"center\",\"img_resize_logo_max_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_favicon_method\":\"resize\",\"img_resize_favicon_width\":32,\"img_resize_favicon_height\":32,\"img_resize_favicon_ratio\":\"1\",\"img_resize_favicon_upsize\":\"0\",\"img_resize_favicon_position\":\"center\",\"img_resize_favicon_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_cat_method\":\"resize\",\"img_resize_cat_width\":70,\"img_resize_cat_height\":70,\"img_resize_cat_ratio\":\"1\",\"img_resize_cat_upsize\":\"0\",\"img_resize_cat_position\":\"center\",\"img_resize_cat_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_bg_header_method\":\"resize\",\"img_resize_bg_header_width\":2000,\"img_resize_bg_header_height\":1000,\"img_resize_bg_header_ratio\":\"1\",\"img_resize_bg_header_upsize\":\"0\",\"img_resize_bg_header_position\":\"center\",\"img_resize_bg_header_bgColor\":\"ffffff\",\"img_resize_bg_body_method\":\"resize\",\"img_resize_bg_body_width\":2500,\"img_resize_bg_body_height\":2500,\"img_resize_bg_body_ratio\":\"1\",\"img_resize_bg_body_upsize\":\"0\",\"img_resize_bg_body_position\":\"center\",\"img_resize_bg_body_bgColor\":\"ffffff\",\"img_resize_picture_sm_method\":\"resizeCanvas\",\"img_resize_picture_sm_width\":120,\"img_resize_picture_sm_height\":90,\"img_resize_picture_sm_ratio\":\"1\",\"img_resize_picture_sm_upsize\":\"0\",\"img_resize_picture_sm_position\":\"center\",\"img_resize_picture_sm_bgColor\":\"ffffff\",\"img_resize_picture_md_method\":\"fit\",\"img_resize_picture_md_width\":320,\"img_resize_picture_md_height\":240,\"img_resize_picture_md_ratio\":\"1\",\"img_resize_picture_md_upsize\":\"0\",\"img_resize_picture_md_position\":\"center\",\"img_resize_picture_md_bgColor\":\"ffffff\",\"img_resize_picture_lg_method\":\"resize\",\"img_resize_picture_lg_width\":816,\"img_resize_picture_lg_height\":460,\"img_resize_picture_lg_ratio\":\"1\",\"img_resize_picture_lg_upsize\":\"0\",\"img_resize_picture_lg_position\":\"center\",\"img_resize_picture_lg_bgColor\":\"ffffff\",\"img_resize_avatar_method\":\"resize\",\"img_resize_avatar_width\":800,\"img_resize_avatar_height\":800,\"img_resize_avatar_ratio\":\"1\",\"img_resize_avatar_upsize\":\"0\",\"img_resize_avatar_position\":\"center\",\"img_resize_avatar_bgColor\":\"ffffff\",\"img_resize_company_logo_method\":\"resize\",\"img_resize_company_logo_width\":800,\"img_resize_company_logo_height\":800,\"img_resize_company_logo_ratio\":\"1\",\"img_resize_company_logo_upsize\":\"0\",\"img_resize_company_logo_position\":\"center\",\"img_resize_company_logo_bgColor\":\"rgba(0, 0, 0, 0)\"},\"localization\":{\"geoip_driver\":\"ipapi\",\"country_flag_shape\":\"circle\",\"show_country_flag\":\"in_next_logo\",\"auto_detect_language\":\"disabled\",\"show_languages_flags\":\"0\",\"default_country_code\":\"SA\"},\"security\":{\"honeypot_enabled\":\"1\",\"honeypot_name_field_name\":\"entity_field\",\"honeypot_valid_from_field_name\":\"valid_field\",\"honeypot_amount_of_seconds\":\"3\",\"honeypot_respond_to_spam_with\":\"blank_page\",\"captcha_delay\":\"1000\",\"recaptcha_version\":\"v2\"},\"auth\":{\"open_login_in_modal\":\"1\",\"login_max_attempts\":\"5\",\"login_decay_minutes\":\"15\",\"password_min_length\":\"6\",\"password_max_length\":\"30\",\"password_letters_required\":\"0\",\"password_mixedCase_required\":\"0\",\"password_numbers_required\":\"0\",\"password_symbols_required\":\"0\",\"password_uncompromised_required\":\"0\",\"password_uncompromised_threshold\":\"0\",\"email_validator_rfc\":\"1\",\"email_validator_strict\":\"0\",\"email_validator_dns\":\"0\",\"email_validator_spoof\":\"0\",\"email_validator_filter\":\"0\",\"otp_length\":4,\"otp_expire_time_seconds\":300,\"otp_cooldown_seconds\":60,\"otp_max_attempts\":3,\"otp_decay_minutes\":60,\"max_login_lockout_attempts\":0,\"max_resend_lockout_attempts\":15,\"lockout_duration_minutes\":1440,\"hero_image_path\":\"app\\/default\\/auth\\/login-bg-blurred.jpg\",\"hero_image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/auth\\\\thumbnails\\\\2500x2500-login-bg-blurred.jpg\"},\"social_auth\":{\"button_type\":\"loginWithDefault\"},\"social_link\":{\"facebook_page_url\":\"#\",\"twitter_url\":\"#\",\"linkedin_url\":\"#\",\"pinterest_url\":\"#\",\"instagram_url\":\"#\",\"tiktok_url\":\"#\",\"youtube_url\":\"#\",\"vimeo_url\":\"#\",\"vk_url\":\"#\"},\"social_share\":{\"facebook\":\"1\",\"twitter\":\"1\",\"linkedin\":\"1\",\"whatsapp\":\"1\",\"telegram\":\"1\",\"snapchat\":\"0\",\"messenger\":\"0\",\"pinterest\":\"0\",\"vk\":\"0\",\"tumblr\":\"0\",\"og_image_width\":\"1200\",\"og_image_height\":\"630\"},\"optimization\":{\"cache_driver\":\"file\",\"cache_expiration\":\"86400\",\"memcached_servers_1_host\":\"127.0.0.1\",\"memcached_servers_1_port\":\"11211\",\"redis_client\":\"predis\",\"redis_cluster\":\"predis\",\"redis_host\":\"127.0.0.1\",\"redis_port\":\"6379\",\"redis_database\":\"0\",\"queue_driver\":\"sync\",\"lazy_loading_activation\":\"0\",\"minify_html_activation\":\"0\"},\"seo\":{\"robots_txt\":\"User-agent: *\\nAllow: \\/\\n\\nUser-agent: *\\nDisallow: \\/\\/admin\\/\\nDisallow: \\/assets\\/\\nDisallow: \\/css\\/\\nDisallow: \\/js\\/\\nDisallow: \\/vendor\\/\\nDisallow: \\/main.php\\nDisallow: \\/index.php\\nDisallow: \\/mix-manifest.json\\nDisallow: \\/*?display=*\\nDisallow: \\/locale\\/en\\nDisallow: \\/locale\\/fr\\nDisallow: \\/locale\\/es\\nDisallow: \\/locale\\/ar\\nDisallow: \\/locale\\/pt\\nDisallow: \\/locale\\/de\\nDisallow: \\/locale\\/it\\nDisallow: \\/locale\\/tr\\nDisallow: \\/locale\\/ru\\nDisallow: \\/locale\\/hi\\nDisallow: \\/locale\\/bn\\nDisallow: \\/locale\\/zh\\nDisallow: \\/locale\\/ja\\nDisallow: \\/locale\\/he\\nDisallow: \\/locale\\/th\\nDisallow: \\/locale\\/ro\\nDisallow: \\/locale\\/ka\\nDisallow: \\/auth\\/connect\\/facebook\\nDisallow: \\/auth\\/connect\\/linkedin\\nDisallow: \\/auth\\/connect\\/twitter\\nDisallow: \\/auth\\/connect\\/google\\n\",\"robots_txt_sm_indexes\":\"1\",\"listing_hashed_id_enabled\":\"0\",\"listing_hashed_id_seo_redirection\":\"1\"},\"pagination\":{\"per_page\":10,\"categories_per_page\":12,\"cities_per_page\":40,\"payments_per_page\":10,\"posts_per_page\":12,\"saved_posts_per_page\":10,\"saved_search_per_page\":20,\"subadmin1_per_page\":39,\"subadmin2_per_page\":38,\"subscriptions_per_page\":10,\"threads_per_page\":20,\"threads_messages_per_page\":10,\"similar_posts_limit\":4,\"categories_limit\":50,\"cities_limit\":50,\"auto_complete_cities_limit\":25,\"subadmin1_select_limit\":200,\"subadmin2_select_limit\":5000,\"cities_select_limit\":25},\"other\":{\"account_closure_enabled\":\"1\",\"cookie_consent_enabled\":\"0\",\"show_tips_messages\":\"1\",\"timer_new_messages_checking\":60000,\"wysiwyg_editor\":\"tinymce\",\"carousel_slide_by_page\":\"0\",\"carousel_mouse_drag\":\"0\",\"carousel_loop\":\"1\",\"carousel_rewind\":\"0\",\"carousel_autoplay\":\"1\",\"carousel_autoplay_timeout\":\"1500\",\"carousel_autoplay_hover_pause\":\"1\",\"carousel_nav\":\"1\",\"carousel_nav_position\":\"bottom\",\"carousel_controls\":\"0\",\"carousel_ctrl_position\":\"top-end\",\"cookie_expiration\":1440},\"cron\":{\"unactivated_listings_expiration\":\"30\",\"activated_listings_expiration\":\"30\",\"archived_listings_expiration\":\"7\",\"manually_archived_listings_expiration\":\"90\"},\"footer\":{\"hide_payment_plugins_logos\":\"1\"},\"backup\":{\"disable_notifications\":\"1\",\"keep_all_backups_for_days\":\"7\",\"keep_daily_backups_for_days\":\"16\",\"keep_weekly_backups_for_weeks\":\"8\",\"keep_monthly_backups_for_months\":\"4\",\"keep_yearly_backups_for_years\":\"2\",\"maximum_storage_in_megabytes\":\"5000\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/settings/{key}",
                            "metadata": {
                                "groupName": "Settings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get setting",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "key": {
                                    "name": "key",
                                    "description": "The setting's key.",
                                    "required": true,
                                    "example": "app",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "key": "app"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"name\":\"SHAREK FORSA\",\"logo\":\"app\\/logo\\/logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark\":\"app\\/default\\/logo-dark.png\",\"logo_light\":\"app\\/default\\/logo-light.png\",\"favicon\":\"app\\/default\\/ico\\/favicon.png\",\"date_format\":\"YYYY-MM-DD\",\"datetime_format\":\"YYYY-MM-DD HH:mm\",\"date_from_now_modifier\":\"DIFF_RELATIVE_TO_NOW\",\"date_from_now_short\":\"0\",\"vector_charts_type\":\"morris_bar\",\"vector_charts_limit\":\"7\",\"show_countries_charts\":\"1\",\"countries_charts_limit\":\"5\",\"latest_entries_limit\":\"5\",\"general_settings_as_submenu_in_sidebar\":\"1\",\"dark_theme_enabled\":\"0\",\"system_theme_enabled\":\"0\",\"php_specific_date_format\":\"0\",\"logo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_light_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"favicon_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/ico\\/favicon.png\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/sections",
                            "metadata": {
                                "groupName": "Home",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List sections",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":{\"search_form\":{\"belongs_to\":\"home\",\"key\":\"search_form\",\"data\":[],\"options\":{\"enable_extended_form_area\":\"1\",\"background_image_path\":null,\"background_image_darken\":0,\"title_en\":\"Sell and Buy near you\",\"sub_title_en\":\"Simple, fast and efficient\",\"title_fr\":\"Vendre et acheter près de chez vous\",\"sub_title_fr\":\"Simple, rapide et efficace\",\"title_es\":\"Vender y comprar cerca de usted\",\"sub_title_es\":\"Simple, rápido y eficiente\",\"title_ar\":\"بيع وشراء بالقرب منك\",\"sub_title_ar\":\"بسيطة وسريعة وفعالة\",\"title_pt\":\"Vender e comprar perto de si\",\"sub_title_pt\":\"Simples, Rápido e Eficiente\",\"title_de\":\"Verkaufen und Kaufen in Ihrer Nähe\",\"sub_title_de\":\"Einfach, schnell und effizient\",\"title_it\":\"Vendi e compra vicino a te\",\"sub_title_it\":\"Semplice, veloce ed efficiente\",\"title_tr\":\"Size yakın satıp satın alın\",\"sub_title_tr\":\"Basit, hızlı ve verimli\",\"title_ru\":\"Продавайте и покупайте рядом с вами\",\"sub_title_ru\":\"Просто, быстро и эффективно\",\"title_hi\":\"अपने पास बेचें और खरीदें\",\"sub_title_hi\":\"सरल, तेज और कुशल\",\"title_bn\":\"আপনার কাছাকাছি বিক্রি করুন এবং কিনুন\",\"sub_title_bn\":\"সহজ, দ্রুত এবং দক্ষ\",\"title_zh\":\"在您附近买卖\",\"sub_title_zh\":\"简单,快速,高效\",\"title_ja\":\"お近くの売買\",\"sub_title_ja\":\"シンプル、迅速かつ効率的\",\"title_he\":\"למכור ולקנות בקרבתך\",\"sub_title_he\":\"פשוט, מהיר ויעיל\",\"title_th\":\"ขายและซื้อใกล้บ้านคุณ\",\"sub_title_th\":\"ง่ายรวดเร็วและมีประสิทธิภาพ\",\"title_ro\":\"Vinde și Cumpără inteligent\",\"sub_title_ro\":\"Simplu, rapid și eficient!\",\"title_ka\":\"გაყიდვა და შეძენა ახლოს თქვენ\",\"sub_title_ka\":\"მარტივი, სწრაფი და ეფექტური\",\"background_image_url\":null},\"lft\":0},\"categories\":{\"belongs_to\":\"home\",\"key\":\"categories\",\"data\":{\"categories\":{\"1\":{\"id\":1,\"parent_id\":null,\"name\":\"Automobiles\",\"slug\":\"automobiles\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-car\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":1,\"rgt\":10,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"9\":{\"id\":9,\"parent_id\":null,\"name\":\"Phones & Tablets\",\"slug\":\"phones-and-tablets\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-mobile-screen-button\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":11,\"rgt\":17,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"14\":{\"id\":14,\"parent_id\":null,\"name\":\"Electronics\",\"slug\":\"electronics\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-laptop\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":18,\"rgt\":35,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"30\":{\"id\":30,\"parent_id\":null,\"name\":\"Furniture & Appliances\",\"slug\":\"furniture-appliances\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-couch\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":36,\"rgt\":44,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"37\":{\"id\":37,\"parent_id\":null,\"name\":\"Real estate\",\"slug\":\"real-estate\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-house\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":45,\"rgt\":55,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"46\":{\"id\":46,\"parent_id\":null,\"name\":\"Animals & Pets\",\"slug\":\"animals-and-pets\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-paw\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":56,\"rgt\":65,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"54\":{\"id\":54,\"parent_id\":null,\"name\":\"Fashion\",\"slug\":\"fashion\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-shirt\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":66,\"rgt\":75,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"62\":{\"id\":62,\"parent_id\":null,\"name\":\"Beauty & Well being\",\"slug\":\"beauty-well-being\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-spa\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":76,\"rgt\":88,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"73\":{\"id\":73,\"parent_id\":null,\"name\":\"Jobs\",\"slug\":\"jobs\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-briefcase\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":89,\"rgt\":114,\"depth\":0,\"type\":\"job-offer\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"97\":{\"id\":97,\"parent_id\":null,\"name\":\"Services\",\"slug\":\"services\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-clipboard-list\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":115,\"rgt\":133,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"114\":{\"id\":114,\"parent_id\":null,\"name\":\"Learning\",\"slug\":\"learning\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-graduation-cap\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":134,\"rgt\":143,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"122\":{\"id\":122,\"parent_id\":null,\"name\":\"Local Events\",\"slug\":\"local-events\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-regular fa-calendar-days\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":144,\"rgt\":158,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"}},\"countPostsPerCat\":[]},\"options\":{\"max_items\":null,\"cat_display_type\":\"c_bigIcon_list\",\"show_icon\":\"1\",\"max_sub_cats\":\"3\"},\"lft\":2},\"premium_listings\":{\"belongs_to\":\"home\",\"key\":\"premium_listings\",\"data\":{\"premium\":null},\"options\":{\"max_items\":\"20\",\"items_in_carousel\":\"1\"},\"lft\":4},\"locations\":{\"belongs_to\":\"home\",\"key\":\"locations\",\"data\":{\"cities\":[{\"id\":44,\"country_code\":\"SA\",\"name\":\"Riyadh\",\"longitude\":46.72,\"latitude\":24.69,\"feature_class\":\"P\",\"feature_code\":\"PPLC\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":4205961,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"riyadh\"},{\"id\":136,\"country_code\":\"SA\",\"name\":\"Riyadh\",\"longitude\":46.72,\"latitude\":24.69,\"feature_class\":\"P\",\"feature_code\":\"PPLC\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":4205961,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"riyadh\"},{\"id\":29,\"country_code\":\"SA\",\"name\":\"Jeddah\",\"longitude\":39.19,\"latitude\":21.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":2867446,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2022-01-21T01:00:00.000000Z\",\"updated_at\":\"2022-01-21T01:00:00.000000Z\",\"slug\":\"jeddah\"},{\"id\":121,\"country_code\":\"SA\",\"name\":\"Jeddah\",\"longitude\":39.19,\"latitude\":21.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":2867446,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2022-01-21T01:00:00.000000Z\",\"updated_at\":\"2022-01-21T01:00:00.000000Z\",\"slug\":\"jeddah\"},{\"id\":25,\"country_code\":\"SA\",\"name\":\"Mecca\",\"longitude\":39.83,\"latitude\":21.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":1323624,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2020-05-28T01:00:00.000000Z\",\"updated_at\":\"2020-05-28T01:00:00.000000Z\",\"slug\":\"mecca\"},{\"id\":117,\"country_code\":\"SA\",\"name\":\"Mecca\",\"longitude\":39.83,\"latitude\":21.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":1323624,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2020-05-28T01:00:00.000000Z\",\"updated_at\":\"2020-05-28T01:00:00.000000Z\",\"slug\":\"mecca\"},{\"id\":61,\"country_code\":\"SA\",\"name\":\"Medina\",\"longitude\":39.61,\"latitude\":24.47,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":1300000,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"medina\"},{\"id\":153,\"country_code\":\"SA\",\"name\":\"Medina\",\"longitude\":39.61,\"latitude\":24.47,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":1300000,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"medina\"},{\"id\":104,\"country_code\":\"SA\",\"name\":\"Sulţānah\",\"longitude\":39.59,\"latitude\":24.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":946697,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2012-01-16T01:00:00.000000Z\",\"updated_at\":\"2012-01-16T01:00:00.000000Z\",\"slug\":\"sultanah\"},{\"id\":12,\"country_code\":\"SA\",\"name\":\"Sulţānah\",\"longitude\":39.59,\"latitude\":24.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":946697,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2012-01-16T01:00:00.000000Z\",\"updated_at\":\"2012-01-16T01:00:00.000000Z\",\"slug\":\"sultanah\"},{\"id\":81,\"country_code\":\"SA\",\"name\":\"Dammam\",\"longitude\":50.1,\"latitude\":26.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.06\",\"subadmin2_code\":null,\"population\":768602,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2014-08-19T01:00:00.000000Z\",\"updated_at\":\"2014-08-19T01:00:00.000000Z\",\"slug\":\"dammam\"},{\"id\":173,\"country_code\":\"SA\",\"name\":\"Dammam\",\"longitude\":50.1,\"latitude\":26.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.06\",\"subadmin2_code\":null,\"population\":768602,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2014-08-19T01:00:00.000000Z\",\"updated_at\":\"2014-08-19T01:00:00.000000Z\",\"slug\":\"dammam\"},{\"id\":132,\"country_code\":\"SA\",\"name\":\"Ta’if\",\"longitude\":40.42,\"latitude\":21.27,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":530848,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-05T01:00:00.000000Z\",\"updated_at\":\"2015-09-05T01:00:00.000000Z\",\"slug\":\"ta’if\"},{\"id\":40,\"country_code\":\"SA\",\"name\":\"Ta’if\",\"longitude\":40.42,\"latitude\":21.27,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":530848,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-05T01:00:00.000000Z\",\"updated_at\":\"2015-09-05T01:00:00.000000Z\",\"slug\":\"ta’if\"},{\"id\":101,\"country_code\":\"SA\",\"name\":\"Tabuk\",\"longitude\":36.57,\"latitude\":28.4,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.19\",\"subadmin2_code\":null,\"population\":455450,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-12T01:00:00.000000Z\",\"updated_at\":\"2015-09-12T01:00:00.000000Z\",\"slug\":\"tabuk\"},{\"id\":9,\"country_code\":\"SA\",\"name\":\"Tabuk\",\"longitude\":36.57,\"latitude\":28.4,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.19\",\"subadmin2_code\":null,\"population\":455450,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-12T01:00:00.000000Z\",\"updated_at\":\"2015-09-12T01:00:00.000000Z\",\"slug\":\"tabuk\"},{\"id\":155,\"country_code\":\"SA\",\"name\":\"Al Kharj\",\"longitude\":47.33,\"latitude\":24.16,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":425300,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2017-09-13T01:00:00.000000Z\",\"updated_at\":\"2017-09-13T01:00:00.000000Z\",\"slug\":\"al-kharj\"},{\"id\":63,\"country_code\":\"SA\",\"name\":\"Al Kharj\",\"longitude\":47.33,\"latitude\":24.16,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":425300,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2017-09-13T01:00:00.000000Z\",\"updated_at\":\"2017-09-13T01:00:00.000000Z\",\"slug\":\"al-kharj\"},{\"id\":34,\"country_code\":\"SA\",\"name\":\"Buraydah\",\"longitude\":43.97,\"latitude\":26.33,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.08\",\"subadmin2_code\":null,\"population\":391336,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2018-03-06T01:00:00.000000Z\",\"updated_at\":\"2018-03-06T01:00:00.000000Z\",\"slug\":\"buraydah\"},{\"id\":0,\"name\":\"More cities &raquo;\",\"subadmin0_code\":0}],\"items_cols\":4},\"options\":{\"show_cities\":\"1\",\"max_items\":\"19\",\"show_listing_btn\":\"1\",\"enable_map\":\"0\",\"map_width\":\"300\",\"map_height\":\"300\"},\"lft\":6},\"latest_listings\":{\"belongs_to\":\"home\",\"key\":\"latest_listings\",\"data\":{\"latest\":null},\"options\":{\"max_items\":\"8\",\"show_view_more_btn\":\"1\"},\"lft\":8},\"stats\":{\"belongs_to\":\"home\",\"key\":\"stats\",\"data\":{\"count\":{\"posts\":0,\"users\":36,\"locations\":184}},\"options\":{\"icon_count_listings\":\"bi bi-megaphone\",\"icon_count_users\":\"bi bi-people\",\"icon_count_locations\":\"bi bi-geo-alt\",\"counter_up_delay\":10,\"counter_up_time\":2000},\"lft\":10}}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/sections/{method}",
                            "metadata": {
                                "groupName": "Home",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get section",
                                "description": "Get category by its unique slug or ID.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "method": {
                                    "name": "method",
                                    "description": "",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "key": {
                                    "name": "key",
                                    "description": "The key/method of the section.",
                                    "required": true,
                                    "example": "getCategories",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "method": 1,
                                "key": "getCategories"
                            },
                            "queryParameters": {
                                "parentCatSlug": {
                                    "name": "parentCatSlug",
                                    "description": "The slug of the parent category to retrieve used when category's slug provided instead of ID.",
                                    "required": false,
                                    "example": "automobiles",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "parentCatSlug": "automobiles"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Section not found\",\"result\":null,\"error\":\"Section not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/captcha",
                            "metadata": {
                                "groupName": "Captcha",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get CAPTCHA",
                                "description": "Calling this endpoint is mandatory if the captcha is enabled in the Admin panel.\nReturn JSON data with an 'img' item that contains the captcha image to show and a 'key' item that contains the generated key to send for validation.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"sensitive\":false,\"key\":\"eyJpdiI6IjBid2xQRWlPMUYzZmR5VzNEci9seFE9PSIsInZhbHVlIjoiVStmbUxUaUFqcUFObTVscjZ2QkNaY0VNeUFLcGNYSThmQ0FtT2ZHU1hZaGkzbXRDZnBxZTFtUW1oeGwrQ08waWRPTUNtZ0x1Rjc0MmpBbnVMZ0VTZGsxYnVGWjhLMTR4VDRCL1dwWE0wR289IiwibWFjIjoiYWJlNzU5MDQzNzM4MTJiMzI1YmUwNGUzN2IwOGFlOGQ4YWQzODMzMTA0MTU4NjdmNjY3MzhjMTgzMDFmNWVkOCIsInRhZyI6IiJ9\",\"img\":\"data:image\\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAAAyCAYAAADbYdBlAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAPAklEQVR4nO2de2xb133HP\\/fy8s3Ll0RasmRJjmXZcew4dr06bhMna5oi6dYmRboMRVKgG4oOXYe1wJYNwzZ0K1AsWbph7TYMWIE90K3Jijy2Lkk7L+2SOOmS+BXHTmJHsh1Z1luUxMclL8n72B+SKT4lUrqU7I6ff8hzz7n3HIpf\\/h7nAQnH3zpt0qLFBiFu9ABa\\/P+mJcAWG0pLgC02lHUR4Be\\/enI9umlxHdJ0AQ6PpOnd4ml2Ny2uU1oCbLGhNF2AH4yk6WsJsEUNWhawxYbSEmCLDUVq5sNb4mscQc8SuvAD5NGf4EgNI2oZDMlDzteNGrqJRPfdZNr3b\\/QwLaMlwGsIuzJKzyu\\/gUMZKbku6hmkbAxP7DThoe+jRA8y+uE\\/Q3e1bdBIraOpLriVgDSAkWfL0S9XiK8a3qk36H351xG0zDoMrLk03QLe8ZH2Znbxc0N46AmcqeFC2UQg1XkHamgXmDqemRN4p48X6p3JD2g7\\/w\\/M3PQVS8dhzEyjvXkUMxEHQJD9SAcPI7ZHLO3nKi0XfI0QGH6upDx18+8wO\\/D50jaXnmXziT8plIOXnrVUgKZhkPnW1zHj8yXXtVPH8PzRo5b1U0zTXHBLfA1g5HEmhgpFXfIyu\\/2himbxrZ9B9fcXynZ1Gpsas2wYZmy6QnwAZjJuWR\\/ltAR4DeBQRhFMvVBWw7tBqP7VaJ6OkrKoKZaNw5iZsuxZ9dI0F3w9JiDHE1MciY3glxzIkp1DgQ4GPMGSNjlDRxJEREGwrF8pM1lSzns6a7YVjHxJ2bS5LBuHOT25ciOLaZoAr8cE5FImwavx8UK53e5iwBPk9fgEP5z+gLNKDM00ERH4eLibr\\/XstaRfKTNdUs67Ny3TdkkkJgKaM2zJGACMqYmadaZhACCI1jrNZQX47isvoswvxBh2pwuH24s3GMIf6SAQ3YRoq337alzw\\/FCa2DsK+bSBaZgIooDkFvF2OIjuk7E5l\\/\\/wqbEs6ckchmYiiGBziTj9Er7NTgTbyhYrqZdaF6do4\\/HhU\\/zP3GjJdQOTWF5t6LMth73MAmruaM22xWLVnWEQ125D9IuDZP76UVCrT+uYiTjKVx4GQIhswvMH30RwW+Pdlh394BuvoOWyVetskp1I3zY279hN7559JWJcbfx36YUYycvV+xv7WZz9X91SU0jvPzXFxOuJqnWhATd7vtS1Yv9JLVdSfmJikPFcumpbWbKv+Lx6qXDBNSygoGWwFcV8eU9tS9kI2rHXaoqvHHN6En3wHNLN1qzG1DQphqHXFB+AruWZGDrHyeef4kd\\/8xiXz54q1K1WgN13hGrWKWM5Rl+tzNAAZs6kaooPILSjvrGUW8Bi8QUkB9vdAW70hIjYXfhtjrqeWQ9Sdq6kbNjlqu0qLKWrtqVsBDNd\\/UdWu33Kkn5hGQuYa2BQairBsf94ktmxEW75xKdXnYBE9vqYPOZh9lz1voePzBLdL+OQl4adT+sMPj1dtT2A3OOk6\\/ZgzfpiygUI0O308lvde7hZbmI8W5QBA9hy1ac9KmJFiywgTmdDzQWndYlPTQFKDgcfefALiJKEaRjkMmnS83PEpyeIXRkmk6i0RheOvYYv1MbwSNuqE5D+ByIcf\\/wyRq7ytKieNbn4XIydn1v6ww8+PU0+pVe0BRAdAjsf6kAQ68tYlTIB9rlk\\/nLgNlyirYFP0Dh5z+aScvj9f0bZdCumrVQY5a5ac1mzOiHdvB\\/t1Z+CWccJXbcHcdsOS\\/qFZQXopHP7jTVvnBsf5d1XjjAxdK7k+rsvH2F45L5VzwG6Qnb67mnj4g9nqtZPnUzSechPoM\\/N9NspZk7Xdgf990Vwt9Ufq5XHgI\\/07mu6+ABSm++kbfB7hbJ35gQ3HHmARPfHyck3YIo27OlJ\\/CMvlNynLZMtN4K0ex\\/eP\\/87sk\\/+E9qJ1ysbeGU8v\\/8NAIRAEMHRmMVctu\\/V3hjq7OKjv\\/prvP3icwy+cbRwfUZx07lGb9V1W4Cpk0lSV6rEoCZceHaG3V\\/sZOiZ2q63bZeXjoP+hvotd8G9ruqxmNWkIwdIdt6JPP5S4ZpDGaH9\\/D8ue19+mWy5UQSfH1zu6nU2ETFikbsvY82TOnvu+iRuOVAoJ\\/Jh2n1r26UhiAIDvxKtObrUaJZT375S0\\/XaZRsDDzb25eimgWosPc8jSpZONq\\/E6MFHSXbe2dA9VlnAjWTNAhQEkbYtfYVyXAvR5m0sq6qGr8tJ9zLJQ3Zeq1k38GAUu68x15nUSq2fz8JplnowJTdXPvpthg\\/\\/PfN996MGtqPb\\/RiiA93uJxPajV6WHWvu5uxQWU9quuD5iTFmR4dRlSS6pmGTHLj9AfxtEYKdXdiKvqCrs+SwYAGjwVy1RzZM3z1hZs6kUGdri62czkN+2m70NtxXufuVbesrwKukowdJRw9Wret\\/\\/hPY8kkADJsbw+5bz6E1hQoBXnrrGO8dfbFqlnsV0SYR3dpPz579dO3cjaokC3VxLURfjzXzRKJdpP+BKGe\\/O1ZXe3e7nW2fXl0AmtRLfzSyhfN8ViGpS4mZlfHfRlIiwOP\\/+QOG3z6x4k2GrjExdI6JoXO4fH5ymQWXG9dCBKQ55PaVVx3qJbzDQ2Sfj+lTK4hahJ0PbUK0ry6qKHfBVq50WIFNnSnZMfPzEP9BUQw4+MbRusRXjppKYOgLLjKRD+O3zxLevMW6EbIwnSK5lxdW791h5C2rnyC91i2gPT1eUrZsEnqDkWBhWe2dl49UVHoCITr6d+L2+dG0HKnYDImZSZIz00DlpGVcCxGRszg9jcdgyw7SLeIISGiZ2rFl+561xUPXugX0Tr1ZUl5uy9b1hAQwMXQOPV\\/65Q4cuoPdv3gPQpWNkdm0wvjge1w8+TpzY0uHaBL5MAe6a8eOq+XSj2OkJ5ZPbIaemWLvb3avuo+NSkLEXJytP\\/kc81sfIN77qao7YRzJDwgP\\/kvJNTW0a13G12wkgNjo5ZKLbn+QPR\\/7ZM2bnB4vfXsP0Lf3AD\\/+28dQ5meBBQs4sNNa1xW\\/mOHKSyuLOn5RZfz1OJ23BlZsW42NcsH2zBQOZZTo2e8QPfsd8u4O1OBOcnIvpiDiSF3GN34U0Vgan+YIkuq4bV3G12wkgEzZOYB6Yzgtn0OZX9rJcW\\/03whv\\/rJlg9NUg3NPTFbz9lW5+FyMtpu8JZsV6iW1QS64fH3XnpnAnpmA8Ro3AJO3\\/B6ITRhfjc2mplb\\/NFijLHxTZTP++Tr3hs2NXaFYHYIgEuy0LgMeemaa7Fz9H15XDYb+fYZdn+9YuXEZ5RbQu04uWHeEyHm31HUe2BAdTO59hETPLzVlLEKt2D2toF8awra1v3p9EYZhkEgqxJOpwmuyrJxIpIgnFRLJ1IIAvcHSfXjTwxeJXRmmrbt32c6K4z8Af3RTyQT1Wpg+nWLqZHLlhmXMnE4R+5BC267GEqGKJGSdBKiGb+LCvc\\/hnH8fz\\/QxXPPv4UgOY89MImppTNFO3tOBEr2VuW0PojUx+ai13qshMPYX3yQZipJQMqi3303KFySRTBFPLAjpqsDSGRW\\/7CUg+wqvsuwl6Jfp6epYuO73EZC9+GXfggC7duzm\\/M9eKnRomgZH\\/\\/W77Dp8NzccOIRkrx4PlceO4a7lBVsv2bjG4FO1T2htOiCjqQaxs9VPhA0+PUVwW++KW\\/iLqUhCpPWdhskGB8gGB9avv1yORFIpslYp4pNpYrYoSWwkBBtJbCQFiTwCsqnjn9eQceB\\/623CBw7SHg6xra8bv+wrCM7nbWwXlAQQ2ryFzQM3Mfb+O4UKXctz5qcv8O7RF+nYtoP2nq2EOrsJRDuQFrfjlFtAq+b\\/zj85iZYxqtbZZRvb7mtHUw3mzqcx8pUBYi6uc+lHMfrvr3+ttDIJubamYeoho2YXrZGy6OZSiyJbeh9PLLwC+GVvkbXy4fd72dwRwTs+jN\\/QkdGRTQ03Zd9FKo7vU39oyZgL0fqHfvmzpL8\\/x\\/xE6bKXns8xeu4Mo+fOFK45vT6cHi+ZsgPLVghw9Og884O1Y9Dtn40guW1IbhtbPhZi+L9mq7Ybey1OdL+Mv6e+yek\\/veHDJLQcSS1PSs\\/jWId9gPWgpDOLcdOSpSqxWgUXqGCXbIvWyLvo5hasUk9355JL9C+8Oh3VLbxxaC+Zx\\/4YM77MylPOmrV+AKH4H9Vo+Rxvv\\/g8l06+Qd2p5yKSw8l9j3xjTYNRJnKc\\/KsRTK1635FbfNz48FKCYWgmxx+\\/jBqr3EoP4O10sP9rtQ8ybRRLVqnUOpVarYU6l8u5GDcVWaoiqxXwewuikyRrTtka83Pknvoe2qk3wSizfk4nzgcexn77XZb0JVT7T0mJ6UkunPhfrrx7urDOuxKR3m0cfvhLqx6IqZuc\\/PYIylj1X5fkFfmFR3ortlnNnk8vu1mh794wPXdZd3a2GtUyv0Si6H1KKcn8\\/PKSaIrjp2KrdbWNzeJzuI1gqir68EVY3Gwi+AOIPVubvyPaH9nEvnvuZ9899zM3Psrs6DDxqQkSM5OkZmfIKgrlFjLctTb3e+XofE3xAWz\\/TKTqHr\\/wDg9tu701E5Lh\\/54jul\\/GFWosptM0bclClWV65XFVtczP7\\/cRDMr0bunE7\\/OWZH7XC4LLhbSjuSsuK9rsUGcXobK5PUPXSMfnySopcmqGfFZdc\\/xn6iaCJFS6XxG6bgsSuaX29vj++yMkL6vkEpU7pE3NZOaMQvfhYCHziyeqzVEVu0SFfF5bslD+JUsVbQ\\/Rv3VtmV+LJaq64I3CNExySR09Z2DqC4f+nQFp2S1WmYxKPKkwP5dk4sIcc7EkSUUhqaZRsgppLYOiZUoyv6uB+NU5qkI8VeQa3W7rjh62qM2qo9ZXfncIySVic4lIbnHxvQ1psWxziXXVFyOIAs6AREpJL8RNcwrxyytkfnapIJyrogpEvGyRI3Vnfi02jjVZQE010FUDLWMsvtfRFsu6apTUJ1IKSSVFMpMmlVFI5TIo+TRZUUUVVDKoZIwMip7BZXPidbjxubzIbg+yd8kyBQIywZCPUJtMqM2Py3f9zde1WGJdXPAXfvvrNTM\\/n9uLz+HBY3fjsXnw2FwYWbOqiGuJ3GpL3GL9uKZiwNXSiCWuVX\\/4WysvtLewnv8DWVTwzOl2Q+cAAAAASUVORK5CYII=\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        }
                    ],
                    [
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 500,
                                    "content": "{\"success\":false,\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"result\":null,\"error\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"exception\":{\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458\",\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"line\":30,\"code\":0,\"trace\":[{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"__construct\",\"class\":\"App\\\\Http\\\\Resources\\\\BaseResource\",\"type\":\"->\",\"args\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},0]},{\"function\":\"Illuminate\\\\Support\\\\Traits\\\\{closure}\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},0]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Arr.php\",\"line\":754,\"function\":\"array_map\",\"args\":[{},[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],[0,1,2,3,4,5,6,7,8,9]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Collection.php\",\"line\":809,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Arr\",\"type\":\"::\",\"args\":[[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Database\\\\Eloquent\\\\Collection.php\",\"line\":418,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"map\",\"class\":\"Illuminate\\\\Database\\\\Eloquent\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Support\\\\Traits\\\\ForwardsCalls.php\",\"line\":23,\"function\":\"mapInto\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pagination\\\\AbstractPaginator.php\",\"line\":801,\"function\":\"forwardCallTo\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\CollectsResources.php\",\"line\":35,\"function\":\"__call\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection.php\",\"line\":53,\"function\":\"collectResource\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection.php\",\"line\":31,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":96,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23},\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\StartupResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":81,\"function\":\"newCollection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Services\\\\StartupService.php\",\"line\":75,\"function\":\"collection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":15,\"user_id\":16,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"mirsal-logistics\",\"name\":\"مرسال الشحن\",\"tagline\":\"شبكة نقل برية مبردة\",\"description\":\"شركة ناشئة سعودية — شبكة نقل برية مبردة (بيانات تجريبية).\",\"sector\":\"logistics\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/mirsal-logistics\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":21,\"revenue_monthly\":\"1017000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"7500000.00\",\"fundraising_raised\":\"2400000.00\",\"score\":\"72.00\",\"visits\":696,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":16,\"name\":\"دانة الخالدي\",\"username\":\"demo.founder12\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.613858Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":16,\"user_id\":17,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"qimmah-edtech\",\"name\":\"قمة التدريب\",\"tagline\":\"تدريب مهني معتمد عن بُعد\",\"description\":\"شركة ناشئة سعودية — تدريب مهني معتمد عن بُعد (بيانات تجريبية).\",\"sector\":\"edtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/qimmah-edtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":15,\"revenue_monthly\":\"745000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4500000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"70.00\",\"visits\":680,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":17,\"name\":\"سلمان الشهري\",\"username\":\"demo.founder13\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.793204Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":22,\"user_id\":23,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"amlak-fintech\",\"name\":\"أملاك للتقنية\",\"tagline\":\"تقسيط إيجار تجاري مرن\",\"description\":\"شركة ناشئة سعودية — تقسيط إيجار تجاري مرن (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"series_b\",\"status\":\"closed_round\",\"website\":\"https:\\/\\/demo.platform.test\\/amlak-fintech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2017,\"team_size\":42,\"revenue_monthly\":\"1980000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"25000000.00\",\"fundraising_raised\":\"25000000.00\",\"score\":\"90.00\",\"visits\":840,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":\"2026-05-14T00:47:32.000000Z\",\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":23,\"name\":\"فيصل الجهني\",\"username\":\"demo.founder19\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.869228Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":19,\"user_id\":20,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"khayr-agtech\",\"name\":\"خير الزراعية\",\"tagline\":\"سوق مباشر من المزارع للمستهلك\",\"description\":\"شركة ناشئة سعودية — سوق مباشر من المزارع للمستهلك (بيانات تجريبية).\",\"sector\":\"agtech\",\"stage\":\"seed\",\"status\":\"approved\",\"website\":\"https:\\/\\/demo.platform.test\\/khayr-agtech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":14,\"revenue_monthly\":\"697000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4000000.00\",\"fundraising_raised\":\"0.00\",\"score\":\"67.00\",\"visits\":656,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":20,\"name\":\"أمل الفهد\",\"username\":\"demo.founder16\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.929357Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":17,\"user_id\":18,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"wazen-pay\",\"name\":\"وازن للمدفوعات\",\"tagline\":\"محفظة رواتب للعمالة الميدانية\",\"description\":\"شركة ناشئة سعودية — محفظة رواتب للعمالة الميدانية (بيانات تجريبية).\",\"sector\":\"fintech\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/wazen-pay\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":10,\"revenue_monthly\":\"518000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"3500000.00\",\"fundraising_raised\":\"750000.00\",\"score\":\"68.00\",\"visits\":664,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":18,\"name\":\"غادة البلوي\",\"username\":\"demo.founder14\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:32.998877Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":18,\"user_id\":19,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"bina-proptech\",\"name\":\"بناء العقارية\",\"tagline\":\"تقدير آلي لقيمة العقارات السكنية\",\"description\":\"شركة ناشئة سعودية — تقدير آلي لقيمة العقارات السكنية (بيانات تجريبية).\",\"sector\":\"proptech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/bina-proptech\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2022,\"team_size\":12,\"revenue_monthly\":\"611000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"5000000.00\",\"fundraising_raised\":\"1300000.00\",\"score\":\"71.00\",\"visits\":688,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":19,\"name\":\"تركي الرشيدي\",\"username\":\"demo.founder15\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.054022Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":20,\"user_id\":21,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"shams-solar\",\"name\":\"شمس للطاقة\",\"tagline\":\"تركيب ألواح شمسية للمنازل\",\"description\":\"شركة ناشئة سعودية — تركيب ألواح شمسية للمنازل (بيانات تجريبية).\",\"sector\":\"cleantech\",\"stage\":\"series_a\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/shams-solar\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2020,\"team_size\":29,\"revenue_monthly\":\"1384000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"16000000.00\",\"fundraising_raised\":\"6200000.00\",\"score\":\"79.00\",\"visits\":752,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":21,\"name\":\"بندر السديري\",\"username\":\"demo.founder17\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.114860Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":21,\"user_id\":22,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"cartx-ecommerce\",\"name\":\"كارتكس\",\"tagline\":\"تحسين معدل التحويل للمتاجر\",\"description\":\"شركة ناشئة سعودية — تحسين معدل التحويل للمتاجر (بيانات تجريبية).\",\"sector\":\"ecommerce\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/cartx-ecommerce\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2023,\"team_size\":11,\"revenue_monthly\":\"561000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"4800000.00\",\"fundraising_raised\":\"950000.00\",\"score\":\"66.00\",\"visits\":648,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":22,\"name\":\"موضي القحطاني\",\"username\":\"demo.founder18\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.169151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":23,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"tibb-labs\",\"name\":\"طب لاب\",\"tagline\":\"تشخيص مخبري منزلي سريع\",\"description\":\"شركة ناشئة سعودية — تشخيص مخبري منزلي سريع (بيانات تجريبية).\",\"sector\":\"healthtech\",\"stage\":\"seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/tibb-labs\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2021,\"team_size\":18,\"revenue_monthly\":\"884000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"6500000.00\",\"fundraising_raised\":\"1400000.00\",\"score\":\"74.00\",\"visits\":712,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}},{\"id\":24,\"user_id\":24,\"post_id\":null,\"country_code\":\"SA\",\"slug\":\"code-arabia\",\"name\":\"كود العربية\",\"tagline\":\"منصة توظيف مطورين عن بُعد\",\"description\":\"شركة ناشئة سعودية — منصة توظيف مطورين عن بُعد (بيانات تجريبية).\",\"sector\":\"technology\",\"stage\":\"pre_seed\",\"status\":\"fundraising\",\"website\":\"https:\\/\\/demo.platform.test\\/code-arabia\",\"logo_path\":null,\"pitch_deck_path\":null,\"founded_year\":2024,\"team_size\":7,\"revenue_monthly\":\"379000.00\",\"currency_code\":\"SAR\",\"fundraising_target\":\"2800000.00\",\"fundraising_raised\":\"400000.00\",\"score\":\"64.00\",\"visits\":632,\"verified_at\":\"2026-03-21T00:47:32.000000Z\",\"featured_at\":null,\"submitted_at\":\"2026-01-21T00:47:32.000000Z\",\"approved_at\":\"2026-02-21T00:47:32.000000Z\",\"rejection_reason\":null,\"deleted_at\":null,\"created_at\":\"2026-05-21T00:47:32.000000Z\",\"updated_at\":\"2026-05-21T00:47:32.000000Z\",\"owner\":{\"id\":24,\"name\":\"منى الحسين\",\"username\":\"demo.founder20\",\"photo_path\":null,\"created_at\":\"2026-05-21T04:41:33.231091Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"from\":1,\"last_page\":3,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/startups\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":23}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController.php\",\"line\":34,\"function\":\"list\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Services\\\\StartupService\",\"type\":\"->\",\"args\":[[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\ControllerDispatcher.php\",\"line\":46,\"function\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":265,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\ControllerDispatcher\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"index\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":211,\"function\":\"runController\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":808,\"function\":\"run\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Routing\\\\{closure}\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\LastUserActivity.php\",\"line\":46,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\LastUserActivity\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\BannedUser.php\",\"line\":45,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\BannedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\DemoRestriction.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\DemoRestriction\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser.php\",\"line\":40,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\GetLocalization.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\GetLocalization\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\RequirementsChecker.php\",\"line\":44,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\RequirementsChecker\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings.php\",\"line\":50,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":123,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":88,\"function\":\"handleRequestUsingNamedLimiter\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\",{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":26,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\{closure}\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":25,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\VerifyAPIAccess.php\",\"line\":47,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\VerifyAPIAccess\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":103,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":45,\"function\":\"handleApi\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":807,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":786,\"function\":\"runRouteWithinStack\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":750,\"function\":\"runRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":739,\"function\":\"dispatchToRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":200,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Foundation\\\\Http\\\\{closure}\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\barryvdh\\\\laravel-debugbar\\\\src\\\\Middleware\\\\InjectDebugbar.php\",\"line\":59,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Barryvdh\\\\Debugbar\\\\Middleware\\\\InjectDebugbar\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\packages\\\\larapen\\\\honeypot\\\\src\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam.php\",\"line\":15,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Larapen\\\\Honeypot\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull.php\",\"line\":31,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings.php\",\"line\":51,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize.php\",\"line\":27,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance.php\",\"line\":114,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\HandleCors.php\",\"line\":61,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\HandleCors\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\TrustProxies.php\",\"line\":58,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\TrustProxies\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":175,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":144,\"function\":\"sendRequestThroughRouter\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":256,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":249,\"function\":\"callLaravelRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":86,\"function\":\"makeApiCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":39,\"function\":\"makeResponseCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":240,\"function\":\"__invoke\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":165,\"function\":\"iterateThroughStrategies\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[\"responses\",{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":97,\"function\":\"fetchResponses\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/startups\",\"metadata\":{\"custom\":[],\"groupName\":\"Startups\",\"groupDescription\":\"\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":125,\"function\":\"processRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/startups\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\StartupController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":72,\"function\":\"extractEndpointsInfoFromLaravelApp\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}],[],[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":50,\"function\":\"extractEndpointsInfoAndWriteToDisk\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[{},false]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Commands\\\\GenerateDocumentation.php\",\"line\":55,\"function\":\"get\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":36,\"function\":\"handle\",\"class\":\"Knuckles\\\\Scribe\\\\Commands\\\\GenerateDocumentation\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Util.php\",\"line\":43,\"function\":\"Illuminate\\\\Container\\\\{closure}\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":96,\"function\":\"unwrapIfClosure\",\"class\":\"Illuminate\\\\Container\\\\Util\",\"type\":\"::\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":35,\"function\":\"callBoundMethod\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Container.php\",\"line\":754,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],[],null]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":211,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\Container\",\"type\":\"->\",\"args\":[[{},\"handle\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Command\\\\Command.php\",\"line\":318,\"function\":\"execute\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":180,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Command\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":1074,\"function\":\"run\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":341,\"function\":\"doRunCommand\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":192,\"function\":\"doRun\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Console\\\\Kernel.php\",\"line\":197,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Application.php\",\"line\":1234,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Console\\\\Kernel\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\artisan\",\"line\":13,\"function\":\"handleCommand\",\"class\":\"Illuminate\\\\Foundation\\\\Application\",\"type\":\"->\",\"args\":[{}]}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{id}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "792",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "792"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Startup not found.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "Must be 2 characters.",
                                    "required": false,
                                    "example": "uy",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "aasxuphfzoodpj",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tagline": {
                                    "name": "tagline",
                                    "description": "Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "ysyr",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 50000 characters.",
                                    "required": false,
                                    "example": "Vel molestias qui ut enim iure voluptates.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "vhjadwugnfjwzbfrpsov",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": false,
                                    "example": "pre_seed",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "website": {
                                    "name": "website",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "whlicyzjiuhagssmpjv",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "founded_year": {
                                    "name": "founded_year",
                                    "description": "Must be at least 1900. Must not be greater than 2027.",
                                    "required": false,
                                    "example": 22,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "team_size": {
                                    "name": "team_size",
                                    "description": "Must be at least 1. Must not be greater than 10000.",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "revenue_monthly": {
                                    "name": "revenue_monthly",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 20,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "xrw",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "fundraising_target": {
                                    "name": "fundraising_target",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 3,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "uy",
                                "name": "aasxuphfzoodpj",
                                "tagline": "ysyr",
                                "description": "Vel molestias qui ut enim iure voluptates.",
                                "sector": "vhjadwugnfjwzbfrpsov",
                                "stage": "pre_seed",
                                "website": "whlicyzjiuhagssmpjv",
                                "founded_year": 22,
                                "team_size": 5,
                                "revenue_monthly": 20,
                                "currency_code": "xrw",
                                "fundraising_target": 3
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{id}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "84",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "84"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "Must be 2 characters.",
                                    "required": false,
                                    "example": "cx",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "wfnzrcvdz",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tagline": {
                                    "name": "tagline",
                                    "description": "Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "wutcwwitvlod",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 50000 characters.",
                                    "required": false,
                                    "example": "Quia sed veniam repudiandae molestiae eos.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "mxuofbler",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": false,
                                    "example": "idea",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "website": {
                                    "name": "website",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "iwnknplvomjocshy",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "founded_year": {
                                    "name": "founded_year",
                                    "description": "Must be at least 1900. Must not be greater than 2027.",
                                    "required": false,
                                    "example": 8,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "team_size": {
                                    "name": "team_size",
                                    "description": "Must be at least 1. Must not be greater than 10000.",
                                    "required": false,
                                    "example": 22,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "revenue_monthly": {
                                    "name": "revenue_monthly",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 36,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "rjf",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "fundraising_target": {
                                    "name": "fundraising_target",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 73,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The <code>id</code> of an existing record in the posts table.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "cx",
                                "name": "wfnzrcvdz",
                                "tagline": "wutcwwitvlod",
                                "description": "Quia sed veniam repudiandae molestiae eos.",
                                "sector": "mxuofbler",
                                "stage": "idea",
                                "website": "iwnknplvomjocshy",
                                "founded_year": 8,
                                "team_size": 22,
                                "revenue_monthly": 36,
                                "currency_code": "rjf",
                                "fundraising_target": 73,
                                "post_id": 1
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{id}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "6118135",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "6118135"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{id}/submit-review",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "15",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "15"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{id}/kpi",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "929223",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "929223"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "83924",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "83924"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "6542",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "6542"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "cxpfupzc",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "role_title": {
                                    "name": "role_title",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "lqauwptvjkuoghmkmfulklj",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "Must be a valid email address. Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "bud18@example.com",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://hintz.net/",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "is_founder": {
                                    "name": "is_founder",
                                    "description": "",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 83,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 12,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "cxpfupzc",
                                "role_title": "lqauwptvjkuoghmkmfulklj",
                                "email": "bud18@example.com",
                                "linkedin_url": "http://hintz.net/",
                                "is_founder": false,
                                "sort_order": 83,
                                "user_id": 12
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team/{memberId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "2",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "347",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "2",
                                "memberId": "347"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "qeoajazjaokqfwmgpb",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "role_title": {
                                    "name": "role_title",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "clhwnjxcfxxdrttzgiidj",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "Must be a valid email address. Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "sally.erdman@example.net",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://kautzer.com/",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "is_founder": {
                                    "name": "is_founder",
                                    "description": "",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 69,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "qeoajazjaokqfwmgpb",
                                "role_title": "clhwnjxcfxxdrttzgiidj",
                                "email": "sally.erdman@example.net",
                                "linkedin_url": "http://kautzer.com/",
                                "is_founder": false,
                                "sort_order": 69,
                                "user_id": 3
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/team/{memberId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "7",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "4",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "7",
                                "memberId": "4"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "338",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "338"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "4709",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "4709"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "yayhqikpprrkyoijgy",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "Modi neque nam corrupti voluptas necessitatibus ad quo et.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "achieved_at": {
                                    "name": "achieved_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:12",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "yayhqikpprrkyoijgy",
                                "description": "Modi neque nam corrupti voluptas necessitatibus ad quo et.",
                                "achieved_at": "2026-05-21T04:42:12",
                                "sort_order": 1
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones/{milestoneId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "64",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "64",
                                "milestoneId": "8"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "drrhijbcbcmyys",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "Molestias quis facere et dolorem.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "achieved_at": {
                                    "name": "achieved_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:12",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 19,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "drrhijbcbcmyys",
                                "description": "Molestias quis facere et dolorem.",
                                "achieved_at": "2026-05-21T04:42:12",
                                "sort_order": 19
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/milestones/{milestoneId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "482",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "39",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "482",
                                "milestoneId": "39"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/media",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "9873",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "9873"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/media",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "87",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "87"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "file": {
                                    "name": "file",
                                    "description": "Must be a file. Must not be greater than 10240 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "type": {
                                    "name": "type",
                                    "description": "",
                                    "required": false,
                                    "example": "document",
                                    "type": "string",
                                    "enumValues": [
                                        "image",
                                        "document",
                                        "video"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "cpsldhyluebfbhcdazejvjw",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sort_order": {
                                    "name": "sort_order",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 16,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "type": "document",
                                "title": "cpsldhyluebfbhcdazejvjw",
                                "sort_order": 16
                            },
                            "fileParameters": {
                                "file": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/media/{mediaId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "9",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "mediaId": {
                                    "name": "mediaId",
                                    "description": "",
                                    "required": true,
                                    "example": "472339",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "9",
                                "mediaId": "472339"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/logo",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "83",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "83"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "logo": {
                                    "name": "logo",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": [],
                            "fileParameters": {
                                "logo": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/pitch-deck",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "61",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "61"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "pitch_deck": {
                                    "name": "pitch_deck",
                                    "description": "Must be a file. Must not be greater than 20480 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": [],
                            "fileParameters": {
                                "pitch_deck": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "66",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "99",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "66",
                                "roundId": "99"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "2",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "2"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "glxfqtky",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Itaque maxime aliquid eos veritatis.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": true,
                                    "example": "series_a",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "instrument": {
                                    "name": "instrument",
                                    "description": "",
                                    "required": true,
                                    "example": "safe",
                                    "type": "string",
                                    "enumValues": [
                                        "equity",
                                        "safe",
                                        "convertible_note"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 29,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "minimum_investment": {
                                    "name": "minimum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 27,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_investment": {
                                    "name": "maximum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 9,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "pre_money_valuation": {
                                    "name": "pre_money_valuation",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 81,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_valuation_cap": {
                                    "name": "safe_valuation_cap",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 22,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_discount_percent": {
                                    "name": "safe_discount_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 10,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "ipl",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:13",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "glxfqtky",
                                "description": "Itaque maxime aliquid eos veritatis.",
                                "stage": "series_a",
                                "instrument": "safe",
                                "target_amount": 29,
                                "minimum_investment": 27,
                                "maximum_investment": 9,
                                "pre_money_valuation": 81,
                                "safe_valuation_cap": 22,
                                "safe_discount_percent": 10,
                                "currency_code": "ipl",
                                "closes_at": "2026-05-21T04:42:13"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "12",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "5",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "12",
                                "roundId": "5"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "title": {
                                    "name": "title",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "aizvchpss",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Voluptatibus vel perferendis soluta a sunt veniam tenetur est.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "stage": {
                                    "name": "stage",
                                    "description": "",
                                    "required": true,
                                    "example": "growth",
                                    "type": "string",
                                    "enumValues": [
                                        "idea",
                                        "pre_seed",
                                        "seed",
                                        "series_a",
                                        "series_b",
                                        "series_c",
                                        "growth"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "instrument": {
                                    "name": "instrument",
                                    "description": "",
                                    "required": true,
                                    "example": "equity",
                                    "type": "string",
                                    "enumValues": [
                                        "equity",
                                        "safe",
                                        "convertible_note"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 49,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "minimum_investment": {
                                    "name": "minimum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 78,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_investment": {
                                    "name": "maximum_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 76,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "pre_money_valuation": {
                                    "name": "pre_money_valuation",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 7,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_valuation_cap": {
                                    "name": "safe_valuation_cap",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 19,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "safe_discount_percent": {
                                    "name": "safe_discount_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 13,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "qgf",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:13",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "title": "aizvchpss",
                                "description": "Voluptatibus vel perferendis soluta a sunt veniam tenetur est.",
                                "stage": "growth",
                                "instrument": "equity",
                                "target_amount": 49,
                                "minimum_investment": 78,
                                "maximum_investment": 76,
                                "pre_money_valuation": 7,
                                "safe_valuation_cap": 19,
                                "safe_discount_percent": 13,
                                "currency_code": "qgf",
                                "closes_at": "2026-05-21T04:42:13"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/open",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "55",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "918",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "55",
                                "roundId": "918"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/close",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "82088",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "931689552",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "82088",
                                "roundId": "931689552"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "746",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "4925",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "746",
                                "roundId": "4925"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "20",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "989",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "20",
                                "roundId": "989"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "amount": {
                                    "name": "amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 71,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "kxh",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": false,
                                    "example": "jfuxvqftdtsmzp",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "syndicate_id": {
                                    "name": "syndicate_id",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 89,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "amount": 71,
                                "currency_code": "kxh",
                                "notes": "jfuxvqftdtsmzp",
                                "syndicate_id": 89
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments/{commitmentId}/confirm",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "9539845",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "3076585",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "commitmentId": {
                                    "name": "commitmentId",
                                    "description": "",
                                    "required": true,
                                    "example": "itaque",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "9539845",
                                "roundId": "3076585",
                                "commitmentId": "itaque"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/commitments/{commitmentId}/cancel",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "98",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "commitmentId": {
                                    "name": "commitmentId",
                                    "description": "",
                                    "required": true,
                                    "example": "qui",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "1",
                                "roundId": "98",
                                "commitmentId": "qui"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/due-diligence",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "706398",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "8",
                                "roundId": "706398"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/rounds/{roundId}/due-diligence/{itemId}/toggle",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "42644280",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "roundId": {
                                    "name": "roundId",
                                    "description": "",
                                    "required": true,
                                    "example": "1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "itemId": {
                                    "name": "itemId",
                                    "description": "",
                                    "required": true,
                                    "example": "accusamus",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "42644280",
                                "roundId": "1",
                                "itemId": "accusamus"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "55244475",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "55244475"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "holder_name": {
                                    "name": "holder_name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "nfweimfsbcdtptxmumgp",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "holder_type": {
                                    "name": "holder_type",
                                    "description": "",
                                    "required": true,
                                    "example": "other",
                                    "type": "string",
                                    "enumValues": [
                                        "founder",
                                        "investor",
                                        "employee",
                                        "advisor",
                                        "other"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 20,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "funding_round_id": {
                                    "name": "funding_round_id",
                                    "description": "",
                                    "required": false,
                                    "example": 16,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ownership_percent": {
                                    "name": "ownership_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 13,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "shares": {
                                    "name": "shares",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 33,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "invested_amount": {
                                    "name": "invested_amount",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 52,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "gur",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": false,
                                    "example": "ckunnjmscekco",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "holder_name": "nfweimfsbcdtptxmumgp",
                                "holder_type": "other",
                                "user_id": 20,
                                "funding_round_id": 16,
                                "ownership_percent": 13,
                                "shares": 33,
                                "invested_amount": 52,
                                "currency_code": "gur",
                                "notes": "ckunnjmscekco"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table/{entryId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entryId": {
                                    "name": "entryId",
                                    "description": "",
                                    "required": true,
                                    "example": "4",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "3",
                                "entryId": "4"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "holder_name": {
                                    "name": "holder_name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "zxgdgzzsrobe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "holder_type": {
                                    "name": "holder_type",
                                    "description": "",
                                    "required": true,
                                    "example": "other",
                                    "type": "string",
                                    "enumValues": [
                                        "founder",
                                        "investor",
                                        "employee",
                                        "advisor",
                                        "other"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_id": {
                                    "name": "user_id",
                                    "description": "The <code>id</code> of an existing record in the users table.",
                                    "required": false,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "funding_round_id": {
                                    "name": "funding_round_id",
                                    "description": "",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ownership_percent": {
                                    "name": "ownership_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 23,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "shares": {
                                    "name": "shares",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 82,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "invested_amount": {
                                    "name": "invested_amount",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 29,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "emz",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": false,
                                    "example": "asxnwr",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "holder_name": "zxgdgzzsrobe",
                                "holder_type": "other",
                                "user_id": 3,
                                "funding_round_id": 5,
                                "ownership_percent": 23,
                                "shares": 82,
                                "invested_amount": 29,
                                "currency_code": "emz",
                                "notes": "asxnwr"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/startups/{startupId}/cap-table/{entryId}",
                            "metadata": {
                                "groupName": "Startups",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "645094",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entryId": {
                                    "name": "entryId",
                                    "description": "",
                                    "required": true,
                                    "example": "6",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "645094",
                                "entryId": "6"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/packages",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":[{\"id\":1,\"tier\":\"basic\",\"label\":\"Basic\",\"name\":\"أساسي\",\"description\":\"تقرير جدوى مع تحليل العائد ROI\",\"price\":\"999.00\",\"currencyCode\":\"SAR\",\"features\":[\"questionnaire\",\"roi\",\"html_report\"],\"includesConsultation\":false},{\"id\":2,\"tier\":\"standard\",\"label\":\"Standard\",\"name\":\"قياسي\",\"description\":\"تقرير كامل مع IRR وNPV وأقسام السوق\",\"price\":\"2499.00\",\"currencyCode\":\"SAR\",\"features\":[\"questionnaire\",\"roi\",\"irr\",\"npv\",\"html_report\",\"market_sections\"],\"includesConsultation\":false},{\"id\":3,\"tier\":\"premium\",\"label\":\"Premium\",\"name\":\"مميز\",\"description\":\"تقرير مؤسسي + جلسة استشارية مع خبير\",\"price\":\"4999.00\",\"currencyCode\":\"SAR\",\"features\":[\"questionnaire\",\"roi\",\"irr\",\"npv\",\"html_report\",\"consultation\"],\"includesConsultation\":true}]}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/templates",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":[{\"id\":3,\"sector\":\"fintech\",\"name\":\"Fintech\",\"description\":\"Template for financial technology startups\",\"questionCount\":5},{\"id\":4,\"sector\":\"healthtech\",\"name\":\"HealthTech\",\"description\":\"قالب دراسة جدوى للصحة الرقمية\",\"questionCount\":3},{\"id\":5,\"sector\":\"legal\",\"name\":\"Legal \\/ RegTech\",\"description\":\"قالب لخدمات قانونية وتقنية امتثال\",\"questionCount\":2},{\"id\":2,\"sector\":\"retail\",\"name\":\"Retail \\/ E-commerce\",\"description\":\"Template for retail and e-commerce ventures\",\"questionCount\":5},{\"id\":1,\"sector\":\"technology\",\"name\":\"Technology \\/ SaaS\",\"description\":\"Template for software and technology startups\",\"questionCount\":6}]}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/templates/{id}",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the template.",
                                    "required": true,
                                    "example": "04",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "04"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":4,\"sector\":\"healthtech\",\"name\":\"HealthTech\",\"description\":\"قالب دراسة جدوى للصحة الرقمية\",\"questionnaire\":[{\"id\":\"product\",\"type\":\"text\",\"label\":\"المنتج الطبي\\/الرقمي\",\"required\":true},{\"id\":\"regulatory\",\"type\":\"text\",\"label\":\"متطلبات تنظيمية\",\"required\":true},{\"id\":\"growth_rate\",\"type\":\"number\",\"label\":\"نمو سنوي %\",\"required\":true}],\"defaultFinancials\":{\"discount_rate\":0.14,\"operating_margin\":0.18,\"annual_revenue_y1\":400000,\"annual_revenue_y2\":1200000,\"annual_revenue_y3\":2800000,\"initial_investment\":800000}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/studies",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Create feasibility study",
                                "description": "Supports bilingual fields and multipart attachments (`gallery_images[]`, `documents[]`).",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "package_id": {
                                    "name": "package_id",
                                    "description": "Package ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "template_id": {
                                    "name": "template_id",
                                    "description": "Template ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "Arabic title.",
                                    "required": true,
                                    "example": "Feasibility study — SaaS",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "startup_id": {
                                    "name": "startup_id",
                                    "description": "optional Linked startup ID.",
                                    "required": false,
                                    "example": 9,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "title_en": {
                                    "name": "title_en",
                                    "description": "optional English title.",
                                    "required": false,
                                    "example": "explicabo",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "optional Arabic description.",
                                    "required": false,
                                    "example": "Voluptatem numquam eos odio rerum voluptatem laudantium autem.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description_en": {
                                    "name": "description_en",
                                    "description": "optional English description.",
                                    "required": false,
                                    "example": "quas",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "optional Sector (Arabic).",
                                    "required": false,
                                    "example": "quis",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector_en": {
                                    "name": "sector_en",
                                    "description": "optional Sector (English).",
                                    "required": false,
                                    "example": "rerum",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "cover_image": {
                                    "name": "cover_image",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "gallery_images": {
                                    "name": "gallery_images",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "documents": {
                                    "name": "documents",
                                    "description": "Must be a file. Must not be greater than 20480 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "package_id": 1,
                                "template_id": 1,
                                "title": "Feasibility study — SaaS",
                                "startup_id": 9,
                                "title_en": "explicabo",
                                "description": "Voluptatem numquam eos odio rerum voluptatem laudantium autem.",
                                "description_en": "quas",
                                "sector": "quis",
                                "sector_en": "rerum"
                            },
                            "fileParameters": {
                                "cover_image": null,
                                "gallery_images": [
                                    null
                                ],
                                "documents": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "0"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/answers",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "6318",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "6318"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "answers": {
                                    "name": "answers",
                                    "description": "",
                                    "required": true,
                                    "example": [],
                                    "type": "object",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials": {
                                    "name": "financials",
                                    "description": "",
                                    "required": false,
                                    "example": null,
                                    "type": "object",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.initial_investment": {
                                    "name": "financials.initial_investment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 76,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.annual_cash_flows": {
                                    "name": "financials.annual_cash_flows",
                                    "description": "",
                                    "required": false,
                                    "example": [
                                        219.274051
                                    ],
                                    "type": "number[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.discount_rate": {
                                    "name": "financials.discount_rate",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 23,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.projected_revenue": {
                                    "name": "financials.projected_revenue",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 63,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "financials.projected_costs": {
                                    "name": "financials.projected_costs",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 63,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "answers": [],
                                "financials": {
                                    "initial_investment": 76,
                                    "annual_cash_flows": [
                                        219.274051
                                    ],
                                    "discount_rate": 23,
                                    "projected_revenue": 63,
                                    "projected_costs": 63
                                }
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/calculate",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "718",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "718"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/request-payment",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "1458",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "1458"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/confirm-payment",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Confirm online payment",
                                "description": "Marks study as paid and applies platform/provider commission split. Returns `commission` object in `result`.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_KEY}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "5",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "5"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hEdafav6Ze84k6PD1V5g3bc"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/mark-paid",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "29",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "29"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/generate-report",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "5",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "5"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/feasibility/studies/{id}/export",
                            "metadata": {
                                "groupName": "Feasibility Studies",
                                "groupDescription": "\nPackages, templates, studies, payments, and HTML reports. Base path: `/api/ecosystem/feasibility`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the study.",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/requests",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 500,
                                    "content": "{\"success\":false,\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"result\":null,\"error\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458 Line: 30 in file: D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"exception\":{\"message\":\"App\\\\Http\\\\Resources\\\\BaseResource::__construct(): Argument #2 ($params) must be of type array, int given, called in D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php on line 458\",\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Resources\\\\BaseResource.php\",\"line\":30,\"code\":0,\"trace\":[{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"__construct\",\"class\":\"App\\\\Http\\\\Resources\\\\BaseResource\",\"type\":\"->\",\"args\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},0]},{\"function\":\"Illuminate\\\\Support\\\\Traits\\\\{closure}\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},0]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Arr.php\",\"line\":754,\"function\":\"array_map\",\"args\":[{},[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],[0,1,2,3,4,5,6,7,8,9]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Collection.php\",\"line\":809,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Arr\",\"type\":\"::\",\"args\":[[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Database\\\\Eloquent\\\\Collection.php\",\"line\":418,\"function\":\"map\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Collections\\\\Traits\\\\EnumeratesValues.php\",\"line\":458,\"function\":\"map\",\"class\":\"Illuminate\\\\Database\\\\Eloquent\\\\Collection\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Support\\\\Traits\\\\ForwardsCalls.php\",\"line\":23,\"function\":\"mapInto\",\"class\":\"Illuminate\\\\Support\\\\Collection\",\"type\":\"->\",\"args\":[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pagination\\\\AbstractPaginator.php\",\"line\":801,\"function\":\"forwardCallTo\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\CollectsResources.php\",\"line\":35,\"function\":\"__call\",\"class\":\"Illuminate\\\\Pagination\\\\AbstractPaginator\",\"type\":\"->\",\"args\":[\"mapInto\",[\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection.php\",\"line\":53,\"function\":\"collectResource\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection.php\",\"line\":31,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\ResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":96,\"function\":\"__construct\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\AnonymousResourceCollection\",\"type\":\"->\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37},\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Resources\\\\ConsultingServiceRequestResource\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource.php\",\"line\":81,\"function\":\"newCollection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Services\\\\ConsultingService.php\",\"line\":53,\"function\":\"collection\",\"class\":\"Illuminate\\\\Http\\\\Resources\\\\Json\\\\JsonResource\",\"type\":\"::\",\"args\":[{\"current_page\":1,\"data\":[{\"id\":45,\"user_id\":2,\"startup_id\":3,\"category\":\"investment_readiness\",\"sector\":null,\"sector_en\":null,\"title\":\"تحضير pitch deck للمستثمرين\",\"title_en\":null,\"description\":\"طلب استشارة مفتوح — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"10000.00\",\"budget_max\":\"50000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":0,\"client\":{\"id\":2,\"name\":\"سارة العتيبي\",\"created_at\":\"2026-05-21T04:41:59.259402Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":3,\"name\":\"رِواء الصحية\"}},{\"id\":44,\"user_id\":24,\"startup_id\":15,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقرير Due Diligence مالي\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":43,\"user_id\":24,\"startup_id\":15,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"حماية العلامة والملكية الفكرية\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":24,\"name\":\"منى الحسين\",\"created_at\":\"2026-05-21T04:41:59.444961Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":15,\"name\":\"مرسال الشحن\"}},{\"id\":42,\"user_id\":23,\"startup_id\":13,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"خطة تدفقات نقدية وتحليل حساسية\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":41,\"user_id\":23,\"startup_id\":13,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"صياغة اتفاقية المساهمين\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":23,\"name\":\"فيصل الجهني\",\"created_at\":\"2026-05-21T04:41:59.562547Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":13,\"name\":\"سراج للتمويل\"}},{\"id\":40,\"user_id\":22,\"startup_id\":11,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"نموذج مالي 36 شهراً لجولة Seed\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":39,\"user_id\":22,\"startup_id\":11,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"عقد توظيف وتقاسم خيارات\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-18T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":22,\"name\":\"موضي القحطاني\",\"created_at\":\"2026-05-21T04:41:59.677660Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":11,\"name\":\"سلة التجار\"}},{\"id\":38,\"user_id\":21,\"startup_id\":9,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"هيكلة Cap Table بعد الجولة\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-11T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":37,\"user_id\":21,\"startup_id\":9,\"category\":\"legal\",\"sector\":null,\"sector_en\":null,\"title\":\"مراجعة نظام الشركات والامتثال\",\"title_en\":null,\"description\":\"طلب استشارة قانونية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"12000.00\",\"budget_max\":\"45000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-04T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":2,\"client\":{\"id\":21,\"name\":\"بندر السديري\",\"created_at\":\"2026-05-21T04:41:59.791684Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":9,\"name\":\"زرعة الزراعية\"}},{\"id\":36,\"user_id\":20,\"startup_id\":7,\"category\":\"financial\",\"sector\":null,\"sector_en\":null,\"title\":\"تقييم تقييمي Pre-money\",\"title_en\":null,\"description\":\"طلب خدمة مالية — بيانات تجريبية.\",\"description_en\":null,\"budget_min\":\"18000.00\",\"budget_max\":\"90000.00\",\"currency_code\":\"SAR\",\"status\":\"open\",\"deadline_at\":\"2026-06-25T00:47:35.000000Z\",\"created_at\":\"2026-05-21T00:47:35.000000Z\",\"updated_at\":\"2026-05-21T00:47:35.000000Z\",\"proposals_count\":3,\"client\":{\"id\":20,\"name\":\"أمل الفهد\",\"created_at\":\"2026-05-21T04:41:59.908151Z\",\"phone_intl\":\"\",\"created_at_formatted\":\"2026-05-21 07:41\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"original_updated_at\":null,\"original_last_activity\":null,\"p_is_online\":false,\"country_flag_url\":null,\"remaining_posts\":null},\"startup\":{\"id\":7,\"name\":\"جدوى التعليم\"}}],\"first_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"from\":1,\"last_page\":4,\"last_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"next_page_url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests?page=2\",\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/ecosystem\\/consulting\\/requests\",\"per_page\":10,\"prev_page_url\":null,\"to\":10,\"total\":37}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController.php\",\"line\":34,\"function\":\"listRequests\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Services\\\\ConsultingService\",\"type\":\"->\",\"args\":[[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\ControllerDispatcher.php\",\"line\":46,\"function\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":265,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\ControllerDispatcher\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"index\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Route.php\",\"line\":211,\"function\":\"runController\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":808,\"function\":\"run\",\"class\":\"Illuminate\\\\Routing\\\\Route\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Routing\\\\{closure}\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\LastUserActivity.php\",\"line\":46,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\LastUserActivity\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\BannedUser.php\",\"line\":45,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\BannedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\DemoRestriction.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\DemoRestriction\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser.php\",\"line\":40,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Services\\\\Auth\\\\App\\\\Http\\\\Middleware\\\\IsVerifiedUser\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\GetLocalization.php\",\"line\":56,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\GetLocalization\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\RequirementsChecker.php\",\"line\":44,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\RequirementsChecker\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings.php\",\"line\":50,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":123,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests.php\",\"line\":88,\"function\":\"handleRequestUsingNamedLimiter\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\",{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{},\"api\"]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":26,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\{closure}\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\sanctum\\\\src\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful.php\",\"line\":25,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Laravel\\\\Sanctum\\\\Http\\\\Middleware\\\\EnsureFrontendRequestsAreStateful\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\VerifyAPIAccess.php\",\"line\":47,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\VerifyAPIAccess\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":103,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\Installed.php\",\"line\":45,\"function\":\"handleApi\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\Installed\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":807,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":786,\"function\":\"runRouteWithinStack\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":750,\"function\":\"runRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Routing\\\\Router.php\",\"line\":739,\"function\":\"dispatchToRoute\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":200,\"function\":\"dispatch\",\"class\":\"Illuminate\\\\Routing\\\\Router\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":169,\"function\":\"Illuminate\\\\Foundation\\\\Http\\\\{closure}\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\barryvdh\\\\laravel-debugbar\\\\src\\\\Middleware\\\\InjectDebugbar.php\",\"line\":59,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Barryvdh\\\\Debugbar\\\\Middleware\\\\InjectDebugbar\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\packages\\\\larapen\\\\honeypot\\\\src\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam.php\",\"line\":15,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Larapen\\\\Honeypot\\\\app\\\\Http\\\\Middleware\\\\ProtectAgainstSpam\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull.php\",\"line\":31,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ConvertEmptyStringsToNull\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest.php\",\"line\":21,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings.php\",\"line\":51,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TrimStrings\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize.php\",\"line\":27,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\ValidatePostSize\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\app\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance.php\",\"line\":114,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"App\\\\Http\\\\Middleware\\\\PreventRequestsDuringMaintenance\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\HandleCors.php\",\"line\":61,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\HandleCors\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Http\\\\Middleware\\\\TrustProxies.php\",\"line\":58,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":208,\"function\":\"handle\",\"class\":\"Illuminate\\\\Http\\\\Middleware\\\\TrustProxies\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Pipeline\\\\Pipeline.php\",\"line\":126,\"function\":\"Illuminate\\\\Pipeline\\\\{closure}\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":175,\"function\":\"then\",\"class\":\"Illuminate\\\\Pipeline\\\\Pipeline\",\"type\":\"->\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Http\\\\Kernel.php\",\"line\":144,\"function\":\"sendRequestThroughRouter\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":256,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Http\\\\Kernel\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":249,\"function\":\"callLaravelRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":86,\"function\":\"makeApiCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"attributes\":{},\"request\":{},\"query\":{},\"server\":{},\"files\":{},\"cookies\":{},\"headers\":{}},{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls.php\",\"line\":39,\"function\":\"makeResponseCall\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":240,\"function\":\"__invoke\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Strategies\\\\Responses\\\\ResponseCalls\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},{\"only\":[\"GET *\"],\"except\":[],\"config\":{\"app.env\":\"local\",\"app.debug\":false},\"queryParams\":[],\"bodyParams\":[],\"fileParams\":[],\"cookies\":[]}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":165,\"function\":\"iterateThroughStrategies\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[\"responses\",{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Extracting\\\\Extractor.php\",\"line\":97,\"function\":\"fetchResponses\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"custom\":[],\"httpMethods\":[\"GET\"],\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"metadata\":{\"custom\":[],\"groupName\":\"Consulting\",\"groupDescription\":\"\\nService requests, proposals, and engagements. Base path: `\\/api\\/ecosystem\\/consulting`.\",\"subgroup\":\"\",\"subgroupDescription\":\"\",\"title\":\"\",\"description\":\"\",\"authenticated\":false},\"headers\":{\"Content-Type\":\"application\\/json\",\"Accept\":\"application\\/json\",\"Content-Language\":\"en\",\"X-AppApiToken\":\"YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=\",\"X-AppType\":\"docs\"},\"urlParameters\":[],\"cleanUrlParameters\":[],\"queryParameters\":[],\"cleanQueryParameters\":[],\"bodyParameters\":[],\"cleanBodyParameters\":[],\"fileParameters\":[],\"responses\":[],\"responseFields\":[],\"auth\":[],\"controller\":{\"name\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"method\":{\"name\":\"index\",\"class\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController\"},\"route\":{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":125,\"function\":\"processRoute\",\"class\":\"Knuckles\\\\Scribe\\\\Extracting\\\\Extractor\",\"type\":\"->\",\"args\":[{\"uri\":\"api\\/ecosystem\\/consulting\\/requests\",\"methods\":[\"GET\",\"HEAD\"],\"action\":{\"middleware\":[\"api\"],\"uses\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"controller\":\"App\\\\Modules\\\\Ecosystem\\\\Http\\\\Controllers\\\\Api\\\\ConsultingRequestController@index\",\"namespace\":null,\"prefix\":\"api\\/ecosystem\\/consulting\\/requests\",\"where\":[]},\"isFallback\":false,\"controller\":{\"locale\":null,\"countryCode\":null,\"cacheExpiration\":86400,\"perPage\":10,\"disk\":{},\"cookieExpiration\":1440},\"defaults\":[],\"wheres\":[],\"parameters\":[],\"parameterNames\":[],\"computedMiddleware\":[\"api\"],\"compiled\":{}},[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":72,\"function\":\"extractEndpointsInfoFromLaravelApp\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}],[],[]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp.php\",\"line\":50,\"function\":\"extractEndpointsInfoAndWriteToDisk\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[{},false]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\knuckleswtf\\\\scribe\\\\src\\\\Commands\\\\GenerateDocumentation.php\",\"line\":55,\"function\":\"get\",\"class\":\"Knuckles\\\\Scribe\\\\GroupedEndpoints\\\\GroupedEndpointsFromApp\",\"type\":\"->\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":36,\"function\":\"handle\",\"class\":\"Knuckles\\\\Scribe\\\\Commands\\\\GenerateDocumentation\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Util.php\",\"line\":43,\"function\":\"Illuminate\\\\Container\\\\{closure}\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":96,\"function\":\"unwrapIfClosure\",\"class\":\"Illuminate\\\\Container\\\\Util\",\"type\":\"::\",\"args\":[{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\BoundMethod.php\",\"line\":35,\"function\":\"callBoundMethod\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Container\\\\Container.php\",\"line\":754,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\BoundMethod\",\"type\":\"::\",\"args\":[{\"contextual\":[],\"contextualAttributes\":[]},[{},\"handle\"],[],null]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":211,\"function\":\"call\",\"class\":\"Illuminate\\\\Container\\\\Container\",\"type\":\"->\",\"args\":[[{},\"handle\"]]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Command\\\\Command.php\",\"line\":318,\"function\":\"execute\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Console\\\\Command.php\",\"line\":180,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Command\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":1074,\"function\":\"run\",\"class\":\"Illuminate\\\\Console\\\\Command\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":341,\"function\":\"doRunCommand\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\symfony\\\\console\\\\Application.php\",\"line\":192,\"function\":\"doRun\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Console\\\\Kernel.php\",\"line\":197,\"function\":\"run\",\"class\":\"Symfony\\\\Component\\\\Console\\\\Application\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\vendor\\\\laravel\\\\framework\\\\src\\\\Illuminate\\\\Foundation\\\\Application.php\",\"line\":1234,\"function\":\"handle\",\"class\":\"Illuminate\\\\Foundation\\\\Console\\\\Kernel\",\"type\":\"->\",\"args\":[{},{}]},{\"file\":\"D:\\\\Works\\\\InvestmentPlatform\\\\invweb\\\\artisan\",\"line\":13,\"function\":\"handleCommand\",\"class\":\"Illuminate\\\\Foundation\\\\Application\",\"type\":\"->\",\"args\":[{}]}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "4693",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4693"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Consulting request not found.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Create consulting request",
                                "description": "Use `category` matching active `consulting_service_catalog.code`. `financial` uses `financial_accounting` commission rates.\nMultipart: `gallery_images[]`, `documents[]`.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_KEY}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "startup_id": {
                                    "name": "startup_id",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 18,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "category": {
                                    "name": "category",
                                    "description": "Catalog code.",
                                    "required": true,
                                    "example": "legal",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "",
                                    "required": true,
                                    "example": "repudiandae",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "budget_min": {
                                    "name": "budget_min",
                                    "description": "optional",
                                    "required": false,
                                    "example": 269.40432,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "budget_max": {
                                    "name": "budget_max",
                                    "description": "optional",
                                    "required": false,
                                    "example": 23310.31072,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "pnv",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "deadline_at": {
                                    "name": "deadline_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:07",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "title_en": {
                                    "name": "title_en",
                                    "description": "optional",
                                    "required": false,
                                    "example": "voluptas",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "",
                                    "required": true,
                                    "example": "Dolore iusto porro iste nesciunt totam vel.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description_en": {
                                    "name": "description_en",
                                    "description": "optional",
                                    "required": false,
                                    "example": "natus",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector": {
                                    "name": "sector",
                                    "description": "optional",
                                    "required": false,
                                    "example": "unde",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "sector_en": {
                                    "name": "sector_en",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": "twfyzmyurbfw",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "cover_image": {
                                    "name": "cover_image",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "gallery_images": {
                                    "name": "gallery_images",
                                    "description": "Must be an image. Must not be greater than 5120 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "documents": {
                                    "name": "documents",
                                    "description": "Must be a file. Must not be greater than 20480 kilobytes.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "startup_id": 18,
                                "category": "legal",
                                "title": "repudiandae",
                                "budget_min": 269.40432,
                                "budget_max": 23310.31072,
                                "currency_code": "pnv",
                                "deadline_at": "2026-05-21T04:42:07",
                                "title_en": "voluptas",
                                "description": "Dolore iusto porro iste nesciunt totam vel.",
                                "description_en": "natus",
                                "sector": "unde",
                                "sector_en": "twfyzmyurbfw"
                            },
                            "fileParameters": {
                                "cover_image": null,
                                "gallery_images": [
                                    null
                                ],
                                "documents": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer a3f6hb1DEdvk4PV5acg6Z8e"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}/cancel",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "741652902",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "741652902"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}/proposals",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "8251",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8251"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "amount": {
                                    "name": "amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 53,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "ecc",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "delivery_days": {
                                    "name": "delivery_days",
                                    "description": "Must be at least 1. Must not be greater than 365.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "proposal_text": {
                                    "name": "proposal_text",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": true,
                                    "example": "lfeedkealhaqjfz",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "amount": 53,
                                "currency_code": "ecc",
                                "delivery_days": 2,
                                "proposal_text": "lfeedkealhaqjfz"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/requests/{id}/proposals/{proposalId}/accept",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "\nService requests, proposals, and engagements. Base path: `/api/ecosystem/consulting`.",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the request.",
                                    "required": true,
                                    "example": "8166",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "proposalId": {
                                    "name": "proposalId",
                                    "description": "",
                                    "required": true,
                                    "example": "132789987",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8166",
                                "proposalId": "132789987"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/engagements",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "5339",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "5339"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/complete",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "51",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "51"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/review",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "2774",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "2774"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "rating": {
                                    "name": "rating",
                                    "description": "Must be at least 1. Must not be greater than 5.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "comment": {
                                    "name": "comment",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "y",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "rating": 1,
                                "comment": "y"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/milestones/{milestoneId}/fund",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "8674048",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "55",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8674048",
                                "milestoneId": "55"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/consulting/engagements/{id}/milestones/{milestoneId}/release",
                            "metadata": {
                                "groupName": "Consulting",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the engagement.",
                                    "required": true,
                                    "example": "314",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "milestoneId": {
                                    "name": "milestoneId",
                                    "description": "",
                                    "required": true,
                                    "example": "034940",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "314",
                                "milestoneId": "034940"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consultant/profile/{userId}",
                            "metadata": {
                                "groupName": "Consultant & Providers",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": "26",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": "26"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":10,\"userId\":26,\"bio\":null,\"specialties\":[],\"hourlyRate\":null,\"currencyCode\":null,\"ratingAvg\":null,\"reviewsCount\":null,\"isVerified\":false,\"user\":{\"id\":26,\"name\":\"لينا الخريجي\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/consultant/profile",
                            "metadata": {
                                "groupName": "Consultant & Providers",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/consultant/profile",
                            "metadata": {
                                "groupName": "Consultant & Providers",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "bio": {
                                    "name": "bio",
                                    "description": "Must not be greater than 10000 characters.",
                                    "required": false,
                                    "example": "uqiba",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "specialties": {
                                    "name": "specialties",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": [
                                        "osnivesnktl"
                                    ],
                                    "type": "string[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "hourly_rate": {
                                    "name": "hourly_rate",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 57,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "htn",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "bio": "uqiba",
                                "specialties": [
                                    "osnivesnktl"
                                ],
                                "hourly_rate": 57,
                                "currency_code": "htn"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/founder/profile",
                            "metadata": {
                                "groupName": "Founder",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/founder/profile",
                            "metadata": {
                                "groupName": "Founder",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "headline": {
                                    "name": "headline",
                                    "description": "Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "lzoxyednsfne",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "bio": {
                                    "name": "bio",
                                    "description": "Must not be greater than 10000 characters.",
                                    "required": false,
                                    "example": "cjnnnqo",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://beatty.org/vitae-consequatur-vitae-ut-rem-distinctio-eligendi-totam.html",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "twitter_url": {
                                    "name": "twitter_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "https://shields.com/reiciendis-et-sed-magni-nihil-quis-at.html",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "experience_years": {
                                    "name": "experience_years",
                                    "description": "Must be at least 0. Must not be greater than 80.",
                                    "required": false,
                                    "example": 10,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "headline": "lzoxyednsfne",
                                "bio": "cjnnnqo",
                                "linkedin_url": "http://beatty.org/vitae-consequatur-vitae-ut-rem-distinctio-eligendi-totam.html",
                                "twitter_url": "https://shields.com/reiciendis-et-sed-magni-nihil-quis-at.html",
                                "experience_years": 10
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/profile",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/investor/profile",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "investor_type": {
                                    "name": "investor_type",
                                    "description": "",
                                    "required": false,
                                    "example": "corporate",
                                    "type": "string",
                                    "enumValues": [
                                        "angel",
                                        "vc",
                                        "family_office",
                                        "corporate",
                                        "syndicate"
                                    ],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "organization_name": {
                                    "name": "organization_name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "lhdvmzhyptblqvszldhvu",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "bio": {
                                    "name": "bio",
                                    "description": "Must not be greater than 10000 characters.",
                                    "required": false,
                                    "example": "avsm",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "linkedin_url": {
                                    "name": "linkedin_url",
                                    "description": "Must be a valid URL. Must not be greater than 255 characters.",
                                    "required": false,
                                    "example": "http://kerluke.com/aut-incidunt-eos-velit-cupiditate-nesciunt-ab",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ticket_min": {
                                    "name": "ticket_min",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 20,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "ticket_max": {
                                    "name": "ticket_max",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 22,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "wfo",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "is_accredited": {
                                    "name": "is_accredited",
                                    "description": "",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "preferred_sectors": {
                                    "name": "preferred_sectors",
                                    "description": "Must not be greater than 100 characters.",
                                    "required": false,
                                    "example": [
                                        "vjwggpdcafupikynatmqg"
                                    ],
                                    "type": "string[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "preferred_stages": {
                                    "name": "preferred_stages",
                                    "description": "Must not be greater than 32 characters.",
                                    "required": false,
                                    "example": [
                                        "ypazuoqnnmxosunaf"
                                    ],
                                    "type": "string[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "preferred_country_code": {
                                    "name": "preferred_country_code",
                                    "description": "Must be 2 characters.",
                                    "required": false,
                                    "example": "ac",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "investor_type": "corporate",
                                "organization_name": "lhdvmzhyptblqvszldhvu",
                                "bio": "avsm",
                                "linkedin_url": "http://kerluke.com/aut-incidunt-eos-velit-cupiditate-nesciunt-ab",
                                "ticket_min": 20,
                                "ticket_max": 22,
                                "currency_code": "wfo",
                                "is_accredited": false,
                                "preferred_sectors": [
                                    "vjwggpdcafupikynatmqg"
                                ],
                                "preferred_stages": [
                                    "ypazuoqnnmxosunaf"
                                ],
                                "preferred_country_code": "ac"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/investor/profile/submit-kyc",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/portfolio",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/matches",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/investor/watchlist",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/investor/watchlist/{startupId}",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "885",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "885"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "notes": {
                                    "name": "notes",
                                    "description": "Must not be greater than 5000 characters.",
                                    "required": false,
                                    "example": "mtariftgcmm",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "notes": "mtariftgcmm"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/ecosystem/investor/watchlist/{startupId}",
                            "metadata": {
                                "groupName": "Investor",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "startupId": {
                                    "name": "startupId",
                                    "description": "",
                                    "required": true,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "startupId": "0"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "startup_id": {
                                    "name": "startup_id",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 40,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "funding_round_id": {
                                    "name": "funding_round_id",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 34,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": true,
                                    "example": "krfpbpxp",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Doloremque nam similique fugit rerum omnis eveniet impedit.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": true,
                                    "example": 26,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "carry_percent": {
                                    "name": "carry_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 18,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "minimum_commitment": {
                                    "name": "minimum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 1,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_commitment": {
                                    "name": "maximum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 90,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "currency_code": {
                                    "name": "currency_code",
                                    "description": "Must be 3 characters.",
                                    "required": false,
                                    "example": "qar",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:10",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "startup_id": 40,
                                "funding_round_id": 34,
                                "name": "krfpbpxp",
                                "description": "Doloremque nam similique fugit rerum omnis eveniet impedit.",
                                "target_amount": 26,
                                "carry_percent": 18,
                                "minimum_commitment": 1,
                                "maximum_commitment": 90,
                                "currency_code": "qar",
                                "closes_at": "2026-05-21T04:42:10"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "4933",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4933"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "6",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "6"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "Must not be greater than 191 characters.",
                                    "required": false,
                                    "example": "ratohlar",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "Must not be greater than 20000 characters.",
                                    "required": false,
                                    "example": "Expedita aut ut quas velit ullam aperiam.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "target_amount": {
                                    "name": "target_amount",
                                    "description": "Must be at least 1.",
                                    "required": false,
                                    "example": 72,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "carry_percent": {
                                    "name": "carry_percent",
                                    "description": "Must be at least 0. Must not be greater than 100.",
                                    "required": false,
                                    "example": 1,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "minimum_commitment": {
                                    "name": "minimum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 88,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "maximum_commitment": {
                                    "name": "maximum_commitment",
                                    "description": "Must be at least 0.",
                                    "required": false,
                                    "example": 4,
                                    "type": "number",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                },
                                "closes_at": {
                                    "name": "closes_at",
                                    "description": "Must be a valid date.",
                                    "required": false,
                                    "example": "2026-05-21T04:42:10",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": true,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "ratohlar",
                                "description": "Expedita aut ut quas velit ullam aperiam.",
                                "target_amount": 72,
                                "carry_percent": 1,
                                "minimum_commitment": 88,
                                "maximum_commitment": 4,
                                "closes_at": "2026-05-21T04:42:10"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/open",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "24760",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "24760"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/close",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "15",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "15"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/dashboard",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "82",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "82"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/join",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "4347",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4347"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/leave",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "73430",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "73430"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/members",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "28",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "28"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/members/{memberId}/approve",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "4",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "05",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "4",
                                "memberId": "05"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/syndicates/{id}/members/{memberId}/reject",
                            "metadata": {
                                "groupName": "Syndicates",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the syndicate.",
                                    "required": true,
                                    "example": "2",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "memberId": {
                                    "name": "memberId",
                                    "description": "",
                                    "required": true,
                                    "example": "770832",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "2",
                                "memberId": "770832"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/commitments/{commitmentId}",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "commitmentId": {
                                    "name": "commitmentId",
                                    "description": "",
                                    "required": true,
                                    "example": "1778017",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "commitmentId": "1778017"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/{id}/hold",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the escrow.",
                                    "required": true,
                                    "example": "7",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "7"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/{id}/release",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the escrow.",
                                    "required": true,
                                    "example": "9562",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "9562"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/escrow/{id}/refund",
                            "metadata": {
                                "groupName": "Escrow",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the escrow.",
                                    "required": true,
                                    "example": "3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/investors/{userId}/approve-kyc",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": "57",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": "57"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/investors/{userId}/reject-kyc",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": "6",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": "6"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/approve",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "075",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "075"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/reject",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "8",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "8"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "rejection_reason": {
                                    "name": "rejection_reason",
                                    "description": "Must not be greater than 2000 characters.",
                                    "required": true,
                                    "example": "dm",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "rejection_reason": "dm"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/fundraising",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "669",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "669"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/close-round",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "7",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "7"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/ecosystem/admin/startups/{id}/suspend",
                            "metadata": {
                                "groupName": "Admin",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the startup.",
                                    "required": true,
                                    "example": "551",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": "551"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/auth/login",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Log in",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address or username (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "user@demosite.com",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "123456",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The user's mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "quas",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "email": "user@demosite.com",
                                "password": "123456",
                                "auth_field": "email",
                                "phone": null,
                                "phone_country": null,
                                "captcha_key": "quas"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/logout/{userId}",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Log out",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "The ID of the user to logout.",
                                    "required": false,
                                    "example": 4,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": 4
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 400,
                                    "content": "{\"success\":false,\"message\":\"An error occurred and the logout failed.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 3fVDZa4hPdvgaEeb6kc8651"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/auth/password/forgot",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Forgot password",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address or username (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "user@demosite.com",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The user's mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "qui",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "email": "user@demosite.com",
                                "auth_field": "email",
                                "phone": null,
                                "phone_country": null,
                                "captcha_key": "qui"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/auth/password/reset",
                            "metadata": {
                                "groupName": "Authentication",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Reset password",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address or username (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "token": {
                                    "name": "token",
                                    "description": "",
                                    "required": true,
                                    "example": "ratione",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The user's mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password_confirmation": {
                                    "name": "password_confirmation",
                                    "description": "The confirmation of the user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "dolorum",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "email": "john.doe@domain.tld",
                                "token": "ratione",
                                "phone_country": null,
                                "password": "js!X07$z61hLA",
                                "auth_field": "email",
                                "phone": null,
                                "password_confirmation": "js!X07$z61hLA",
                                "captcha_key": "dolorum"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/connect/{provider}",
                            "metadata": {
                                "groupName": "Social Auth",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get target URL",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "provider": {
                                    "name": "provider",
                                    "description": "The provider's name - Possible values: facebook, linkedin, or google.",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "provider": null
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"API endpoint not found.\"}",
                                    "headers": {
                                        "cache-control": "no-cache, private",
                                        "content-type": "application/json",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/connect/{provider}/callback",
                            "metadata": {
                                "groupName": "Social Auth",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get user info",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "provider": {
                                    "name": "provider",
                                    "description": "The provider's name - Possible values: facebook, linkedin, or google.",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "provider": null
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"API endpoint not found.\"}",
                                    "headers": {
                                        "cache-control": "no-cache, private",
                                        "content-type": "application/json",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/verify/{entityMetadataKey}/{entityId}/resend/email",
                            "metadata": {
                                "groupName": "Verification",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Email: Re-send link",
                                "description": "Re-send email verification link to the user",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "entityMetadataKey": {
                                    "name": "entityMetadataKey",
                                    "description": "The slug of the entity to verify ('users' or 'posts').",
                                    "required": true,
                                    "example": "users",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entityId": {
                                    "name": "entityId",
                                    "description": "The entity/model identifier (ID).",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "entityMetadataKey": "users",
                                "entityId": 3
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":false,\"message\":\"Your Email address is already verified.\",\"result\":{\"id\":3,\"name\":\"خالد الشمري\",\"username\":\"demo.founder3\",\"two_factor_enabled\":false,\"two_factor_method\":\"email\",\"updated_at\":\"2026-05-21T00:47:21.000000Z\",\"original_updated_at\":\"2026-05-21 00:47:21\",\"original_last_activity\":null,\"created_at_formatted\":\"2026-05-21 01:10\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"p_is_online\":false,\"country_flag_url\":\"http:\\/\\/127.0.0.1:8000\\/images\\/flags\\/circle\\/16\\/sa.png\"},\"extra\":{\"isUnverifiedField\":false,\"fieldVerificationSent\":false,\"resendUrl\":\"http:\\/\\/127.0.0.1:8000\\/auth\\/verify\\/users\\/3\\/resend\\/email\",\"field\":\"email\",\"fieldValue\":\"demo.founder3@platform.test\",\"fieldHiddenValue\":\"de**********************est\",\"resendLocked\":false}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/verify/{entityMetadataKey}/{entityId}/resend/sms",
                            "metadata": {
                                "groupName": "Verification",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "SMS: Re-send code",
                                "description": "Re-send mobile phone verification token by SMS",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "entityMetadataKey": {
                                    "name": "entityMetadataKey",
                                    "description": "The slug of the entity to verify ('users' or 'posts').",
                                    "required": true,
                                    "example": "users",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "entityId": {
                                    "name": "entityId",
                                    "description": "The entity/model identifier (ID).",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "entityMetadataKey": "users",
                                "entityId": 3
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":false,\"message\":\"Your Phone Number is already verified.\",\"result\":{\"id\":3,\"name\":\"خالد الشمري\",\"username\":\"demo.founder3\",\"two_factor_enabled\":false,\"two_factor_method\":\"email\",\"updated_at\":\"2026-05-21T00:47:21.000000Z\",\"original_updated_at\":\"2026-05-21 00:47:21\",\"original_last_activity\":null,\"created_at_formatted\":\"2026-05-21 01:10\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"p_is_online\":false,\"country_flag_url\":\"http:\\/\\/127.0.0.1:8000\\/images\\/flags\\/circle\\/16\\/sa.png\"},\"extra\":{\"isUnverifiedField\":false,\"fieldVerificationSent\":false,\"resendUrl\":\"http:\\/\\/127.0.0.1:8000\\/api\\/auth\\/verify\\/users\\/3\\/resend\\/sms\",\"field\":\"phone\",\"fieldValue\":\"\",\"fieldHiddenValue\":\"********\",\"resendLocked\":false}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/auth/verify/{entityMetadataKey}/{field}/{token?}",
                            "metadata": {
                                "groupName": "Verification",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Verification",
                                "description": "Verify the user's email address or mobile phone number",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "entityMetadataKey": {
                                    "name": "entityMetadataKey",
                                    "description": "The slug of the entity to verify ('users' or 'posts').",
                                    "required": true,
                                    "example": "users",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "field": {
                                    "name": "field",
                                    "description": "The field to verify.",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "token": {
                                    "name": "token",
                                    "description": "The verification token.",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "entityMetadataKey": "users",
                                "field": "email",
                                "token": null
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 400,
                                    "content": "{\"success\":false,\"message\":\"The verification token or code is missing.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/genders",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List genders",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"1\":{\"id\":1,\"name\":\"MALE\",\"label\":\"Male\",\"title\":\"Mr.\"},\"2\":{\"id\":2,\"name\":\"FEMALE\",\"label\":\"Female\",\"title\":\"Mrs\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/genders/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get gender",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The gender's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"MALE\",\"label\":\"Male\",\"title\":\"Mr.\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/userTypes",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List user types",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"2\":{\"id\":2,\"name\":\"INDIVIDUAL\",\"label\":\"Individual\"},\"1\":{\"id\":1,\"name\":\"PROFESSIONAL\",\"label\":\"Professional\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/userTypes/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get user type",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user type's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"PROFESSIONAL\",\"label\":\"Professional\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List users",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 403,
                                    "content": "{\"success\":false,\"message\":\"Forbidden\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get user",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_KEY}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 3
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: country,userType,gender,countPostsViews,countPosts,countSavedPosts.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":3,\"name\":\"خالد الشمري\",\"username\":\"demo.founder3\",\"two_factor_enabled\":false,\"two_factor_method\":\"email\",\"updated_at\":\"2026-05-21T00:47:21.000000Z\",\"original_updated_at\":\"2026-05-21 00:47:21\",\"original_last_activity\":null,\"created_at_formatted\":\"2026-05-21 01:10\",\"photo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/user.png\",\"p_is_online\":false,\"country_flag_url\":\"http:\\/\\/127.0.0.1:8000\\/images\\/flags\\/circle\\/16\\/sa.png\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hg48va6fEPcdeDVZbk1a563"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/users",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store user",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The mobile phone number of the user (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Field to allow user to accept or not the website terms.",
                                    "required": true,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_type_id": {
                                    "name": "user_type_id",
                                    "description": "The ID of user type.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "gender_id": {
                                    "name": "gender_id",
                                    "description": "The ID of gender.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "photo_path": {
                                    "name": "photo_path",
                                    "description": "The file of user photo.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Field to hide or show the user phone number in public.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "username": {
                                    "name": "username",
                                    "description": "The user's username.",
                                    "required": false,
                                    "example": "john_doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password_confirmation": {
                                    "name": "password_confirmation",
                                    "description": "The confirmation of the user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "disable_comments": {
                                    "name": "disable_comments",
                                    "description": "Field to disable or enable comments on the user's listings.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "create_from_ip": {
                                    "name": "create_from_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Field to allow user to accept or not marketing offers sending.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "time_zone": {
                                    "name": "time_zone",
                                    "description": "The user's time zone.",
                                    "required": false,
                                    "example": "America/New_York",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "alias",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "John Doe",
                                "country_code": "US",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "password": "js!X07$z61hLA",
                                "accept_terms": true,
                                "email": "john.doe@domain.tld",
                                "language_code": "en",
                                "user_type_id": 1,
                                "gender_id": 1,
                                "phone_hidden": false,
                                "username": "john_doe",
                                "password_confirmation": "js!X07$z61hLA",
                                "disable_comments": true,
                                "create_from_ip": "127.0.0.1",
                                "accept_marketing_offers": false,
                                "time_zone": "America/New_York",
                                "captcha_key": "alias"
                            },
                            "fileParameters": {
                                "photo_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users/{id}/stats",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "User's mini stats",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 3
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer g8EaZv3hD4Vc6kd1Pbea56f"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/users/{id}/photo/delete",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete user's photo",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer Ev86efPD35c6Zkaab4dh1gV"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}/photo",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update user's photo",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "photo_path": {
                                    "name": "photo_path",
                                    "description": "Must be a file. Must be at least 0 kilobytes. Must not be greater than 2500 kilobytes.",
                                    "required": true,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "latest_update_ip": "127.0.0.1"
                            },
                            "fileParameters": {
                                "photo_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hfPbZa153Dv8V4Ed6ageck6"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}/preferences",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update user's preferences",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "disable_comments": {
                                    "name": "disable_comments",
                                    "description": "Field to disable or enable comments on the user's listings.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Field to allow user to accept or not the website terms.",
                                    "required": true,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Field to allow user to accept or not marketing offers sending.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "time_zone": {
                                    "name": "time_zone",
                                    "description": "The user's time zone.",
                                    "required": false,
                                    "example": "America/New_York",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "disable_comments": true,
                                "latest_update_ip": "127.0.0.1",
                                "accept_terms": true,
                                "accept_marketing_offers": false,
                                "time_zone": "America/New_York"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 483Zbcf5ake1dP6agvDhE6V"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}/save-theme-preference",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update the user's theme preference",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "theme": {
                                    "name": "theme",
                                    "description": "The user's theme preference value.",
                                    "required": true,
                                    "example": "light, dark or system",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "theme": "light, dark or system"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/users/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update user",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The mobile phone number of the user (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "username": {
                                    "name": "username",
                                    "description": "The user's username.",
                                    "required": false,
                                    "example": "john_doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address (Required when 'auth_field' value is 'email').",
                                    "required": true,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "user_type_id": {
                                    "name": "user_type_id",
                                    "description": "The ID of user type.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "gender_id": {
                                    "name": "gender_id",
                                    "description": "The ID of gender.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "photo_path": {
                                    "name": "photo_path",
                                    "description": "The file of user photo.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "remove_photo": {
                                    "name": "remove_photo",
                                    "description": "Enable the user photo removal ('0' or '1'). When its value is '1' the user's photo file will be removed and the 'photo_path' column will be empty.",
                                    "required": false,
                                    "example": 0,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Field to hide or show the user phone number in public.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password": {
                                    "name": "password",
                                    "description": "The user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "password_confirmation": {
                                    "name": "password_confirmation",
                                    "description": "The confirmation of the user's password.",
                                    "required": true,
                                    "example": "js!X07$z61hLA",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "disable_comments": {
                                    "name": "disable_comments",
                                    "description": "Field to disable or enable comments on the user's listings.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The user's IP address.",
                                    "required": true,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Field to allow user to accept or not the website terms.",
                                    "required": true,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Field to allow user to accept or not marketing offers sending.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "time_zone": {
                                    "name": "time_zone",
                                    "description": "The user's time zone.",
                                    "required": false,
                                    "example": "America/New_York",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "John Doe",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "username": "john_doe",
                                "email": "john.doe@domain.tld",
                                "country_code": "US",
                                "language_code": "en",
                                "user_type_id": 1,
                                "gender_id": 1,
                                "remove_photo": 0,
                                "phone_hidden": false,
                                "password": "js!X07$z61hLA",
                                "password_confirmation": "js!X07$z61hLA",
                                "disable_comments": true,
                                "latest_update_ip": "127.0.0.1",
                                "accept_terms": true,
                                "accept_marketing_offers": false,
                                "time_zone": "America/New_York"
                            },
                            "fileParameters": {
                                "photo_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer vaf4dcakb6EZVgD8e3hP156"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/users/{id}",
                            "metadata": {
                                "groupName": "Users",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete user",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The user's ID.",
                                    "required": true,
                                    "example": 999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 3h1d6cvbkgDEfaaP854Z6eV"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/postTypes",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List listing types",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"1\":{\"id\":1,\"name\":\"INDIVIDUAL\",\"label\":\"Individual\"},\"2\":{\"id\":2,\"name\":\"PROFESSIONAL\",\"label\":\"Professional\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/postTypes/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get listing type",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The listing type's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"INDIVIDUAL\",\"label\":\"Individual\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/reportTypes",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List report types",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"id\":5,\"name\":\"Other\"},{\"id\":4,\"name\":\"Wrong category\"},{\"id\":3,\"name\":\"Spam\"},{\"id\":2,\"name\":\"Duplicate\"},{\"id\":1,\"name\":\"Fraud\"}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/reportTypes/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get report type",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The report type's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"name\":\"Fraud\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/posts",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List listings",
                                "description": "Note: The main picture of the listings is fetched via a 'picture' attribute (added as fake column),\nthat provide default picture as image placeholder when the listing has no pictures.\nIn addition, for performance reasons, default picture is also provided when the 'pictures' table is not embed in the endpoint.\nSo you need to embed the picture table like: /api/posts?embed=pictures to retrieve right main picture data.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "op": {
                                    "name": "op",
                                    "description": "Type of listings list (optional) - Possible value: search,premium,latest,free,premiumFirst,similar.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "postId": {
                                    "name": "postId",
                                    "description": "Base Listing's ID to get similar listings (optional) - Mandatory to get similar listings (when op=similar).",
                                    "required": false,
                                    "example": null,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "distance": {
                                    "name": "distance",
                                    "description": "Distance to get similar listings (optional) - Also optional when the type of similar listings is based on the current listing's category. Mandatory when the type of similar listings is based on the current listing's location. So, its usage is limited to get similar listings (when op=similar) based on the current listing's location.",
                                    "required": false,
                                    "example": null,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "belongLoggedUser": {
                                    "name": "belongLoggedUser",
                                    "description": "Force users to be logged to get data that belongs to him. Authentication token needs to be sent in the header, and the \"op\" parameter needs to be null or unset - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pendingApproval": {
                                    "name": "pendingApproval",
                                    "description": "To list a user's listings in pending approval. Authentication token needs to be sent in the header, and the \"op\" parameter needs to be null or unset - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "archived": {
                                    "name": "archived",
                                    "description": "To list a user's archived listings. Authentication token needs to be sent in the header, and the \"op\" parameter need be null or unset - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user,category,parent,postType,city,currency,savedByLoggedUser,pictures,payment,package.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "op": null,
                                "postId": null,
                                "distance": null,
                                "belongLoggedUser": false,
                                "pendingApproval": true,
                                "archived": true,
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No listings found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/posts/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get listing",
                                "description": "Note: The main picture of the listing is fetched via a 'picture' attribute (added as fake column),\nthat provide default picture as image placeholder when the listing has no pictures.\nIn addition, for performance reasons, default picture is also provided when the 'pictures' table is not embed in the endpoint.\nSo you need to embed the picture table like: /api/posts/1?embed=pictures to retrieve right main picture data.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The post/listing's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 2
                            },
                            "queryParameters": {
                                "unactivatedIncluded": {
                                    "name": "unactivatedIncluded",
                                    "description": "Include or not unactivated entries - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "belongLoggedUser": {
                                    "name": "belongLoggedUser",
                                    "description": "Force users to be logged to get data that belongs to him - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "noCache": {
                                    "name": "noCache",
                                    "description": "Disable the cache for this request - Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user,category,parent,postType,city,currency,savedByLoggedUser,pictures,payment,package,fieldsValues.",
                                    "required": false,
                                    "example": "user,postType",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "detailed": {
                                    "name": "detailed",
                                    "description": "Allow getting the listing's details with all its relationships (No need to set the 'embed' parameter).",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "unactivatedIncluded": true,
                                "belongLoggedUser": false,
                                "noCache": false,
                                "embed": "user,postType",
                                "detailed": false
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Listing not found\",\"result\":null,\"error\":\"Listing not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/posts",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store listing",
                                "description": "For both types of listing's creation (Single step or Multi steps).\nNote: The field 'admin_code' is only available when the listing's country's 'admin_type' column is set to 1 or 2.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "category_id": {
                                    "name": "category_id",
                                    "description": "The category's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "The listing's title.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "The listing's description.",
                                    "required": true,
                                    "example": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "contact_name": {
                                    "name": "contact_name",
                                    "description": "The listing's author name.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The listing's author mobile number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "city_id": {
                                    "name": "city_id",
                                    "description": "The city's ID.",
                                    "required": true,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Accept the website terms and conditions.",
                                    "required": true,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pictures": {
                                    "name": "pictures",
                                    "description": "The listing's pictures.",
                                    "required": true,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The listing's author email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_type_id": {
                                    "name": "post_type_id",
                                    "description": "The listing type's ID.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin_code": {
                                    "name": "admin_code",
                                    "description": "The administrative division's code.",
                                    "required": false,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "price": {
                                    "name": "price",
                                    "description": "The price.",
                                    "required": true,
                                    "example": 5000,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "negotiable": {
                                    "name": "negotiable",
                                    "description": "Negotiable price or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Mobile phone number will be hidden in public or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "create_from_ip": {
                                    "name": "create_from_ip",
                                    "description": "The listing's author IP address.",
                                    "required": false,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Accept to receive marketing offers or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "is_permanent": {
                                    "name": "is_permanent",
                                    "description": "Is it permanent post or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tags": {
                                    "name": "tags",
                                    "description": "Comma-separated tags list.",
                                    "required": false,
                                    "example": "car,automotive,tesla,cyber,truck",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "package_id": {
                                    "name": "package_id",
                                    "description": "The package's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payment_method_id": {
                                    "name": "payment_method_id",
                                    "description": "The payment method's ID (required when the selected package's price is > 0).",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "quisquam",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "category_id": 1,
                                "title": "John Doe",
                                "description": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                "contact_name": "John Doe",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "city_id": 5,
                                "accept_terms": false,
                                "email": "john.doe@domain.tld",
                                "country_code": "US",
                                "post_type_id": 1,
                                "admin_code": "0",
                                "price": 5000,
                                "negotiable": false,
                                "phone_hidden": false,
                                "create_from_ip": "127.0.0.1",
                                "accept_marketing_offers": false,
                                "is_permanent": false,
                                "tags": "car,automotive,tesla,cyber,truck",
                                "package_id": 2,
                                "payment_method_id": 5,
                                "captcha_key": "quisquam"
                            },
                            "fileParameters": {
                                "pictures": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer DP431h6Z6V5fbedacgav8kE"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/posts/{id}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update listing",
                                "description": "Note: The fields 'pictures', 'package_id' and 'payment_method_id' are only available with the single step listing edition.\nThe field 'admin_code' is only available when the listing's country's 'admin_type' column is set to 1 or 2.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The post/listing's ID.",
                                    "required": true,
                                    "example": 14,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 14
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "category_id": {
                                    "name": "category_id",
                                    "description": "The category's ID.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "title": {
                                    "name": "title",
                                    "description": "The listing's title.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "description": {
                                    "name": "description",
                                    "description": "The listing's description.",
                                    "required": true,
                                    "example": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "contact_name": {
                                    "name": "contact_name",
                                    "description": "The listing's author name.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The listing's author mobile number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "+17656766467",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "city_id": {
                                    "name": "city_id",
                                    "description": "The city's ID.",
                                    "required": true,
                                    "example": 20,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_terms": {
                                    "name": "accept_terms",
                                    "description": "Accept the website terms and conditions.",
                                    "required": true,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The listing's author email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_type_id": {
                                    "name": "post_type_id",
                                    "description": "The listing type's ID.",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin_code": {
                                    "name": "admin_code",
                                    "description": "The administrative division's code.",
                                    "required": false,
                                    "example": "0",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "price": {
                                    "name": "price",
                                    "description": "The price.",
                                    "required": true,
                                    "example": 5000,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "negotiable": {
                                    "name": "negotiable",
                                    "description": "Negotiable price or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_hidden": {
                                    "name": "phone_hidden",
                                    "description": "Mobile phone number will be hidden in public or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest_update_ip": {
                                    "name": "latest_update_ip",
                                    "description": "The listing's author IP address.",
                                    "required": false,
                                    "example": "127.0.0.1",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "accept_marketing_offers": {
                                    "name": "accept_marketing_offers",
                                    "description": "Accept to receive marketing offers or no.",
                                    "required": false,
                                    "example": true,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "is_permanent": {
                                    "name": "is_permanent",
                                    "description": "Is it permanent post or no.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "tags": {
                                    "name": "tags",
                                    "description": "Comma-separated tags list.",
                                    "required": false,
                                    "example": "car,automotive,tesla,cyber,truck",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pictures": {
                                    "name": "pictures",
                                    "description": "The listing's pictures.",
                                    "required": true,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "package_id": {
                                    "name": "package_id",
                                    "description": "The package's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payment_method_id": {
                                    "name": "payment_method_id",
                                    "description": "The payment method's ID (Required when the selected package's price is > 0).",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "category_id": 1,
                                "title": "John Doe",
                                "description": "Beatae placeat atque tempore consequatur animi magni omnis.",
                                "contact_name": "John Doe",
                                "auth_field": "email",
                                "phone": "+17656766467",
                                "phone_country": null,
                                "city_id": 20,
                                "accept_terms": false,
                                "email": "john.doe@domain.tld",
                                "country_code": "US",
                                "post_type_id": 1,
                                "admin_code": "0",
                                "price": 5000,
                                "negotiable": false,
                                "phone_hidden": false,
                                "latest_update_ip": "127.0.0.1",
                                "accept_marketing_offers": true,
                                "is_permanent": false,
                                "tags": "car,automotive,tesla,cyber,truck",
                                "package_id": 2,
                                "payment_method_id": 5
                            },
                            "fileParameters": {
                                "pictures": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 6c14hZfDdgP58va3Ebak6Ve"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/posts/{ids}",
                            "metadata": {
                                "groupName": "Listings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete listing(s)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of listing(s).",
                                    "required": true,
                                    "example": "111111,222222,333333",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "111111,222222,333333"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer f1V5ZaPba4h6D683kEcegdv"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/categories",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List categories",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "parentId": {
                                    "name": "parentId",
                                    "description": "The ID of the parent category of the sub categories to retrieve.",
                                    "required": false,
                                    "example": 0,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "nestedIncluded": {
                                    "name": "nestedIncluded",
                                    "description": "If parent ID is not provided, are nested entries will be included? - Possible values: 0,1.",
                                    "required": false,
                                    "example": 0,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: parent,children.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "parentId": 0,
                                "nestedIncluded": 0,
                                "embed": null,
                                "sort": "-lft",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"id\":122,\"parent_id\":null,\"name\":\"Local Events\",\"slug\":\"local-events\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-regular fa-calendar-days\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":144,\"rgt\":158,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\",\"parentClosure\":null},{\"id\":114,\"parent_id\":null,\"name\":\"Learning\",\"slug\":\"learning\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-graduation-cap\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":134,\"rgt\":143,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\",\"parentClosure\":null}],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=6\",\"prev\":null,\"next\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":6,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=3\",\"label\":\"3\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=4\",\"label\":\"4\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=5\",\"label\":\"5\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=6\",\"label\":\"6\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/categories\",\"per_page\":2,\"to\":2,\"total\":12}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/categories/{slugOrId}",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get category",
                                "description": "Get category by its unique slug or ID.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "slugOrId": {
                                    "name": "slugOrId",
                                    "description": "The slug or ID of the category.",
                                    "required": true,
                                    "example": "cars",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "slugOrId": "cars"
                            },
                            "queryParameters": {
                                "parentCatSlug": {
                                    "name": "parentCatSlug",
                                    "description": "The slug of the parent category to retrieve used when category's slug provided instead of ID.",
                                    "required": false,
                                    "example": "automobiles",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "parentCatSlug": "automobiles"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":2,\"parent_id\":1,\"name\":\"Cars\",\"slug\":\"cars\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"bi bi-folder-fill\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":2,\"rgt\":3,\"depth\":1,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/categories/{id}/fields",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List category's fields",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the category.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The unique ID of the post.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "language_code": "en",
                                "post_id": 1
                            },
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":[{\"id\":1,\"belongs_to\":\"post\",\"name\":\"Car Brand\",\"type\":\"select\",\"max\":null,\"default_value\":\"\",\"required\":1,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":1,\"field_id\":1,\"value\":\"Toyota\",\"parent_id\":null,\"lft\":1,\"rgt\":2,\"depth\":null},{\"id\":2,\"field_id\":1,\"value\":\"BMW\",\"parent_id\":null,\"lft\":3,\"rgt\":4,\"depth\":null},{\"id\":3,\"field_id\":1,\"value\":\"Mercedes-Benz\",\"parent_id\":null,\"lft\":5,\"rgt\":6,\"depth\":null},{\"id\":4,\"field_id\":1,\"value\":\"Chevrolet\",\"parent_id\":null,\"lft\":7,\"rgt\":8,\"depth\":null},{\"id\":5,\"field_id\":1,\"value\":\"Cadillac\",\"parent_id\":null,\"lft\":9,\"rgt\":10,\"depth\":null},{\"id\":6,\"field_id\":1,\"value\":\"Buick\",\"parent_id\":null,\"lft\":11,\"rgt\":12,\"depth\":null},{\"id\":7,\"field_id\":1,\"value\":\"GMC\",\"parent_id\":null,\"lft\":13,\"rgt\":14,\"depth\":null},{\"id\":8,\"field_id\":1,\"value\":\"Ford\",\"parent_id\":null,\"lft\":15,\"rgt\":16,\"depth\":null},{\"id\":9,\"field_id\":1,\"value\":\"Chrysler\",\"parent_id\":null,\"lft\":17,\"rgt\":18,\"depth\":null},{\"id\":10,\"field_id\":1,\"value\":\"Dodge\",\"parent_id\":null,\"lft\":19,\"rgt\":20,\"depth\":null},{\"id\":11,\"field_id\":1,\"value\":\"Jeep\",\"parent_id\":null,\"lft\":21,\"rgt\":22,\"depth\":null},{\"id\":12,\"field_id\":1,\"value\":\"Tesla\",\"parent_id\":null,\"lft\":23,\"rgt\":24,\"depth\":null},{\"id\":13,\"field_id\":1,\"value\":\"Lexus\",\"parent_id\":null,\"lft\":25,\"rgt\":26,\"depth\":null},{\"id\":14,\"field_id\":1,\"value\":\"Suzuki\",\"parent_id\":null,\"lft\":27,\"rgt\":28,\"depth\":null},{\"id\":15,\"field_id\":1,\"value\":\"Mazda\",\"parent_id\":null,\"lft\":29,\"rgt\":30,\"depth\":null},{\"id\":16,\"field_id\":1,\"value\":\"Honda\",\"parent_id\":null,\"lft\":31,\"rgt\":32,\"depth\":null},{\"id\":17,\"field_id\":1,\"value\":\"Acura\",\"parent_id\":null,\"lft\":33,\"rgt\":34,\"depth\":null},{\"id\":18,\"field_id\":1,\"value\":\"Mitsubishi\",\"parent_id\":null,\"lft\":35,\"rgt\":36,\"depth\":null},{\"id\":19,\"field_id\":1,\"value\":\"Nissan\",\"parent_id\":null,\"lft\":37,\"rgt\":38,\"depth\":null},{\"id\":20,\"field_id\":1,\"value\":\"Infiniti\",\"parent_id\":null,\"lft\":39,\"rgt\":40,\"depth\":null},{\"id\":21,\"field_id\":1,\"value\":\"Audi\",\"parent_id\":null,\"lft\":41,\"rgt\":42,\"depth\":null},{\"id\":22,\"field_id\":1,\"value\":\"Volkswagen\",\"parent_id\":null,\"lft\":43,\"rgt\":44,\"depth\":null},{\"id\":23,\"field_id\":1,\"value\":\"Porsche\",\"parent_id\":null,\"lft\":45,\"rgt\":46,\"depth\":null},{\"id\":24,\"field_id\":1,\"value\":\"Opel\",\"parent_id\":null,\"lft\":47,\"rgt\":48,\"depth\":null},{\"id\":25,\"field_id\":1,\"value\":\"Jaguar\",\"parent_id\":null,\"lft\":49,\"rgt\":50,\"depth\":null},{\"id\":26,\"field_id\":1,\"value\":\"Land Rover\",\"parent_id\":null,\"lft\":51,\"rgt\":52,\"depth\":null},{\"id\":27,\"field_id\":1,\"value\":\"MINI\",\"parent_id\":null,\"lft\":53,\"rgt\":54,\"depth\":null},{\"id\":28,\"field_id\":1,\"value\":\"Aston Martin\",\"parent_id\":null,\"lft\":55,\"rgt\":56,\"depth\":null},{\"id\":29,\"field_id\":1,\"value\":\"Bentley\",\"parent_id\":null,\"lft\":57,\"rgt\":58,\"depth\":null},{\"id\":30,\"field_id\":1,\"value\":\"Rolls-Royce\",\"parent_id\":null,\"lft\":59,\"rgt\":60,\"depth\":null},{\"id\":31,\"field_id\":1,\"value\":\"McLaren\",\"parent_id\":null,\"lft\":61,\"rgt\":62,\"depth\":null},{\"id\":32,\"field_id\":1,\"value\":\"Fiat\",\"parent_id\":null,\"lft\":63,\"rgt\":64,\"depth\":null},{\"id\":33,\"field_id\":1,\"value\":\"Alfa Romeo\",\"parent_id\":null,\"lft\":65,\"rgt\":66,\"depth\":null},{\"id\":34,\"field_id\":1,\"value\":\"Maserati\",\"parent_id\":null,\"lft\":67,\"rgt\":68,\"depth\":null},{\"id\":35,\"field_id\":1,\"value\":\"Ferrari\",\"parent_id\":null,\"lft\":69,\"rgt\":70,\"depth\":null},{\"id\":36,\"field_id\":1,\"value\":\"Lamborghini\",\"parent_id\":null,\"lft\":71,\"rgt\":72,\"depth\":null},{\"id\":37,\"field_id\":1,\"value\":\"Pagani\",\"parent_id\":null,\"lft\":73,\"rgt\":74,\"depth\":null},{\"id\":38,\"field_id\":1,\"value\":\"Lancia\",\"parent_id\":null,\"lft\":75,\"rgt\":76,\"depth\":null},{\"id\":39,\"field_id\":1,\"value\":\"Renault\",\"parent_id\":null,\"lft\":77,\"rgt\":78,\"depth\":null},{\"id\":40,\"field_id\":1,\"value\":\"Peugeot\",\"parent_id\":null,\"lft\":79,\"rgt\":80,\"depth\":null},{\"id\":41,\"field_id\":1,\"value\":\"Citroen\",\"parent_id\":null,\"lft\":81,\"rgt\":82,\"depth\":null},{\"id\":42,\"field_id\":1,\"value\":\"Bugatti\",\"parent_id\":null,\"lft\":83,\"rgt\":84,\"depth\":null},{\"id\":43,\"field_id\":1,\"value\":\"Tata\",\"parent_id\":null,\"lft\":85,\"rgt\":86,\"depth\":null},{\"id\":44,\"field_id\":1,\"value\":\"Hyundai\",\"parent_id\":null,\"lft\":87,\"rgt\":88,\"depth\":null},{\"id\":45,\"field_id\":1,\"value\":\"Kia\",\"parent_id\":null,\"lft\":89,\"rgt\":90,\"depth\":null},{\"id\":46,\"field_id\":1,\"value\":\"Daewoo\",\"parent_id\":null,\"lft\":91,\"rgt\":92,\"depth\":null},{\"id\":47,\"field_id\":1,\"value\":\"Volvo\",\"parent_id\":null,\"lft\":93,\"rgt\":94,\"depth\":null},{\"id\":48,\"field_id\":1,\"value\":\"Saab\",\"parent_id\":null,\"lft\":95,\"rgt\":96,\"depth\":null},{\"id\":49,\"field_id\":1,\"value\":\"Lada\",\"parent_id\":null,\"lft\":97,\"rgt\":98,\"depth\":null},{\"id\":50,\"field_id\":1,\"value\":\"Volga\",\"parent_id\":null,\"lft\":99,\"rgt\":100,\"depth\":null},{\"id\":51,\"field_id\":1,\"value\":\"Zil\",\"parent_id\":null,\"lft\":101,\"rgt\":102,\"depth\":null},{\"id\":52,\"field_id\":1,\"value\":\"GAZ\",\"parent_id\":null,\"lft\":103,\"rgt\":104,\"depth\":null},{\"id\":53,\"field_id\":1,\"value\":\"Geely\",\"parent_id\":null,\"lft\":105,\"rgt\":106,\"depth\":null},{\"id\":54,\"field_id\":1,\"value\":\"Chery\",\"parent_id\":null,\"lft\":107,\"rgt\":108,\"depth\":null},{\"id\":55,\"field_id\":1,\"value\":\"Hongqi\",\"parent_id\":null,\"lft\":109,\"rgt\":110,\"depth\":null},{\"id\":56,\"field_id\":1,\"value\":\"Dacia\",\"parent_id\":null,\"lft\":111,\"rgt\":112,\"depth\":null},{\"id\":57,\"field_id\":1,\"value\":\"Daihatsu\",\"parent_id\":null,\"lft\":113,\"rgt\":114,\"depth\":null},{\"id\":58,\"field_id\":1,\"value\":\"FIAT\",\"parent_id\":null,\"lft\":115,\"rgt\":116,\"depth\":null},{\"id\":59,\"field_id\":1,\"value\":\"Genesis\",\"parent_id\":null,\"lft\":117,\"rgt\":118,\"depth\":null},{\"id\":60,\"field_id\":1,\"value\":\"Isuzu\",\"parent_id\":null,\"lft\":119,\"rgt\":120,\"depth\":null},{\"id\":61,\"field_id\":1,\"value\":\"Lincoln\",\"parent_id\":null,\"lft\":121,\"rgt\":122,\"depth\":null},{\"id\":62,\"field_id\":1,\"value\":\"Lotus\",\"parent_id\":null,\"lft\":123,\"rgt\":124,\"depth\":null},{\"id\":63,\"field_id\":1,\"value\":\"Ram\",\"parent_id\":null,\"lft\":125,\"rgt\":126,\"depth\":null},{\"id\":64,\"field_id\":1,\"value\":\"Ram\",\"parent_id\":null,\"lft\":127,\"rgt\":128,\"depth\":null},{\"id\":65,\"field_id\":1,\"value\":\"SEAT\",\"parent_id\":null,\"lft\":129,\"rgt\":130,\"depth\":null},{\"id\":66,\"field_id\":1,\"value\":\"Skoda\",\"parent_id\":null,\"lft\":131,\"rgt\":132,\"depth\":null},{\"id\":67,\"field_id\":1,\"value\":\"Smart\",\"parent_id\":null,\"lft\":133,\"rgt\":134,\"depth\":null},{\"id\":68,\"field_id\":1,\"value\":\"Subaru\",\"parent_id\":null,\"lft\":135,\"rgt\":136,\"depth\":null},{\"id\":69,\"field_id\":1,\"value\":\"Other\",\"parent_id\":null,\"lft\":137,\"rgt\":138,\"depth\":null}]},{\"id\":2,\"belongs_to\":\"post\",\"name\":\"Car Model\",\"type\":\"text\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":0,\"help\":\"\",\"active\":1,\"options\":[]},{\"id\":3,\"belongs_to\":\"post\",\"name\":\"Year of registration\",\"type\":\"number\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":0,\"help\":\"\",\"active\":1,\"options\":[]},{\"id\":5,\"belongs_to\":\"post\",\"name\":\"Fuel Type\",\"type\":\"select\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":70,\"field_id\":5,\"value\":\"Essence\",\"parent_id\":null,\"lft\":139,\"rgt\":140,\"depth\":null},{\"id\":71,\"field_id\":5,\"value\":\"Diesel\",\"parent_id\":null,\"lft\":141,\"rgt\":142,\"depth\":null}]},{\"id\":7,\"belongs_to\":\"post\",\"name\":\"Transmission\",\"type\":\"radio\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":76,\"field_id\":7,\"value\":\"Automatic\",\"parent_id\":null,\"lft\":151,\"rgt\":152,\"depth\":null},{\"id\":77,\"field_id\":7,\"value\":\"Manual\",\"parent_id\":null,\"lft\":153,\"rgt\":154,\"depth\":null}]},{\"id\":8,\"belongs_to\":\"post\",\"name\":\"Condition\",\"type\":\"select\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":78,\"field_id\":8,\"value\":\"New\",\"parent_id\":null,\"lft\":155,\"rgt\":156,\"depth\":null},{\"id\":79,\"field_id\":8,\"value\":\"Used\",\"parent_id\":null,\"lft\":157,\"rgt\":158,\"depth\":null}]},{\"id\":4,\"belongs_to\":\"post\",\"name\":\"Mileage\",\"type\":\"text\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":0,\"help\":\"\",\"active\":1,\"options\":[]},{\"id\":6,\"belongs_to\":\"post\",\"name\":\"Features\",\"type\":\"checkbox_multiple\",\"max\":null,\"default_value\":\"\",\"required\":0,\"use_as_filter\":1,\"help\":\"\",\"active\":1,\"options\":[{\"id\":72,\"field_id\":6,\"value\":\"Air Conditioner\",\"parent_id\":null,\"lft\":143,\"rgt\":144,\"depth\":null},{\"id\":73,\"field_id\":6,\"value\":\"GPS\",\"parent_id\":null,\"lft\":145,\"rgt\":146,\"depth\":null},{\"id\":74,\"field_id\":6,\"value\":\"Security System\",\"parent_id\":null,\"lft\":147,\"rgt\":148,\"depth\":null},{\"id\":75,\"field_id\":6,\"value\":\"Spare Tire\",\"parent_id\":null,\"lft\":149,\"rgt\":150,\"depth\":null}]}],\"extra\":{\"errors\":[],\"oldInput\":null}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/categories/{id}/fields",
                            "metadata": {
                                "groupName": "Categories",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List category's fields",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the category.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "language_code": {
                                    "name": "language_code",
                                    "description": "The code of the user's spoken language.",
                                    "required": false,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The unique ID of the post.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "language_code": "en",
                                "post_id": 1
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List countries",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Language": "en",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the country relationships for Eager Loading - Possible values: currency,continent.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "includeNonActive": {
                                    "name": "includeNonActive",
                                    "description": "Allow including the non-activated countries in the list.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "iti": {
                                    "name": "iti",
                                    "description": "Allow getting option data for the phone number input. Possible value: 'i18n' or 'onlyCountries'.",
                                    "required": false,
                                    "example": "'onlyCountries'",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The code of the current country (Only when the 'iti' parameter is filled to true).",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "includeNonActive": false,
                                "iti": "'onlyCountries'",
                                "countryCode": null,
                                "sort": "-name",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 400,
                                    "content": "{\"success\":false,\"message\":\"No data available. Only \\\"i18n\\\" and \\\"onlyCountries\\\" are accepted for the \\\"iti\\\" parameter.\",\"result\":null}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{code}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get country",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The country's ISO 3166-1 code.",
                                    "required": true,
                                    "example": "DE",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "DE"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the country relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": "currency",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": "currency"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Country not found\",\"result\":null,\"error\":\"Country not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{countryCode}/subAdmins1",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List admin. divisions (1)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The country code of the country of the cities to retrieve.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "countryCode": "US"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (1) relationships for Eager Loading - Possible values: country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "q": {
                                    "name": "q",
                                    "description": "Get the administrative division list related to the entered keyword.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "q": null,
                                "sort": "-name",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No administrative divisions found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins1\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{countryCode}/subAdmins2",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List admin. divisions (2)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The country code of the country of the cities to retrieve.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "countryCode": "US"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (2) relationships for Eager Loading - Possible values: country,subAdmin1.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin1Code": {
                                    "name": "admin1Code",
                                    "description": "Get the administrative division 2 list related to the administrative division 1 code.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "q": {
                                    "name": "q",
                                    "description": "Get the administrative division 2 list related to the entered keyword.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "admin1Code": null,
                                "q": null,
                                "sort": "-name",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No administrative divisions found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/subAdmins2\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/countries/{countryCode}/cities",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List cities",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "The country code of the country of the cities to retrieve.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "countryCode": "US"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the city relationships for Eager Loading - Possible values: country,subAdmin1,subAdmin2.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin1Code": {
                                    "name": "admin1Code",
                                    "description": "Get the city list related to the administrative division 1 code.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "admin2Code": {
                                    "name": "admin2Code",
                                    "description": "Get the city list related to the administrative division 2 code.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "q": {
                                    "name": "q",
                                    "description": "Get the city list related to the entered keyword.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "autocomplete": {
                                    "name": "autocomplete",
                                    "description": "Allow getting the city list in the autocomplete data format. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "string|array The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: name,population.",
                                    "required": false,
                                    "example": "-name",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "page": {
                                    "name": "page",
                                    "description": "Items page number. From 1 to (\"total items\" divided by \"items per page value - perPage\").",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "admin1Code": null,
                                "admin2Code": null,
                                "q": null,
                                "autocomplete": false,
                                "sort": "-name",
                                "perPage": 2,
                                "page": 1
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No cities found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/countries\\/US\\/cities\",\"per_page\":2,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/subAdmins1/{code}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get admin. division (1)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The administrative division (1)'s code.",
                                    "required": true,
                                    "example": "CH.VD",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "CH.VD"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (1) relationships for Eager Loading - Possible values: country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No administrative divisions found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/subAdmins1\\/CH.VD\",\"per_page\":39,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/subAdmins2/{code}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get admin. division (2)",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The administrative division (2)'s code.",
                                    "required": true,
                                    "example": "CH.VD.2225",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "CH.VD.2225"
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the administrative division (2) relationships for Eager Loading - Possible values: country,subAdmin1.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Administrative division not found\",\"result\":null,\"error\":\"Administrative division not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/cities/{id}",
                            "metadata": {
                                "groupName": "Countries",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get city",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The city's ID.",
                                    "required": true,
                                    "example": 12544,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 12544
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the city relationships for Eager Loading - Possible values: country,subAdmin1,subAdmin2.",
                                    "required": false,
                                    "example": "country",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": "country"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"City not found\",\"result\":null,\"error\":\"City not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/savedPosts",
                            "metadata": {
                                "groupName": "Saved Posts",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store/Delete saved listing",
                                "description": "Save a post/listing in favorite, or remove it from favorite.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post/listing's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "post_id": 2
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hdP6k3gaZ16e5afEbvDV8c4"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/savedPosts",
                            "metadata": {
                                "groupName": "Saved Posts",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List saved listings",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: post,city,pictures,user.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "country_code": "US",
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 6h63PDefgdak5Ev1cZbV8a4"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/savedPosts/{ids}",
                            "metadata": {
                                "groupName": "Saved Posts",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete saved listing(s)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of saved post/listing(s).",
                                    "required": true,
                                    "example": "1,2,3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "1,2,3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hkcP6Ee6aba3fVg58DZ4vd1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/savedSearches",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store/Delete saved search",
                                "description": "Save a search result in favorite, or remove it from favorite.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "url": {
                                    "name": "url",
                                    "description": "Search URL to save.",
                                    "required": true,
                                    "example": "https://demo.Ecosystem.com/search/?q=test&l=",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "count_posts": {
                                    "name": "count_posts",
                                    "description": "The number of posts found for the URL.",
                                    "required": true,
                                    "example": 29,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "url": "https://demo.Ecosystem.com/search/?q=test&l=",
                                "count_posts": 29
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer dvfEP56DeV8Zkc63gha1ba4"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/savedSearches",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List saved searches",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: user,country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer VPg36a4kf5vEZ8he6Dacbd1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/savedSearches/{id}",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get saved search",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The ID of the saved search.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The Comma-separated list of the category relationships for Eager Loading - Possible values: user,country,pictures,postType,category,city,country.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer bh8ce15kgfPaD6634EvVdZa"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/savedSearches/{ids}",
                            "metadata": {
                                "groupName": "Saved Searches",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete saved search(es)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of saved search(es).",
                                    "required": true,
                                    "example": "1,2,3",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "1,2,3"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer afe531v6cg6adVbEZPDkh48"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/pictures/{id}",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get picture",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The picture's ID.",
                                    "required": true,
                                    "example": 298,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 298
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The list of the picture relationships separated by comma for Eager Loading.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Picture not found\",\"result\":null,\"error\":\"Picture not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/pictures",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store picture",
                                "description": "Note: This endpoint is only available for the multi steps post edition.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "count_packages": {
                                    "name": "count_packages",
                                    "description": "The number of available packages.",
                                    "required": true,
                                    "example": 3,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "count_payment_methods": {
                                    "name": "count_payment_methods",
                                    "description": "The number of available payment methods.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "pictures": {
                                    "name": "pictures",
                                    "description": "The files to upload.",
                                    "required": false,
                                    "example": [
                                        null
                                    ],
                                    "type": "file[]",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "US",
                                "count_packages": 3,
                                "count_payment_methods": 1,
                                "post_id": 2
                            },
                            "fileParameters": {
                                "pictures": [
                                    null
                                ]
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer hE46e68ck3DZva5dbfPVa1g"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/pictures/{id}",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete picture",
                                "description": "Note: This endpoint is only available for the multi steps form edition.\nFor newly created listings, the post's ID needs to be added in the request input with the key 'new_post_id'.\nThe 'new_post_id' and 'new_post_tmp_token' fields need to be removed or unset during the listing edition steps.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The picture's ID.",
                                    "required": true,
                                    "example": 999999999,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 999999999
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "post_id": 2
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer ZaEVDfcdP6v6h3481b5gkae"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/pictures/reorder",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Reorder pictures",
                                "description": "Note: This endpoint is only available for the multi steps form edition.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "X-Action": "bulk",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The post's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "body": {
                                    "name": "body",
                                    "description": "Encoded json of the new pictures' positions array [['id' => 2, 'position' => 1], ['id' => 1, 'position' => 2], ...]",
                                    "required": true,
                                    "example": "saepe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "post_id": 2,
                                "body": "saepe"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 8ga43EkhbaP5c6DdeZV61vf"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/posts/{postId}/pictures",
                            "metadata": {
                                "groupName": "Pictures",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List pictures",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "postId": {
                                    "name": "postId",
                                    "description": "",
                                    "required": true,
                                    "example": 346316,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "postId": 346316
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "The list of the picture relationships separated by comma for Eager Loading. Possible values: post.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "postId": {
                                    "name": "postId",
                                    "description": "List of pictures related to a listing (using the listing ID).",
                                    "required": false,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "latest": {
                                    "name": "latest",
                                    "description": "Get only the first picture after ordering (as object instead of collection). Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: position, created_at.",
                                    "required": false,
                                    "example": "-position",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "postId": 1,
                                "latest": false,
                                "sort": "-position",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No pictures found\",\"result\":{\"data\":[],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/posts\\/346316\\/pictures\",\"per_page\":10,\"to\":null,\"total\":0}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/packages/promotion",
                            "metadata": {
                                "groupName": "Packages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List packages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the package relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "-lft"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No packages found\",\"result\":{\"data\":[]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/packages/subscription",
                            "metadata": {
                                "groupName": "Packages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List packages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the package relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "-lft"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No packages found\",\"result\":{\"data\":[]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/packages/{id}",
                            "metadata": {
                                "groupName": "Packages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get package",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The package's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 2
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the package relationships for Eager Loading - Possible values: currency.",
                                    "required": false,
                                    "example": "currency",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": "currency"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Package not found\",\"result\":null,\"error\":\"Package not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/paymentMethods",
                            "metadata": {
                                "groupName": "Payment Methods",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payment methods",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "countryCode": {
                                    "name": "countryCode",
                                    "description": "Country code. Select only the payment methods related to a country.",
                                    "required": false,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "countryCode": "US",
                                "sort": "-lft"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":\"No payment methods found\",\"result\":{\"data\":[]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/paymentMethods/{id}",
                            "metadata": {
                                "groupName": "Payment Methods",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get payment method",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "Can be the ID (int) or name (string) of the payment method.",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 1
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Payment method not found\",\"result\":null,\"error\":\"Payment method not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/promotion",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payments",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "valid": {
                                    "name": "valid",
                                    "description": "Allow getting the valid payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "active": {
                                    "name": "active",
                                    "description": "Allow getting the active payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "valid": false,
                                "active": false,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer EDfd3aPhZ4b5aek8cVv66g1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/subscription",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payments",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "valid": {
                                    "name": "valid",
                                    "description": "Allow getting the valid payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "active": {
                                    "name": "active",
                                    "description": "Allow getting the active payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "valid": false,
                                "active": false,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer e4D61k3VdEPh6va5fgZabc8"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/subscription/users/{userId}/payments",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List payments",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "userId": {
                                    "name": "userId",
                                    "description": "",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "userId": 1
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "valid": {
                                    "name": "valid",
                                    "description": "Allow getting the valid payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "active": {
                                    "name": "active",
                                    "description": "Allow getting the active payment list. Possible value: 0 or 1.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "valid": false,
                                "active": false,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer 1abhD5ZVafg3cE86ekv64dP"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/payments/{id}",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get payment",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The payment's ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 2
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer fP6a8bgd3Zk1av5DVche4E6"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/payments",
                            "metadata": {
                                "groupName": "Payments",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store payment",
                                "description": "Note: This endpoint is only available for the multi steps form edition.",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "package": {
                                    "name": "package",
                                    "description": "Selected package ID.",
                                    "required": false,
                                    "example": 8,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "package": 8
                            },
                            "bodyParameters": {
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The code of the user's country.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payable_id": {
                                    "name": "payable_id",
                                    "description": "The payable's ID (ID of the listing or user).",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payable_type": {
                                    "name": "payable_type",
                                    "description": "The payable model's name - Possible values: Post,User.",
                                    "required": true,
                                    "example": "Post",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "package_id": {
                                    "name": "package_id",
                                    "description": "The package's ID (Auto filled when the query parameter 'package' is set).",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "payment_method_id": {
                                    "name": "payment_method_id",
                                    "description": "The payment method's ID (required when the selected package's price is > 0).",
                                    "required": false,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "country_code": "US",
                                "payable_id": 2,
                                "payable_type": "Post",
                                "package_id": 1,
                                "payment_method_id": 5
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer bZaPda6h3ecgV5E1f6k8D4v"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/threads",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Store thread",
                                "description": "Start a conversation. Creation of a new thread.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "The thread's creator name.",
                                    "required": true,
                                    "example": "John Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "auth_field": {
                                    "name": "auth_field",
                                    "description": "The user's auth field ('email' or 'phone').",
                                    "required": true,
                                    "example": "email",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The thread's creator email address (Required when 'auth_field' value is 'email').",
                                    "required": false,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "The thread's creator mobile phone number (Required when 'auth_field' value is 'phone').",
                                    "required": false,
                                    "example": "iure",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone_country": {
                                    "name": "phone_country",
                                    "description": "The user's phone number's country code (Required when the 'phone' field is filled).",
                                    "required": true,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "body": {
                                    "name": "body",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "Modi temporibus voluptas expedita voluptatibus voluptas veniam.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "post_id": {
                                    "name": "post_id",
                                    "description": "The related post ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "file_path": {
                                    "name": "file_path",
                                    "description": "The thread attached file.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "necessitatibus",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "John Doe",
                                "auth_field": "email",
                                "email": "john.doe@domain.tld",
                                "phone": "iure",
                                "phone_country": null,
                                "body": "Modi temporibus voluptas expedita voluptatibus voluptas veniam.",
                                "post_id": 2,
                                "captcha_key": "necessitatibus"
                            },
                            "fileParameters": {
                                "file_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List threads",
                                "description": "Get all logged user's threads.\nFilters:\n- unread: Get the logged user's unread threads\n- started: Get the logged user's started threads\n- important: Get the logged user's make as important threads",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "filter": {
                                    "name": "filter",
                                    "description": "Filter for the list - Possible value: unread, started or important.",
                                    "required": false,
                                    "example": "unread",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: post.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "filter": "unread",
                                "embed": null,
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer abPED38f6vZh4a65Vke1dcg"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads/{id}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get thread",
                                "description": "Get a thread (owned by the logged user) details",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 8,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 8
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user,post,messages,participants.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer ab3VfE8v6e1cP5k4Dg6ahZd"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "PUT"
                            ],
                            "uri": "api/threads/{id}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Update thread",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "multipart/form-data",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 111111,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 111111
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "body": {
                                    "name": "body",
                                    "description": "The name of the user.",
                                    "required": true,
                                    "example": "Modi temporibus voluptas expedita voluptatibus voluptas veniam.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "file_path": {
                                    "name": "file_path",
                                    "description": "The thread attached file.",
                                    "required": false,
                                    "example": null,
                                    "type": "file",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "body": "Modi temporibus voluptas expedita voluptatibus voluptas veniam."
                            },
                            "fileParameters": {
                                "file_path": null
                            },
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer P6h3b45aVvk61cfDaZ8dEge"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "DELETE"
                            ],
                            "uri": "api/threads/{ids}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Delete thread(s)",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of thread(s).",
                                    "required": true,
                                    "example": "111111,222222,333333",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "111111,222222,333333"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer Dc61fdEav5b8P3V4g6kaheZ"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/threads/bulkUpdate/{ids?}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Bulk updates",
                                "description": "",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "ids": {
                                    "name": "ids",
                                    "description": "The ID or comma-separated IDs list of thread(s)..",
                                    "required": true,
                                    "example": "111111,222222,333333",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "ids": "111111,222222,333333"
                            },
                            "queryParameters": {
                                "type": {
                                    "name": "type",
                                    "description": "The type of action to execute (markAsRead, markAsUnread, markAsImportant, markAsNotImportant or markAllAsRead).",
                                    "required": true,
                                    "example": "animi",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "type": "animi"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer k68vVZb4PDE356a1ghadefc"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads/{threadId}/messages",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List messages",
                                "description": "Get all thread's messages",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "threadId": {
                                    "name": "threadId",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 293,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "threadId": 293
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: user.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: created_at.",
                                    "required": false,
                                    "example": "created_at",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null,
                                "sort": "created_at",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer dh518g6Pv3cVaZeak4ED6fb"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/threads/{threadId}/messages/{id}",
                            "metadata": {
                                "groupName": "Threads",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get message",
                                "description": "Get a thread's message (owned by the logged user) details",
                                "authenticated": true,
                                "custom": []
                            },
                            "headers": {
                                "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "threadId": {
                                    "name": "threadId",
                                    "description": "The thread's ID.",
                                    "required": true,
                                    "example": 293,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "id": {
                                    "name": "id",
                                    "description": "The thread's message's ID.",
                                    "required": true,
                                    "example": 3545,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "threadId": 293,
                                "id": 3545
                            },
                            "queryParameters": {
                                "embed": {
                                    "name": "embed",
                                    "description": "Comma-separated list of the post relationships for Eager Loading - Possible values: thread,user.",
                                    "required": false,
                                    "example": null,
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "embed": null
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 401,
                                    "content": "{\"success\":false,\"message\":\"Unauthenticated or Token Expired, Please Login.\",\"result\":null,\"error\":\"Unauthenticated or Token Expired, Please Login.\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [
                                "headers",
                                "Authorization",
                                "Bearer f8k6VaZgEaPc6d35b4vheD1"
                            ],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/pages",
                            "metadata": {
                                "groupName": "Pages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List pages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": {
                                "excludedFromFooter": {
                                    "name": "excludedFromFooter",
                                    "description": "Select or unselect pages that can list in footer.",
                                    "required": false,
                                    "example": false,
                                    "type": "boolean",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "sort": {
                                    "name": "sort",
                                    "description": "The sorting parameter (Order by DESC with the given column. Use \"-\" as prefix to order by ASC). Possible values: lft, created_at.",
                                    "required": false,
                                    "example": "-lft",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "perPage": {
                                    "name": "perPage",
                                    "description": "Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100.",
                                    "required": false,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "excludedFromFooter": false,
                                "sort": "-lft",
                                "perPage": 2
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"id\":4,\"parent_id\":null,\"type\":\"standard\",\"name\":\"FAQ\",\"slug\":\"faq\",\"image_path\":null,\"title\":\"Frequently Asked Questions\",\"content\":\"<p><b>How do I place an ad?<\\/b><\\/p><p>It's very easy to place an ad: click on the button \\\"Post free Ads\\\" above right.<\\/p><p><b>What does it cost to advertise?<\\/b><\\/p><p>The publication is 100% free throughout the website.<\\/p><p><b>If I post an listing, will I also get more spam e-mails?<\\/b><\\/p><p>Absolutely not because your email address is not visible on the website.<\\/p><p><b>How long will my listing remain on the website?<\\/b><\\/p><p>In general, an listing is automatically deactivated from the website after 3 months. You will receive an email a week before D-Day and another on the day of deactivation. You have the ability to put them online in the following month by logging into your account on the site. After this delay, your listing will be automatically removed permanently from the website.<\\/p><p><b>I sold my item. How do I delete my ad?<\\/b><\\/p><p>Once your product is sold or leased, log in to your account to remove your listing.<\\/p>\",\"external_link\":null,\"name_color\":null,\"title_color\":null,\"target_blank\":0,\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"excluded_from_footer\":0,\"active\":1,\"lft\":2,\"rgt\":3,\"depth\":1,\"image_url\":null},{\"id\":3,\"parent_id\":null,\"type\":\"standard\",\"name\":\"Anti-Scam\",\"slug\":\"anti-scam\",\"image_path\":null,\"title\":\"Anti-Scam\",\"content\":\"<p><b>Protect yourself against Internet fraud!<\\/b><\\/p><p>The vast majority of listings are posted by honest people and trust. So you can do excellent business. Despite this, it is important to follow a few common sense rules following to prevent any attempt to scam.<\\/p><p><b>Our advices<\\/b><\\/p><ul><li>Doing business with people you can meet in person.<\\/li><li>Never send money by Western Union, MoneyGram or other anonymous payment systems.<\\/li><li>Never send money or products abroad.<\\/li><li>Do not accept checks.<\\/li><li>Ask about the person you're dealing with another confirming source name, address and telephone number.<\\/li><li>Keep copies of all correspondence (emails, listings, letters, etc.) and details of the person.<\\/li><li>If a deal seems too good to be true, there is every chance that this is the case. Refrain.<\\/li><\\/ul><p><b>Recognize attempted scam<\\/b><\\/p><ul><li>The majority of scams have one or more of these characteristics:<\\/li><li>The person is abroad or traveling abroad.<\\/li><li>The person refuses to meet you in person.<\\/li><li>Payment is made through Western Union, Money Gram or check.<\\/li><li>The messages are in broken language (English or French or ...).<\\/li><li>The texts seem to be copied and pasted.<\\/li><li>The deal seems to be too good to be true.<\\/li><\\/ul>\",\"external_link\":null,\"name_color\":null,\"title_color\":null,\"target_blank\":0,\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"excluded_from_footer\":0,\"active\":1,\"lft\":4,\"rgt\":5,\"depth\":1,\"image_url\":null}],\"links\":{\"first\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=1\",\"last\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\",\"prev\":null,\"next\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":2,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\/\\/127.0.0.1:8000\\/api\\/pages\",\"per_page\":2,\"to\":2,\"total\":4}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/pages/{slugOrId}",
                            "metadata": {
                                "groupName": "Pages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get page",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "slugOrId": {
                                    "name": "slugOrId",
                                    "description": "The slug or ID of the page.",
                                    "required": true,
                                    "example": "terms",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "slugOrId": "terms"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"id\":1,\"parent_id\":null,\"type\":\"terms\",\"name\":\"Terms\",\"slug\":\"terms\",\"image_path\":null,\"title\":\"Terms & Conditions\",\"content\":\"<h4><b>Definitions<\\/b><\\/h4><p>Each of the terms mentioned below have in these Conditions of Sale Ecosystem Service (hereinafter the \\\"Conditions\\\") the following meanings:<\\/p><ol><li>Announcement&nbsp;: refers to all the elements and data (visual, textual, sound, photographs, drawings), presented by an Advertiser editorial under his sole responsibility, in order to buy, rent or sell a product or service and broadcast on the Website and Mobile Site.<\\/li><li>Advertiser&nbsp;: means any natural or legal person, a major, established in France, holds an account and having submitted an announcement, from it, on the Website. Any Advertiser must be connected to the Personal Account for deposit and or manage its listings. Add first deposit automatically entails the establishment of a Personal Account to the Advertiser.<\\/li><li>Personal Account&nbsp;: refers to the free space than any Advertiser must create and which it should connect from the Website to disseminate, manage and view its listings.<\\/li><li>Ecosystem&nbsp;: means the company that publishes and operates the Website and Mobile Site {YourCompany}, registered at the Trade and Companies Register of {YourCity} under the number {YourCompany Registration Number} whose registered office is at {YourCompany Address}.<\\/li><li>Customer Service&nbsp;: Ecosystem means the department to which the Advertiser may obtain further information. This service can be contacted via email by clicking the link on the Website and Mobile Site.<\\/li><li>Ecosystem Service&nbsp;: Ecosystem means the services made available to Users and Advertisers on the Website and Mobile Site.<\\/li><li>Website&nbsp;: means the website operated by Ecosystem accessed mainly from the URL <a href=\\\"https:\\/\\/Ecosystem.com\\\">https:\\/\\/Ecosystem.com<\\/a> and allowing Users and Advertisers to access the Service via internet Ecosystem.<\\/li><li>Mobile Site&nbsp;: is the mobile site operated by Ecosystem accessible from the URL <a href=\\\"https:\\/\\/Ecosystem.com\\\">https:\\/\\/Ecosystem.com<\\/a> and allowing Users and Advertisers to access via their mobile phone service {YourSiteName}.<\\/li><li>User&nbsp;: any visitor with access to Ecosystem Service via the Website and Mobile Site and Consultant Service Ecosystem accessible from different media.<\\/li><\\/ol><h4><b>Subject<\\/b><\\/h4><p>These Terms and Conditions Of Use establish the contractual conditions applicable to any subscription by an Advertiser connected to its Personal Account from the Website and Mobile Site.<br><\\/p><h4><b>Acceptance<\\/b><\\/h4><p>Any use of the website by an Advertiser is full acceptance of the current Terms.<br><\\/p><h4><b>Responsibility<\\/b><\\/h4><p>Responsibility for Ecosystem can not be held liable for non-performance or improper performance of due control, either because of the Advertiser, or a case of major force.<br><\\/p><h4><b>Modification of these terms<\\/b><\\/h4><p>Ecosystem reserves the right, at any time, to modify all or part of the Terms and Conditions.<\\/p><p>Advertisers are advised to consult the Terms to be aware of the changes.<\\/p><h4><b>Miscellaneous<\\/b><\\/h4><p>If part of the Terms should be illegal, invalid or unenforceable for any reason whatsoever, the provisions in question would be deemed unwritten, without questioning the validity of the remaining provisions will continue to apply between Advertisers and Ecosystem.<\\/p><p>Any complaints should be addressed to Customer Service Ecosystem.<\\/p>\",\"external_link\":null,\"name_color\":null,\"title_color\":null,\"target_blank\":0,\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"excluded_from_footer\":0,\"active\":1,\"lft\":6,\"rgt\":7,\"depth\":1,\"image_url\":null}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/contact",
                            "metadata": {
                                "groupName": "Contact",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Send Form",
                                "description": "Send a message to the site owner.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "name": {
                                    "name": "name",
                                    "description": "",
                                    "required": true,
                                    "example": "aperiam",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address.",
                                    "required": true,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "phone": {
                                    "name": "phone",
                                    "description": "",
                                    "required": true,
                                    "example": "quae",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "message": {
                                    "name": "message",
                                    "description": "The message to send.",
                                    "required": true,
                                    "example": "Nesciunt porro possimus maiores voluptatibus accusamus velit qui aspernatur.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_code": {
                                    "name": "country_code",
                                    "description": "The user's country code.",
                                    "required": true,
                                    "example": "US",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "country_name": {
                                    "name": "country_name",
                                    "description": "The user's country name.",
                                    "required": true,
                                    "example": "United Sates",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "first_name": {
                                    "name": "first_name",
                                    "description": "The user's first name.",
                                    "required": true,
                                    "example": "John",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "last_name": {
                                    "name": "last_name",
                                    "description": "The user's last name.",
                                    "required": true,
                                    "example": "Doe",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "suscipit",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "name": "aperiam",
                                "email": "john.doe@domain.tld",
                                "phone": "quae",
                                "message": "Nesciunt porro possimus maiores voluptatibus accusamus velit qui aspernatur.",
                                "country_code": "US",
                                "country_name": "United Sates",
                                "first_name": "John",
                                "last_name": "Doe",
                                "captcha_key": "suscipit"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "POST"
                            ],
                            "uri": "api/posts/{id}/report",
                            "metadata": {
                                "groupName": "Contact",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Report post",
                                "description": "Report abuse or issues",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "id": {
                                    "name": "id",
                                    "description": "The post ID.",
                                    "required": true,
                                    "example": 5,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "id": 5
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": {
                                "report_type_id": {
                                    "name": "report_type_id",
                                    "description": "The report type ID.",
                                    "required": true,
                                    "example": 2,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "email": {
                                    "name": "email",
                                    "description": "The user's email address.",
                                    "required": true,
                                    "example": "john.doe@domain.tld",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "message": {
                                    "name": "message",
                                    "description": "The message to send.",
                                    "required": true,
                                    "example": "Et sunt voluptatibus ducimus id assumenda sint.",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                },
                                "captcha_key": {
                                    "name": "captcha_key",
                                    "description": "Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel).",
                                    "required": false,
                                    "example": "aliquid",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanBodyParameters": {
                                "report_type_id": 2,
                                "email": "john.doe@domain.tld",
                                "message": "Et sunt voluptatibus ducimus id assumenda sint.",
                                "captcha_key": "aliquid"
                            },
                            "fileParameters": [],
                            "responses": [],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/languages",
                            "metadata": {
                                "groupName": "Languages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List languages",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":[{\"code\":\"en\",\"locale\":\"en_US\",\"name\":\"English\",\"native\":\"English\",\"flag\":\"flag-icon-gb\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":1,\"parent_id\":null,\"lft\":2,\"rgt\":3,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"en_US\",\"tag\":\"en\",\"primary\":\"en\"},{\"code\":\"fr\",\"locale\":\"fr_FR\",\"name\":\"French\",\"native\":\"Français\",\"flag\":\"flag-icon-fr\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":4,\"rgt\":5,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"fr_FR\",\"tag\":\"fr\",\"primary\":\"fr\"},{\"code\":\"es\",\"locale\":\"es_ES\",\"name\":\"Spanish\",\"native\":\"Español\",\"flag\":\"flag-icon-es\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":6,\"rgt\":7,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"es_ES\",\"tag\":\"es\",\"primary\":\"es\"},{\"code\":\"ar\",\"locale\":\"ar_SA\",\"name\":\"Arabic\",\"native\":\"العربية\",\"flag\":\"flag-icon-sa\",\"script\":\"Arab\",\"direction\":\"rtl\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":8,\"rgt\":9,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ar_SA\",\"tag\":\"ar\",\"primary\":\"ar\"},{\"code\":\"pt\",\"locale\":\"pt_PT\",\"name\":\"Portuguese\",\"native\":\"Português\",\"flag\":\"flag-icon-pt\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":10,\"rgt\":11,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"pt_PT\",\"tag\":\"pt\",\"primary\":\"pt\"},{\"code\":\"de\",\"locale\":\"de_DE\",\"name\":\"German\",\"native\":\"Deutsch\",\"flag\":\"flag-icon-de\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":12,\"rgt\":13,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"de_DE\",\"tag\":\"de\",\"primary\":\"de\"},{\"code\":\"it\",\"locale\":\"it_IT\",\"name\":\"Italian\",\"native\":\"Italiano\",\"flag\":\"flag-icon-it\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":14,\"rgt\":15,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"it_IT\",\"tag\":\"it\",\"primary\":\"it\"},{\"code\":\"tr\",\"locale\":\"tr_TR\",\"name\":\"Turkish\",\"native\":\"Türkçe\",\"flag\":\"flag-icon-tr\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":16,\"rgt\":17,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"tr_TR\",\"tag\":\"tr\",\"primary\":\"tr\"},{\"code\":\"ru\",\"locale\":\"ru_RU\",\"name\":\"Russian\",\"native\":\"Русский\",\"flag\":\"flag-icon-ru\",\"script\":\"Cyrl\",\"direction\":\"ltr\",\"russian_pluralization\":1,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":18,\"rgt\":19,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ru_RU\",\"tag\":\"ru\",\"primary\":\"ru\"},{\"code\":\"hi\",\"locale\":\"hi_IN\",\"name\":\"Hindi\",\"native\":\"हिन्दी\",\"flag\":\"flag-icon-in\",\"script\":\"Deva\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":20,\"rgt\":21,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"hi_IN\",\"tag\":\"hi\",\"primary\":\"hi\"},{\"code\":\"bn\",\"locale\":\"bn_BD\",\"name\":\"Bengali\",\"native\":\"বাংলা\",\"flag\":\"flag-icon-bd\",\"script\":\"Beng\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":22,\"rgt\":23,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"bn_BD\",\"tag\":\"bn\",\"primary\":\"bn\"},{\"code\":\"zh\",\"locale\":\"zh_CN\",\"name\":\"Simplified Chinese\",\"native\":\"简体中文\",\"flag\":\"flag-icon-cn\",\"script\":\"Hans\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":24,\"rgt\":25,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"zh_CN\",\"tag\":\"zh\",\"primary\":\"zh\"},{\"code\":\"ja\",\"locale\":\"ja_JP\",\"name\":\"Japanese\",\"native\":\"日本語\",\"flag\":\"flag-icon-jp\",\"script\":\"Jpan\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":26,\"rgt\":27,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ja_JP\",\"tag\":\"ja\",\"primary\":\"ja\"},{\"code\":\"he\",\"locale\":\"he_IL\",\"name\":\"Hebrew\",\"native\":\"עִברִית\",\"flag\":\"flag-icon-il\",\"script\":\"Hebr\",\"direction\":\"rtl\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":28,\"rgt\":29,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"he_IL\",\"tag\":\"he\",\"primary\":\"he\"},{\"code\":\"th\",\"locale\":\"th_TH\",\"name\":\"Thai\",\"native\":\"ไทย\",\"flag\":\"flag-icon-th\",\"script\":\"Thai\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":30,\"rgt\":31,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"th_TH\",\"tag\":\"th\",\"primary\":\"th\"},{\"code\":\"ro\",\"locale\":\"ro_RO\",\"name\":\"Romanian\",\"native\":\"Română\",\"flag\":\"flag-icon-ro\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":32,\"rgt\":33,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ro_RO\",\"tag\":\"ro\",\"primary\":\"ro\"},{\"code\":\"ka\",\"locale\":\"ka_GE\",\"name\":\"Georgian\",\"native\":\"ქართული\",\"flag\":\"flag-icon-ge\",\"script\":\"Geor\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":0,\"parent_id\":null,\"lft\":34,\"rgt\":35,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"ka_GE\",\"tag\":\"ka\",\"primary\":\"ka\"}]}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/languages/{code}",
                            "metadata": {
                                "groupName": "Languages",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get language",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "code": {
                                    "name": "code",
                                    "description": "The language's code.",
                                    "required": true,
                                    "example": "en",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "code": "en"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"code\":\"en\",\"locale\":\"en_US\",\"name\":\"English\",\"native\":\"English\",\"flag\":\"flag-icon-gb\",\"script\":\"Latn\",\"direction\":\"ltr\",\"russian_pluralization\":0,\"date_format\":null,\"datetime_format\":null,\"active\":1,\"default\":1,\"parent_id\":null,\"lft\":2,\"rgt\":3,\"depth\":1,\"created_at\":\"2026-05-20 18:55:00\",\"updated_at\":\"2026-05-20 18:55:00\",\"iso_locale\":\"en_US\",\"tag\":\"en\",\"primary\":\"en\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/settings",
                            "metadata": {
                                "groupName": "Settings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List settings",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"app\":{\"name\":\"SHAREK FORSA\",\"logo\":\"app\\/logo\\/logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark\":\"app\\/default\\/logo-dark.png\",\"logo_light\":\"app\\/default\\/logo-light.png\",\"favicon\":\"app\\/default\\/ico\\/favicon.png\",\"date_format\":\"YYYY-MM-DD\",\"datetime_format\":\"YYYY-MM-DD HH:mm\",\"date_from_now_modifier\":\"DIFF_RELATIVE_TO_NOW\",\"date_from_now_short\":\"0\",\"vector_charts_type\":\"morris_bar\",\"vector_charts_limit\":\"7\",\"show_countries_charts\":\"1\",\"countries_charts_limit\":\"5\",\"latest_entries_limit\":\"5\",\"general_settings_as_submenu_in_sidebar\":\"1\",\"dark_theme_enabled\":\"0\",\"system_theme_enabled\":\"0\",\"php_specific_date_format\":\"0\",\"logo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_light_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"favicon_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/ico\\/favicon.png\"},\"style\":{\"skin\":\"blueIzis\",\"page_width\":\"1200\",\"header_full_width\":\"0\",\"dark_header\":\"0\",\"header_shadow\":\"0\",\"header_background_class\":\"bg-body-tertiary\",\"header_animation\":\"1\",\"header_fixed_top\":\"1\",\"header_height_offset\":\"200\",\"fixed_dark_header\":\"0\",\"fixed_header_shadow\":\"1\",\"header_highlighted_btn_link\":\"listingCreationLink\",\"header_highlighted_btn_class\":\"btn-highlight\",\"logo_width\":216,\"logo_height\":40,\"logo_aspect_ratio\":\"1\",\"dark_footer\":\"1\",\"high_spacing_footer\":\"1\",\"footer_full_width\":\"0\",\"admin_logo_bg\":\"skin3\",\"admin_navbar_bg\":\"skin6\",\"admin_sidebar_type\":\"full\",\"admin_sidebar_bg\":\"skin5\",\"admin_sidebar_position\":\"1\",\"admin_header_position\":\"1\",\"admin_boxed_layout\":\"0\",\"admin_dark_theme\":\"0\",\"body_background_image_animation\":\"0\",\"header_highlighted_btn_outline\":\"0\"},\"listing_form\":{\"publication_form_type\":\"multi-steps-form\",\"city_selection\":\"modal\",\"picture_mandatory\":\"1\",\"listings_limit\":\"50\",\"pictures_limit\":\"5\",\"title_min_length\":\"2\",\"title_max_length\":\"150\",\"description_min_length\":\"5\",\"description_max_length\":\"6000\",\"tags_limit\":\"15\",\"tags_min_length\":\"2\",\"tags_max_length\":\"30\",\"guest_can_submit_listings\":\"0\",\"permanent_listings_enabled\":\"0\",\"default_package_type\":\"promotion\",\"utf8mb4_enabled\":\"0\",\"allow_emojis\":\"0\",\"cat_display_type\":\"c_bigIcon_list\",\"wysiwyg_editor\":\"tinymce\",\"auto_registration\":\"0\"},\"listings_list\":{\"display_browse_listings_link\":\"0\",\"display_mode\":\"grid-view\",\"show_left_sidebar\":\"1\",\"left_sidebar_offcanvas\":\"md\",\"min_price\":\"0\",\"max_price\":\"10000\",\"price_slider_step\":\"50\",\"show_category_icon\":\"7\",\"enable_cities_autocompletion\":\"1\",\"enable_diacritics\":\"0\",\"cities_extended_searches\":\"1\",\"distance_calculation_formula\":\"ST_Distance_Sphere\",\"search_distance_max\":\"500\",\"search_distance_default\":\"50\",\"search_distance_interval\":\"100\",\"premium_first\":\"0\",\"premium_first_category\":\"1\",\"premium_first_location\":\"1\",\"free_listings_in_premium\":\"0\"},\"listing_page\":{\"guest_can_contact_authors\":\"0\",\"pictures_slider\":\"swiper-horizontal\",\"similar_listings\":\"1\",\"similar_listings_in_carousel\":\"1\"},\"mail\":{\"sendmail_path\":\"\\/usr\\/sbin\\/sendmail -bs -i\"},\"sms\":{\"enable_phone_as_auth_field\":\"0\",\"default_auth_field\":\"email\",\"phone_of_countries\":\"local\",\"phone_validator\":\"isPossiblePhoneNumber\",\"phone_placeholder_type\":\"auto-0\",\"phone_verification\":\"1\",\"driver\":null},\"upload\":{\"file_types\":\"pdf,doc,docx,rtf,rtx,ppt,pptx,odt,odp,wps,jpg,jpeg,gif,png,avif,bmp,webp\",\"min_file_size\":0,\"max_file_size\":2500,\"image_types\":\"jpg,jpeg,gif,png,avif,bmp,webp\",\"image_quality\":\"90\",\"client_image_types\":\"jpg,png\",\"min_image_size\":0,\"max_image_size\":2500,\"img_resize_default_method\":\"resize\",\"img_resize_default_width\":1500,\"img_resize_default_height\":1500,\"img_resize_default_ratio\":\"1\",\"img_resize_default_upsize\":\"0\",\"img_resize_default_position\":\"center\",\"img_resize_default_bgColor\":\"ffffff\",\"img_resize_logo_method\":\"resize\",\"img_resize_logo_width\":485,\"img_resize_logo_height\":90,\"img_resize_logo_ratio\":\"1\",\"img_resize_logo_upsize\":\"0\",\"img_resize_logo_position\":\"center\",\"img_resize_logo_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_logo_max_method\":\"resize\",\"img_resize_logo_max_width\":430,\"img_resize_logo_max_height\":80,\"img_resize_logo_max_ratio\":\"1\",\"img_resize_logo_max_upsize\":\"0\",\"img_resize_logo_max_position\":\"center\",\"img_resize_logo_max_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_favicon_method\":\"resize\",\"img_resize_favicon_width\":32,\"img_resize_favicon_height\":32,\"img_resize_favicon_ratio\":\"1\",\"img_resize_favicon_upsize\":\"0\",\"img_resize_favicon_position\":\"center\",\"img_resize_favicon_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_cat_method\":\"resize\",\"img_resize_cat_width\":70,\"img_resize_cat_height\":70,\"img_resize_cat_ratio\":\"1\",\"img_resize_cat_upsize\":\"0\",\"img_resize_cat_position\":\"center\",\"img_resize_cat_bgColor\":\"rgba(0, 0, 0, 0)\",\"img_resize_bg_header_method\":\"resize\",\"img_resize_bg_header_width\":2000,\"img_resize_bg_header_height\":1000,\"img_resize_bg_header_ratio\":\"1\",\"img_resize_bg_header_upsize\":\"0\",\"img_resize_bg_header_position\":\"center\",\"img_resize_bg_header_bgColor\":\"ffffff\",\"img_resize_bg_body_method\":\"resize\",\"img_resize_bg_body_width\":2500,\"img_resize_bg_body_height\":2500,\"img_resize_bg_body_ratio\":\"1\",\"img_resize_bg_body_upsize\":\"0\",\"img_resize_bg_body_position\":\"center\",\"img_resize_bg_body_bgColor\":\"ffffff\",\"img_resize_picture_sm_method\":\"resizeCanvas\",\"img_resize_picture_sm_width\":120,\"img_resize_picture_sm_height\":90,\"img_resize_picture_sm_ratio\":\"1\",\"img_resize_picture_sm_upsize\":\"0\",\"img_resize_picture_sm_position\":\"center\",\"img_resize_picture_sm_bgColor\":\"ffffff\",\"img_resize_picture_md_method\":\"fit\",\"img_resize_picture_md_width\":320,\"img_resize_picture_md_height\":240,\"img_resize_picture_md_ratio\":\"1\",\"img_resize_picture_md_upsize\":\"0\",\"img_resize_picture_md_position\":\"center\",\"img_resize_picture_md_bgColor\":\"ffffff\",\"img_resize_picture_lg_method\":\"resize\",\"img_resize_picture_lg_width\":816,\"img_resize_picture_lg_height\":460,\"img_resize_picture_lg_ratio\":\"1\",\"img_resize_picture_lg_upsize\":\"0\",\"img_resize_picture_lg_position\":\"center\",\"img_resize_picture_lg_bgColor\":\"ffffff\",\"img_resize_avatar_method\":\"resize\",\"img_resize_avatar_width\":800,\"img_resize_avatar_height\":800,\"img_resize_avatar_ratio\":\"1\",\"img_resize_avatar_upsize\":\"0\",\"img_resize_avatar_position\":\"center\",\"img_resize_avatar_bgColor\":\"ffffff\",\"img_resize_company_logo_method\":\"resize\",\"img_resize_company_logo_width\":800,\"img_resize_company_logo_height\":800,\"img_resize_company_logo_ratio\":\"1\",\"img_resize_company_logo_upsize\":\"0\",\"img_resize_company_logo_position\":\"center\",\"img_resize_company_logo_bgColor\":\"rgba(0, 0, 0, 0)\"},\"localization\":{\"geoip_driver\":\"ipapi\",\"country_flag_shape\":\"circle\",\"show_country_flag\":\"in_next_logo\",\"auto_detect_language\":\"disabled\",\"show_languages_flags\":\"0\",\"default_country_code\":\"SA\"},\"security\":{\"honeypot_enabled\":\"1\",\"honeypot_name_field_name\":\"entity_field\",\"honeypot_valid_from_field_name\":\"valid_field\",\"honeypot_amount_of_seconds\":\"3\",\"honeypot_respond_to_spam_with\":\"blank_page\",\"captcha_delay\":\"1000\",\"recaptcha_version\":\"v2\"},\"auth\":{\"open_login_in_modal\":\"1\",\"login_max_attempts\":\"5\",\"login_decay_minutes\":\"15\",\"password_min_length\":\"6\",\"password_max_length\":\"30\",\"password_letters_required\":\"0\",\"password_mixedCase_required\":\"0\",\"password_numbers_required\":\"0\",\"password_symbols_required\":\"0\",\"password_uncompromised_required\":\"0\",\"password_uncompromised_threshold\":\"0\",\"email_validator_rfc\":\"1\",\"email_validator_strict\":\"0\",\"email_validator_dns\":\"0\",\"email_validator_spoof\":\"0\",\"email_validator_filter\":\"0\",\"otp_length\":4,\"otp_expire_time_seconds\":300,\"otp_cooldown_seconds\":60,\"otp_max_attempts\":3,\"otp_decay_minutes\":60,\"max_login_lockout_attempts\":0,\"max_resend_lockout_attempts\":15,\"lockout_duration_minutes\":1440,\"hero_image_path\":\"app\\/default\\/auth\\/login-bg-blurred.jpg\",\"hero_image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/auth\\\\thumbnails\\\\2500x2500-login-bg-blurred.jpg\"},\"social_auth\":{\"button_type\":\"loginWithDefault\"},\"social_link\":{\"facebook_page_url\":\"#\",\"twitter_url\":\"#\",\"linkedin_url\":\"#\",\"pinterest_url\":\"#\",\"instagram_url\":\"#\",\"tiktok_url\":\"#\",\"youtube_url\":\"#\",\"vimeo_url\":\"#\",\"vk_url\":\"#\"},\"social_share\":{\"facebook\":\"1\",\"twitter\":\"1\",\"linkedin\":\"1\",\"whatsapp\":\"1\",\"telegram\":\"1\",\"snapchat\":\"0\",\"messenger\":\"0\",\"pinterest\":\"0\",\"vk\":\"0\",\"tumblr\":\"0\",\"og_image_width\":\"1200\",\"og_image_height\":\"630\"},\"optimization\":{\"cache_driver\":\"file\",\"cache_expiration\":\"86400\",\"memcached_servers_1_host\":\"127.0.0.1\",\"memcached_servers_1_port\":\"11211\",\"redis_client\":\"predis\",\"redis_cluster\":\"predis\",\"redis_host\":\"127.0.0.1\",\"redis_port\":\"6379\",\"redis_database\":\"0\",\"queue_driver\":\"sync\",\"lazy_loading_activation\":\"0\",\"minify_html_activation\":\"0\"},\"seo\":{\"robots_txt\":\"User-agent: *\\nAllow: \\/\\n\\nUser-agent: *\\nDisallow: \\/\\/admin\\/\\nDisallow: \\/assets\\/\\nDisallow: \\/css\\/\\nDisallow: \\/js\\/\\nDisallow: \\/vendor\\/\\nDisallow: \\/main.php\\nDisallow: \\/index.php\\nDisallow: \\/mix-manifest.json\\nDisallow: \\/*?display=*\\nDisallow: \\/locale\\/en\\nDisallow: \\/locale\\/fr\\nDisallow: \\/locale\\/es\\nDisallow: \\/locale\\/ar\\nDisallow: \\/locale\\/pt\\nDisallow: \\/locale\\/de\\nDisallow: \\/locale\\/it\\nDisallow: \\/locale\\/tr\\nDisallow: \\/locale\\/ru\\nDisallow: \\/locale\\/hi\\nDisallow: \\/locale\\/bn\\nDisallow: \\/locale\\/zh\\nDisallow: \\/locale\\/ja\\nDisallow: \\/locale\\/he\\nDisallow: \\/locale\\/th\\nDisallow: \\/locale\\/ro\\nDisallow: \\/locale\\/ka\\nDisallow: \\/auth\\/connect\\/facebook\\nDisallow: \\/auth\\/connect\\/linkedin\\nDisallow: \\/auth\\/connect\\/twitter\\nDisallow: \\/auth\\/connect\\/google\\n\",\"robots_txt_sm_indexes\":\"1\",\"listing_hashed_id_enabled\":\"0\",\"listing_hashed_id_seo_redirection\":\"1\"},\"pagination\":{\"per_page\":10,\"categories_per_page\":12,\"cities_per_page\":40,\"payments_per_page\":10,\"posts_per_page\":12,\"saved_posts_per_page\":10,\"saved_search_per_page\":20,\"subadmin1_per_page\":39,\"subadmin2_per_page\":38,\"subscriptions_per_page\":10,\"threads_per_page\":20,\"threads_messages_per_page\":10,\"similar_posts_limit\":4,\"categories_limit\":50,\"cities_limit\":50,\"auto_complete_cities_limit\":25,\"subadmin1_select_limit\":200,\"subadmin2_select_limit\":5000,\"cities_select_limit\":25},\"other\":{\"account_closure_enabled\":\"1\",\"cookie_consent_enabled\":\"0\",\"show_tips_messages\":\"1\",\"timer_new_messages_checking\":60000,\"wysiwyg_editor\":\"tinymce\",\"carousel_slide_by_page\":\"0\",\"carousel_mouse_drag\":\"0\",\"carousel_loop\":\"1\",\"carousel_rewind\":\"0\",\"carousel_autoplay\":\"1\",\"carousel_autoplay_timeout\":\"1500\",\"carousel_autoplay_hover_pause\":\"1\",\"carousel_nav\":\"1\",\"carousel_nav_position\":\"bottom\",\"carousel_controls\":\"0\",\"carousel_ctrl_position\":\"top-end\",\"cookie_expiration\":1440},\"cron\":{\"unactivated_listings_expiration\":\"30\",\"activated_listings_expiration\":\"30\",\"archived_listings_expiration\":\"7\",\"manually_archived_listings_expiration\":\"90\"},\"footer\":{\"hide_payment_plugins_logos\":\"1\"},\"backup\":{\"disable_notifications\":\"1\",\"keep_all_backups_for_days\":\"7\",\"keep_daily_backups_for_days\":\"16\",\"keep_weekly_backups_for_weeks\":\"8\",\"keep_monthly_backups_for_months\":\"4\",\"keep_yearly_backups_for_years\":\"2\",\"maximum_storage_in_megabytes\":\"5000\"}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/settings/{key}",
                            "metadata": {
                                "groupName": "Settings",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get setting",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "key": {
                                    "name": "key",
                                    "description": "The setting's key.",
                                    "required": true,
                                    "example": "app",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "key": "app"
                            },
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"name\":\"SHAREK FORSA\",\"logo\":\"app\\/logo\\/logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark\":\"app\\/default\\/logo-dark.png\",\"logo_light\":\"app\\/default\\/logo-light.png\",\"favicon\":\"app\\/default\\/ico\\/favicon.png\",\"date_format\":\"YYYY-MM-DD\",\"datetime_format\":\"YYYY-MM-DD HH:mm\",\"date_from_now_modifier\":\"DIFF_RELATIVE_TO_NOW\",\"date_from_now_short\":\"0\",\"vector_charts_type\":\"morris_bar\",\"vector_charts_limit\":\"7\",\"show_countries_charts\":\"1\",\"countries_charts_limit\":\"5\",\"latest_entries_limit\":\"5\",\"general_settings_as_submenu_in_sidebar\":\"1\",\"dark_theme_enabled\":\"0\",\"system_theme_enabled\":\"0\",\"php_specific_date_format\":\"0\",\"logo_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_dark_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"logo_light_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/logo\\\\thumbnails\\\\1500x1500-logo-6a0e625eb9d1a-403997822459.png\",\"favicon_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/ico\\/favicon.png\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/sections",
                            "metadata": {
                                "groupName": "Home",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "List sections",
                                "description": "",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"data\":{\"search_form\":{\"belongs_to\":\"home\",\"key\":\"search_form\",\"data\":[],\"options\":{\"enable_extended_form_area\":\"1\",\"background_image_path\":null,\"background_image_darken\":0,\"title_en\":\"Sell and Buy near you\",\"sub_title_en\":\"Simple, fast and efficient\",\"title_fr\":\"Vendre et acheter près de chez vous\",\"sub_title_fr\":\"Simple, rapide et efficace\",\"title_es\":\"Vender y comprar cerca de usted\",\"sub_title_es\":\"Simple, rápido y eficiente\",\"title_ar\":\"بيع وشراء بالقرب منك\",\"sub_title_ar\":\"بسيطة وسريعة وفعالة\",\"title_pt\":\"Vender e comprar perto de si\",\"sub_title_pt\":\"Simples, Rápido e Eficiente\",\"title_de\":\"Verkaufen und Kaufen in Ihrer Nähe\",\"sub_title_de\":\"Einfach, schnell und effizient\",\"title_it\":\"Vendi e compra vicino a te\",\"sub_title_it\":\"Semplice, veloce ed efficiente\",\"title_tr\":\"Size yakın satıp satın alın\",\"sub_title_tr\":\"Basit, hızlı ve verimli\",\"title_ru\":\"Продавайте и покупайте рядом с вами\",\"sub_title_ru\":\"Просто, быстро и эффективно\",\"title_hi\":\"अपने पास बेचें और खरीदें\",\"sub_title_hi\":\"सरल, तेज और कुशल\",\"title_bn\":\"আপনার কাছাকাছি বিক্রি করুন এবং কিনুন\",\"sub_title_bn\":\"সহজ, দ্রুত এবং দক্ষ\",\"title_zh\":\"在您附近买卖\",\"sub_title_zh\":\"简单,快速,高效\",\"title_ja\":\"お近くの売買\",\"sub_title_ja\":\"シンプル、迅速かつ効率的\",\"title_he\":\"למכור ולקנות בקרבתך\",\"sub_title_he\":\"פשוט, מהיר ויעיל\",\"title_th\":\"ขายและซื้อใกล้บ้านคุณ\",\"sub_title_th\":\"ง่ายรวดเร็วและมีประสิทธิภาพ\",\"title_ro\":\"Vinde și Cumpără inteligent\",\"sub_title_ro\":\"Simplu, rapid și eficient!\",\"title_ka\":\"გაყიდვა და შეძენა ახლოს თქვენ\",\"sub_title_ka\":\"მარტივი, სწრაფი და ეფექტური\",\"background_image_url\":null},\"lft\":0},\"categories\":{\"belongs_to\":\"home\",\"key\":\"categories\",\"data\":{\"categories\":{\"1\":{\"id\":1,\"parent_id\":null,\"name\":\"Automobiles\",\"slug\":\"automobiles\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-car\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":1,\"rgt\":10,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"9\":{\"id\":9,\"parent_id\":null,\"name\":\"Phones & Tablets\",\"slug\":\"phones-and-tablets\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-mobile-screen-button\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":11,\"rgt\":17,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"14\":{\"id\":14,\"parent_id\":null,\"name\":\"Electronics\",\"slug\":\"electronics\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-laptop\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":18,\"rgt\":35,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"30\":{\"id\":30,\"parent_id\":null,\"name\":\"Furniture & Appliances\",\"slug\":\"furniture-appliances\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-couch\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":36,\"rgt\":44,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"37\":{\"id\":37,\"parent_id\":null,\"name\":\"Real estate\",\"slug\":\"real-estate\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-house\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":45,\"rgt\":55,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"46\":{\"id\":46,\"parent_id\":null,\"name\":\"Animals & Pets\",\"slug\":\"animals-and-pets\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-paw\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":56,\"rgt\":65,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"54\":{\"id\":54,\"parent_id\":null,\"name\":\"Fashion\",\"slug\":\"fashion\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-shirt\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":66,\"rgt\":75,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"62\":{\"id\":62,\"parent_id\":null,\"name\":\"Beauty & Well being\",\"slug\":\"beauty-well-being\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-spa\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":76,\"rgt\":88,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"73\":{\"id\":73,\"parent_id\":null,\"name\":\"Jobs\",\"slug\":\"jobs\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-briefcase\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":89,\"rgt\":114,\"depth\":0,\"type\":\"job-offer\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"97\":{\"id\":97,\"parent_id\":null,\"name\":\"Services\",\"slug\":\"services\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-clipboard-list\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":115,\"rgt\":133,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"114\":{\"id\":114,\"parent_id\":null,\"name\":\"Learning\",\"slug\":\"learning\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-solid fa-graduation-cap\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":134,\"rgt\":143,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"},\"122\":{\"id\":122,\"parent_id\":null,\"name\":\"Local Events\",\"slug\":\"local-events\",\"description\":\"\",\"hide_description\":null,\"image_path\":\"app\\/default\\/categories\\/fa-folder-default.png\",\"icon_class\":\"fa-regular fa-calendar-days\",\"seo_title\":\"\",\"seo_description\":\"\",\"seo_keywords\":\"\",\"lft\":144,\"rgt\":158,\"depth\":0,\"type\":\"classified\",\"is_for_permanent\":0,\"active\":1,\"image_url\":\"http:\\/\\/127.0.0.1:8000\\/storage\\/app\\/default\\/categories\\\\thumbnails\\\\70x70-fa-folder-default.png\"}},\"countPostsPerCat\":[]},\"options\":{\"max_items\":null,\"cat_display_type\":\"c_bigIcon_list\",\"show_icon\":\"1\",\"max_sub_cats\":\"3\"},\"lft\":2},\"premium_listings\":{\"belongs_to\":\"home\",\"key\":\"premium_listings\",\"data\":{\"premium\":null},\"options\":{\"max_items\":\"20\",\"items_in_carousel\":\"1\"},\"lft\":4},\"locations\":{\"belongs_to\":\"home\",\"key\":\"locations\",\"data\":{\"cities\":[{\"id\":44,\"country_code\":\"SA\",\"name\":\"Riyadh\",\"longitude\":46.72,\"latitude\":24.69,\"feature_class\":\"P\",\"feature_code\":\"PPLC\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":4205961,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"riyadh\"},{\"id\":136,\"country_code\":\"SA\",\"name\":\"Riyadh\",\"longitude\":46.72,\"latitude\":24.69,\"feature_class\":\"P\",\"feature_code\":\"PPLC\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":4205961,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"riyadh\"},{\"id\":29,\"country_code\":\"SA\",\"name\":\"Jeddah\",\"longitude\":39.19,\"latitude\":21.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":2867446,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2022-01-21T01:00:00.000000Z\",\"updated_at\":\"2022-01-21T01:00:00.000000Z\",\"slug\":\"jeddah\"},{\"id\":121,\"country_code\":\"SA\",\"name\":\"Jeddah\",\"longitude\":39.19,\"latitude\":21.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":2867446,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2022-01-21T01:00:00.000000Z\",\"updated_at\":\"2022-01-21T01:00:00.000000Z\",\"slug\":\"jeddah\"},{\"id\":25,\"country_code\":\"SA\",\"name\":\"Mecca\",\"longitude\":39.83,\"latitude\":21.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":1323624,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2020-05-28T01:00:00.000000Z\",\"updated_at\":\"2020-05-28T01:00:00.000000Z\",\"slug\":\"mecca\"},{\"id\":117,\"country_code\":\"SA\",\"name\":\"Mecca\",\"longitude\":39.83,\"latitude\":21.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":1323624,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2020-05-28T01:00:00.000000Z\",\"updated_at\":\"2020-05-28T01:00:00.000000Z\",\"slug\":\"mecca\"},{\"id\":61,\"country_code\":\"SA\",\"name\":\"Medina\",\"longitude\":39.61,\"latitude\":24.47,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":1300000,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"medina\"},{\"id\":153,\"country_code\":\"SA\",\"name\":\"Medina\",\"longitude\":39.61,\"latitude\":24.47,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":1300000,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2019-09-05T01:00:00.000000Z\",\"updated_at\":\"2019-09-05T01:00:00.000000Z\",\"slug\":\"medina\"},{\"id\":104,\"country_code\":\"SA\",\"name\":\"Sulţānah\",\"longitude\":39.59,\"latitude\":24.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":946697,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2012-01-16T01:00:00.000000Z\",\"updated_at\":\"2012-01-16T01:00:00.000000Z\",\"slug\":\"sultanah\"},{\"id\":12,\"country_code\":\"SA\",\"name\":\"Sulţānah\",\"longitude\":39.59,\"latitude\":24.49,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.05\",\"subadmin2_code\":null,\"population\":946697,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2012-01-16T01:00:00.000000Z\",\"updated_at\":\"2012-01-16T01:00:00.000000Z\",\"slug\":\"sultanah\"},{\"id\":81,\"country_code\":\"SA\",\"name\":\"Dammam\",\"longitude\":50.1,\"latitude\":26.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.06\",\"subadmin2_code\":null,\"population\":768602,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2014-08-19T01:00:00.000000Z\",\"updated_at\":\"2014-08-19T01:00:00.000000Z\",\"slug\":\"dammam\"},{\"id\":173,\"country_code\":\"SA\",\"name\":\"Dammam\",\"longitude\":50.1,\"latitude\":26.43,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.06\",\"subadmin2_code\":null,\"population\":768602,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2014-08-19T01:00:00.000000Z\",\"updated_at\":\"2014-08-19T01:00:00.000000Z\",\"slug\":\"dammam\"},{\"id\":132,\"country_code\":\"SA\",\"name\":\"Ta’if\",\"longitude\":40.42,\"latitude\":21.27,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":530848,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-05T01:00:00.000000Z\",\"updated_at\":\"2015-09-05T01:00:00.000000Z\",\"slug\":\"ta’if\"},{\"id\":40,\"country_code\":\"SA\",\"name\":\"Ta’if\",\"longitude\":40.42,\"latitude\":21.27,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.14\",\"subadmin2_code\":null,\"population\":530848,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-05T01:00:00.000000Z\",\"updated_at\":\"2015-09-05T01:00:00.000000Z\",\"slug\":\"ta’if\"},{\"id\":101,\"country_code\":\"SA\",\"name\":\"Tabuk\",\"longitude\":36.57,\"latitude\":28.4,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.19\",\"subadmin2_code\":null,\"population\":455450,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-12T01:00:00.000000Z\",\"updated_at\":\"2015-09-12T01:00:00.000000Z\",\"slug\":\"tabuk\"},{\"id\":9,\"country_code\":\"SA\",\"name\":\"Tabuk\",\"longitude\":36.57,\"latitude\":28.4,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.19\",\"subadmin2_code\":null,\"population\":455450,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2015-09-12T01:00:00.000000Z\",\"updated_at\":\"2015-09-12T01:00:00.000000Z\",\"slug\":\"tabuk\"},{\"id\":155,\"country_code\":\"SA\",\"name\":\"Al Kharj\",\"longitude\":47.33,\"latitude\":24.16,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":425300,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2017-09-13T01:00:00.000000Z\",\"updated_at\":\"2017-09-13T01:00:00.000000Z\",\"slug\":\"al-kharj\"},{\"id\":63,\"country_code\":\"SA\",\"name\":\"Al Kharj\",\"longitude\":47.33,\"latitude\":24.16,\"feature_class\":\"P\",\"feature_code\":\"PPL\",\"subadmin1_code\":\"SA.10\",\"subadmin2_code\":null,\"population\":425300,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2017-09-13T01:00:00.000000Z\",\"updated_at\":\"2017-09-13T01:00:00.000000Z\",\"slug\":\"al-kharj\"},{\"id\":34,\"country_code\":\"SA\",\"name\":\"Buraydah\",\"longitude\":43.97,\"latitude\":26.33,\"feature_class\":\"P\",\"feature_code\":\"PPLA\",\"subadmin1_code\":\"SA.08\",\"subadmin2_code\":null,\"population\":391336,\"time_zone\":\"Asia\\/Riyadh\",\"active\":1,\"created_at\":\"2018-03-06T01:00:00.000000Z\",\"updated_at\":\"2018-03-06T01:00:00.000000Z\",\"slug\":\"buraydah\"},{\"id\":0,\"name\":\"More cities &raquo;\",\"subadmin0_code\":0}],\"items_cols\":4},\"options\":{\"show_cities\":\"1\",\"max_items\":\"19\",\"show_listing_btn\":\"1\",\"enable_map\":\"0\",\"map_width\":\"300\",\"map_height\":\"300\"},\"lft\":6},\"latest_listings\":{\"belongs_to\":\"home\",\"key\":\"latest_listings\",\"data\":{\"latest\":null},\"options\":{\"max_items\":\"8\",\"show_view_more_btn\":\"1\"},\"lft\":8},\"stats\":{\"belongs_to\":\"home\",\"key\":\"stats\",\"data\":{\"count\":{\"posts\":0,\"users\":36,\"locations\":184}},\"options\":{\"icon_count_listings\":\"bi bi-megaphone\",\"icon_count_users\":\"bi bi-people\",\"icon_count_locations\":\"bi bi-geo-alt\",\"counter_up_delay\":10,\"counter_up_time\":2000},\"lft\":10}}}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/sections/{method}",
                            "metadata": {
                                "groupName": "Home",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get section",
                                "description": "Get category by its unique slug or ID.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": {
                                "method": {
                                    "name": "method",
                                    "description": "",
                                    "required": true,
                                    "example": 1,
                                    "type": "integer",
                                    "enumValues": [],
                                    "exampleWasSpecified": false,
                                    "nullable": false,
                                    "custom": []
                                },
                                "key": {
                                    "name": "key",
                                    "description": "The key/method of the section.",
                                    "required": true,
                                    "example": "getCategories",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanUrlParameters": {
                                "method": 1,
                                "key": "getCategories"
                            },
                            "queryParameters": {
                                "parentCatSlug": {
                                    "name": "parentCatSlug",
                                    "description": "The slug of the parent category to retrieve used when category's slug provided instead of ID.",
                                    "required": false,
                                    "example": "automobiles",
                                    "type": "string",
                                    "enumValues": [],
                                    "exampleWasSpecified": true,
                                    "nullable": false,
                                    "custom": []
                                }
                            },
                            "cleanQueryParameters": {
                                "parentCatSlug": "automobiles"
                            },
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 404,
                                    "content": "{\"success\":false,\"message\":\"Section not found\",\"result\":null,\"error\":\"Section not found\"}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        },
                        {
                            "httpMethods": [
                                "GET"
                            ],
                            "uri": "api/captcha",
                            "metadata": {
                                "groupName": "Captcha",
                                "groupDescription": "",
                                "subgroup": "",
                                "subgroupDescription": "",
                                "title": "Get CAPTCHA",
                                "description": "Calling this endpoint is mandatory if the captcha is enabled in the Admin panel.\nReturn JSON data with an 'img' item that contains the captcha image to show and a 'key' item that contains the generated key to send for validation.",
                                "authenticated": false,
                                "custom": []
                            },
                            "headers": {
                                "Content-Type": "application/json",
                                "Accept": "application/json",
                                "Content-Language": "en",
                                "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
                                "X-AppType": "docs"
                            },
                            "urlParameters": [],
                            "cleanUrlParameters": [],
                            "queryParameters": [],
                            "cleanQueryParameters": [],
                            "bodyParameters": [],
                            "cleanBodyParameters": [],
                            "fileParameters": [],
                            "responses": [
                                {
                                    "status": 200,
                                    "content": "{\"success\":true,\"message\":null,\"result\":{\"sensitive\":false,\"key\":\"eyJpdiI6IjBid2xQRWlPMUYzZmR5VzNEci9seFE9PSIsInZhbHVlIjoiVStmbUxUaUFqcUFObTVscjZ2QkNaY0VNeUFLcGNYSThmQ0FtT2ZHU1hZaGkzbXRDZnBxZTFtUW1oeGwrQ08waWRPTUNtZ0x1Rjc0MmpBbnVMZ0VTZGsxYnVGWjhLMTR4VDRCL1dwWE0wR289IiwibWFjIjoiYWJlNzU5MDQzNzM4MTJiMzI1YmUwNGUzN2IwOGFlOGQ4YWQzODMzMTA0MTU4NjdmNjY3MzhjMTgzMDFmNWVkOCIsInRhZyI6IiJ9\",\"img\":\"data:image\\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAAAyCAYAAADbYdBlAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAPAklEQVR4nO2de2xb133HP\\/fy8s3Ll0RasmRJjmXZcew4dr06bhMna5oi6dYmRboMRVKgG4oOXYe1wJYNwzZ0K1AsWbph7TYMWIE90K3Jijy2Lkk7L+2SOOmS+BXHTmJHsh1Z1luUxMclL8n72B+SKT4lUrqU7I6ff8hzz7n3HIpf\\/h7nAQnH3zpt0qLFBiFu9ABa\\/P+mJcAWG0pLgC02lHUR4Be\\/enI9umlxHdJ0AQ6PpOnd4ml2Ny2uU1oCbLGhNF2AH4yk6WsJsEUNWhawxYbSEmCLDUVq5sNb4mscQc8SuvAD5NGf4EgNI2oZDMlDzteNGrqJRPfdZNr3b\\/QwLaMlwGsIuzJKzyu\\/gUMZKbku6hmkbAxP7DThoe+jRA8y+uE\\/Q3e1bdBIraOpLriVgDSAkWfL0S9XiK8a3qk36H351xG0zDoMrLk03QLe8ZH2Znbxc0N46AmcqeFC2UQg1XkHamgXmDqemRN4p48X6p3JD2g7\\/w\\/M3PQVS8dhzEyjvXkUMxEHQJD9SAcPI7ZHLO3nKi0XfI0QGH6upDx18+8wO\\/D50jaXnmXziT8plIOXnrVUgKZhkPnW1zHj8yXXtVPH8PzRo5b1U0zTXHBLfA1g5HEmhgpFXfIyu\\/2himbxrZ9B9fcXynZ1Gpsas2wYZmy6QnwAZjJuWR\\/ltAR4DeBQRhFMvVBWw7tBqP7VaJ6OkrKoKZaNw5iZsuxZ9dI0F3w9JiDHE1MciY3glxzIkp1DgQ4GPMGSNjlDRxJEREGwrF8pM1lSzns6a7YVjHxJ2bS5LBuHOT25ciOLaZoAr8cE5FImwavx8UK53e5iwBPk9fgEP5z+gLNKDM00ERH4eLibr\\/XstaRfKTNdUs67Ny3TdkkkJgKaM2zJGACMqYmadaZhACCI1jrNZQX47isvoswvxBh2pwuH24s3GMIf6SAQ3YRoq337alzw\\/FCa2DsK+bSBaZgIooDkFvF2OIjuk7E5l\\/\\/wqbEs6ckchmYiiGBziTj9Er7NTgTbyhYrqZdaF6do4\\/HhU\\/zP3GjJdQOTWF5t6LMth73MAmruaM22xWLVnWEQ125D9IuDZP76UVCrT+uYiTjKVx4GQIhswvMH30RwW+Pdlh394BuvoOWyVetskp1I3zY279hN7559JWJcbfx36YUYycvV+xv7WZz9X91SU0jvPzXFxOuJqnWhATd7vtS1Yv9JLVdSfmJikPFcumpbWbKv+Lx6qXDBNSygoGWwFcV8eU9tS9kI2rHXaoqvHHN6En3wHNLN1qzG1DQphqHXFB+AruWZGDrHyeef4kd\\/8xiXz54q1K1WgN13hGrWKWM5Rl+tzNAAZs6kaooPILSjvrGUW8Bi8QUkB9vdAW70hIjYXfhtjrqeWQ9Sdq6kbNjlqu0qLKWrtqVsBDNd\\/UdWu33Kkn5hGQuYa2BQairBsf94ktmxEW75xKdXnYBE9vqYPOZh9lz1voePzBLdL+OQl4adT+sMPj1dtT2A3OOk6\\/ZgzfpiygUI0O308lvde7hZbmI8W5QBA9hy1ac9KmJFiywgTmdDzQWndYlPTQFKDgcfefALiJKEaRjkMmnS83PEpyeIXRkmk6i0RheOvYYv1MbwSNuqE5D+ByIcf\\/wyRq7ytKieNbn4XIydn1v6ww8+PU0+pVe0BRAdAjsf6kAQ68tYlTIB9rlk\\/nLgNlyirYFP0Dh5z+aScvj9f0bZdCumrVQY5a5ac1mzOiHdvB\\/t1Z+CWccJXbcHcdsOS\\/qFZQXopHP7jTVvnBsf5d1XjjAxdK7k+rsvH2F45L5VzwG6Qnb67mnj4g9nqtZPnUzSechPoM\\/N9NspZk7Xdgf990Vwt9Ufq5XHgI\\/07mu6+ABSm++kbfB7hbJ35gQ3HHmARPfHyck3YIo27OlJ\\/CMvlNynLZMtN4K0ex\\/eP\\/87sk\\/+E9qJ1ysbeGU8v\\/8NAIRAEMHRmMVctu\\/V3hjq7OKjv\\/prvP3icwy+cbRwfUZx07lGb9V1W4Cpk0lSV6rEoCZceHaG3V\\/sZOiZ2q63bZeXjoP+hvotd8G9ruqxmNWkIwdIdt6JPP5S4ZpDGaH9\\/D8ue19+mWy5UQSfH1zu6nU2ETFikbsvY82TOnvu+iRuOVAoJ\\/Jh2n1r26UhiAIDvxKtObrUaJZT375S0\\/XaZRsDDzb25eimgWosPc8jSpZONq\\/E6MFHSXbe2dA9VlnAjWTNAhQEkbYtfYVyXAvR5m0sq6qGr8tJ9zLJQ3Zeq1k38GAUu68x15nUSq2fz8JplnowJTdXPvpthg\\/\\/PfN996MGtqPb\\/RiiA93uJxPajV6WHWvu5uxQWU9quuD5iTFmR4dRlSS6pmGTHLj9AfxtEYKdXdiKvqCrs+SwYAGjwVy1RzZM3z1hZs6kUGdri62czkN+2m70NtxXufuVbesrwKukowdJRw9Wret\\/\\/hPY8kkADJsbw+5bz6E1hQoBXnrrGO8dfbFqlnsV0SYR3dpPz579dO3cjaokC3VxLURfjzXzRKJdpP+BKGe\\/O1ZXe3e7nW2fXl0AmtRLfzSyhfN8ViGpS4mZlfHfRlIiwOP\\/+QOG3z6x4k2GrjExdI6JoXO4fH5ymQWXG9dCBKQ55PaVVx3qJbzDQ2Sfj+lTK4hahJ0PbUK0ry6qKHfBVq50WIFNnSnZMfPzEP9BUQw4+MbRusRXjppKYOgLLjKRD+O3zxLevMW6EbIwnSK5lxdW791h5C2rnyC91i2gPT1eUrZsEnqDkWBhWe2dl49UVHoCITr6d+L2+dG0HKnYDImZSZIz00DlpGVcCxGRszg9jcdgyw7SLeIISGiZ2rFl+561xUPXugX0Tr1ZUl5uy9b1hAQwMXQOPV\\/65Q4cuoPdv3gPQpWNkdm0wvjge1w8+TpzY0uHaBL5MAe6a8eOq+XSj2OkJ5ZPbIaemWLvb3avuo+NSkLEXJytP\\/kc81sfIN77qao7YRzJDwgP\\/kvJNTW0a13G12wkgNjo5ZKLbn+QPR\\/7ZM2bnB4vfXsP0Lf3AD\\/+28dQ5meBBQs4sNNa1xW\\/mOHKSyuLOn5RZfz1OJ23BlZsW42NcsH2zBQOZZTo2e8QPfsd8u4O1OBOcnIvpiDiSF3GN34U0Vgan+YIkuq4bV3G12wkgEzZOYB6Yzgtn0OZX9rJcW\\/03whv\\/rJlg9NUg3NPTFbz9lW5+FyMtpu8JZsV6iW1QS64fH3XnpnAnpmA8Ro3AJO3\\/B6ITRhfjc2mplb\\/NFijLHxTZTP++Tr3hs2NXaFYHYIgEuy0LgMeemaa7Fz9H15XDYb+fYZdn+9YuXEZ5RbQu04uWHeEyHm31HUe2BAdTO59hETPLzVlLEKt2D2toF8awra1v3p9EYZhkEgqxJOpwmuyrJxIpIgnFRLJ1IIAvcHSfXjTwxeJXRmmrbt32c6K4z8Af3RTyQT1Wpg+nWLqZHLlhmXMnE4R+5BC267GEqGKJGSdBKiGb+LCvc\\/hnH8fz\\/QxXPPv4UgOY89MImppTNFO3tOBEr2VuW0PojUx+ai13qshMPYX3yQZipJQMqi3303KFySRTBFPLAjpqsDSGRW\\/7CUg+wqvsuwl6Jfp6epYuO73EZC9+GXfggC7duzm\\/M9eKnRomgZH\\/\\/W77Dp8NzccOIRkrx4PlceO4a7lBVsv2bjG4FO1T2htOiCjqQaxs9VPhA0+PUVwW++KW\\/iLqUhCpPWdhskGB8gGB9avv1yORFIpslYp4pNpYrYoSWwkBBtJbCQFiTwCsqnjn9eQceB\\/623CBw7SHg6xra8bv+wrCM7nbWwXlAQQ2ryFzQM3Mfb+O4UKXctz5qcv8O7RF+nYtoP2nq2EOrsJRDuQFrfjlFtAq+b\\/zj85iZYxqtbZZRvb7mtHUw3mzqcx8pUBYi6uc+lHMfrvr3+ttDIJubamYeoho2YXrZGy6OZSiyJbeh9PLLwC+GVvkbXy4fd72dwRwTs+jN\\/QkdGRTQ03Zd9FKo7vU39oyZgL0fqHfvmzpL8\\/x\\/xE6bKXns8xeu4Mo+fOFK45vT6cHi+ZsgPLVghw9Og884O1Y9Dtn40guW1IbhtbPhZi+L9mq7Ybey1OdL+Mv6e+yek\\/veHDJLQcSS1PSs\\/jWId9gPWgpDOLcdOSpSqxWgUXqGCXbIvWyLvo5hasUk9355JL9C+8Oh3VLbxxaC+Zx\\/4YM77MylPOmrV+AKH4H9Vo+Rxvv\\/g8l06+Qd2p5yKSw8l9j3xjTYNRJnKc\\/KsRTK1635FbfNz48FKCYWgmxx+\\/jBqr3EoP4O10sP9rtQ8ybRRLVqnUOpVarYU6l8u5GDcVWaoiqxXwewuikyRrTtka83Pknvoe2qk3wSizfk4nzgcexn77XZb0JVT7T0mJ6UkunPhfrrx7urDOuxKR3m0cfvhLqx6IqZuc\\/PYIylj1X5fkFfmFR3ortlnNnk8vu1mh794wPXdZd3a2GtUyv0Si6H1KKcn8\\/PKSaIrjp2KrdbWNzeJzuI1gqir68EVY3Gwi+AOIPVubvyPaH9nEvnvuZ9899zM3Psrs6DDxqQkSM5OkZmfIKgrlFjLctTb3e+XofE3xAWz\\/TKTqHr\\/wDg9tu701E5Lh\\/54jul\\/GFWosptM0bclClWV65XFVtczP7\\/cRDMr0bunE7\\/OWZH7XC4LLhbSjuSsuK9rsUGcXobK5PUPXSMfnySopcmqGfFZdc\\/xn6iaCJFS6XxG6bgsSuaX29vj++yMkL6vkEpU7pE3NZOaMQvfhYCHziyeqzVEVu0SFfF5bslD+JUsVbQ\\/Rv3VtmV+LJaq64I3CNExySR09Z2DqC4f+nQFp2S1WmYxKPKkwP5dk4sIcc7EkSUUhqaZRsgppLYOiZUoyv6uB+NU5qkI8VeQa3W7rjh62qM2qo9ZXfncIySVic4lIbnHxvQ1psWxziXXVFyOIAs6AREpJL8RNcwrxyytkfnapIJyrogpEvGyRI3Vnfi02jjVZQE010FUDLWMsvtfRFsu6apTUJ1IKSSVFMpMmlVFI5TIo+TRZUUUVVDKoZIwMip7BZXPidbjxubzIbg+yd8kyBQIywZCPUJtMqM2Py3f9zde1WGJdXPAXfvvrNTM\\/n9uLz+HBY3fjsXnw2FwYWbOqiGuJ3GpL3GL9uKZiwNXSiCWuVX\\/4WysvtLewnv8DWVTwzOl2Q+cAAAAASUVORK5CYII=\"}}",
                                    "headers": {
                                        "content-type": "application/json; charset=UTF-8",
                                        "cache-control": "no-cache, private",
                                        "vary": "Origin"
                                    },
                                    "description": null,
                                    "custom": []
                                }
                            ],
                            "responseFields": [],
                            "auth": [],
                            "controller": null,
                            "method": null,
                            "route": null,
                            "custom": []
                        }
                    ]
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\GroupedEndpoints\\GroupedEndpointsFromApp.php",
                "line": 50,
                "function": "extractEndpointsInfoAndWriteToDisk",
                "class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
                "type": "->",
                "args": [
                    {},
                    true
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\knuckleswtf\\scribe\\src\\Commands\\GenerateDocumentation.php",
                "line": 55,
                "function": "get",
                "class": "Knuckles\\Scribe\\GroupedEndpoints\\GroupedEndpointsFromApp",
                "type": "->",
                "args": []
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
                "line": 36,
                "function": "handle",
                "class": "Knuckles\\Scribe\\Commands\\GenerateDocumentation",
                "type": "->",
                "args": [
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Util.php",
                "line": 43,
                "function": "Illuminate\\Container\\{closure}",
                "class": "Illuminate\\Container\\BoundMethod",
                "type": "::",
                "args": []
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
                "line": 96,
                "function": "unwrapIfClosure",
                "class": "Illuminate\\Container\\Util",
                "type": "::",
                "args": [
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\BoundMethod.php",
                "line": 35,
                "function": "callBoundMethod",
                "class": "Illuminate\\Container\\BoundMethod",
                "type": "::",
                "args": [
                    {
                        "contextual": [],
                        "contextualAttributes": []
                    },
                    [
                        {},
                        "handle"
                    ],
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Container\\Container.php",
                "line": 754,
                "function": "call",
                "class": "Illuminate\\Container\\BoundMethod",
                "type": "::",
                "args": [
                    {
                        "contextual": [],
                        "contextualAttributes": []
                    },
                    [
                        {},
                        "handle"
                    ],
                    [],
                    null
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
                "line": 211,
                "function": "call",
                "class": "Illuminate\\Container\\Container",
                "type": "->",
                "args": [
                    [
                        {},
                        "handle"
                    ]
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\symfony\\console\\Command\\Command.php",
                "line": 318,
                "function": "execute",
                "class": "Illuminate\\Console\\Command",
                "type": "->",
                "args": [
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Console\\Command.php",
                "line": 180,
                "function": "run",
                "class": "Symfony\\Component\\Console\\Command\\Command",
                "type": "->",
                "args": [
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\symfony\\console\\Application.php",
                "line": 1074,
                "function": "run",
                "class": "Illuminate\\Console\\Command",
                "type": "->",
                "args": [
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\symfony\\console\\Application.php",
                "line": 341,
                "function": "doRunCommand",
                "class": "Symfony\\Component\\Console\\Application",
                "type": "->",
                "args": [
                    {},
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\symfony\\console\\Application.php",
                "line": 192,
                "function": "doRun",
                "class": "Symfony\\Component\\Console\\Application",
                "type": "->",
                "args": [
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Console\\Kernel.php",
                "line": 197,
                "function": "run",
                "class": "Symfony\\Component\\Console\\Application",
                "type": "->",
                "args": [
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Application.php",
                "line": 1234,
                "function": "handle",
                "class": "Illuminate\\Foundation\\Console\\Kernel",
                "type": "->",
                "args": [
                    {},
                    {}
                ]
            },
            {
                "file": "D:\\Works\\InvestmentPlatform\\invweb\\artisan",
                "line": 13,
                "function": "handleCommand",
                "class": "Illuminate\\Foundation\\Application",
                "type": "->",
                "args": [
                    {}
                ]
            }
        ]
    }
}
 

Request      

GET api/ecosystem/consulting/requests

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

GET api/ecosystem/consulting/requests/{id}

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/consulting/requests/9" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consulting/requests/9"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consulting/requests/9';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consulting/requests/9'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "id": 9,
        "userId": 3,
        "startupId": 4,
        "category": {
            "id": "legal",
            "name": "LEGAL",
            "label": "Legal"
        },
        "sector": null,
        "sectorEn": null,
        "title": "عقد توظيف وتقاسم خيارات",
        "titleEn": null,
        "description": "طلب استشارة قانونية — بيانات تجريبية.",
        "descriptionEn": null,
        "coverImageUrl": null,
        "attachments": [],
        "budgetMin": "12000.00",
        "budgetMax": "45000.00",
        "currencyCode": "SAR",
        "status": {
            "id": "awarded",
            "name": "AWARDED",
            "label": "Awarded"
        },
        "deadlineAt": "2026-06-04T00:47:34.000000Z",
        "proposalsCount": 2,
        "client": {
            "id": 3,
            "name": "خالد الشمري"
        },
        "startup": {
            "id": 4,
            "name": "أفق اللوجستية"
        }
    }
}
 

Request      

GET api/ecosystem/consulting/requests/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the request. Example: 9

Create consulting request

requires authentication

Use category matching active consulting_service_catalog.code. financial uses financial_accounting commission rates. Multipart: gallery_images[], documents[].

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/consulting/requests" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --form "startup_id=47"\
    --form "category=legal"\
    --form "title=adipisci"\
    --form "budget_min=350.4"\
    --form "budget_max=3084.9"\
    --form "currency_code=ypt"\
    --form "deadline_at=2026-05-21T23:11:05"\
    --form "title_en=id"\
    --form "description=Quis enim non exercitationem vel qui repellendus."\
    --form "description_en=veniam"\
    --form "sector=esse"\
    --form "sector_en=qnqdpeixxkjqqeptza"\
    --form "cover_image=@C:\Users\Micros\AppData\Local\Temp\php63DC.tmp" \
    --form "gallery_images[]=@C:\Users\Micros\AppData\Local\Temp\php63DD.tmp" \
    --form "documents[]=@C:\Users\Micros\AppData\Local\Temp\php63DE.tmp" 
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consulting/requests"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

const body = new FormData();
body.append('startup_id', '47');
body.append('category', 'legal');
body.append('title', 'adipisci');
body.append('budget_min', '350.4');
body.append('budget_max', '3084.9');
body.append('currency_code', 'ypt');
body.append('deadline_at', '2026-05-21T23:11:05');
body.append('title_en', 'id');
body.append('description', 'Quis enim non exercitationem vel qui repellendus.');
body.append('description_en', 'veniam');
body.append('sector', 'esse');
body.append('sector_en', 'qnqdpeixxkjqqeptza');
body.append('cover_image', document.querySelector('input[name="cover_image"]').files[0]);
body.append('gallery_images[]', document.querySelector('input[name="gallery_images[]"]').files[0]);
body.append('documents[]', document.querySelector('input[name="documents[]"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consulting/requests';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'multipart/form-data',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'multipart' => [
            [
                'name' => 'startup_id',
                'contents' => '47'
            ],
            [
                'name' => 'category',
                'contents' => 'legal'
            ],
            [
                'name' => 'title',
                'contents' => 'adipisci'
            ],
            [
                'name' => 'budget_min',
                'contents' => '350.4'
            ],
            [
                'name' => 'budget_max',
                'contents' => '3084.9'
            ],
            [
                'name' => 'currency_code',
                'contents' => 'ypt'
            ],
            [
                'name' => 'deadline_at',
                'contents' => '2026-05-21T23:11:05'
            ],
            [
                'name' => 'title_en',
                'contents' => 'id'
            ],
            [
                'name' => 'description',
                'contents' => 'Quis enim non exercitationem vel qui repellendus.'
            ],
            [
                'name' => 'description_en',
                'contents' => 'veniam'
            ],
            [
                'name' => 'sector',
                'contents' => 'esse'
            ],
            [
                'name' => 'sector_en',
                'contents' => 'qnqdpeixxkjqqeptza'
            ],
            [
                'name' => 'cover_image',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\php63DC.tmp', 'r')
            ],
            [
                'name' => 'gallery_images[]',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\php63DD.tmp', 'r')
            ],
            [
                'name' => 'documents[]',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\php63DE.tmp', 'r')
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consulting/requests'
files = {
  'startup_id': (None, '47'),
  'category': (None, 'legal'),
  'title': (None, 'adipisci'),
  'budget_min': (None, '350.4'),
  'budget_max': (None, '3084.9'),
  'currency_code': (None, 'ypt'),
  'deadline_at': (None, '2026-05-21T23:11:05'),
  'title_en': (None, 'id'),
  'description': (None, 'Quis enim non exercitationem vel qui repellendus.'),
  'description_en': (None, 'veniam'),
  'sector': (None, 'esse'),
  'sector_en': (None, 'qnqdpeixxkjqqeptza'),
  'cover_image': open('C:\Users\Micros\AppData\Local\Temp\php63DC.tmp', 'rb'),
  'gallery_images[]': open('C:\Users\Micros\AppData\Local\Temp\php63DD.tmp', 'rb'),
  'documents[]': open('C:\Users\Micros\AppData\Local\Temp\php63DE.tmp', 'rb')}
payload = {
    "startup_id": 47,
    "category": "legal",
    "title": "adipisci",
    "budget_min": 350.4,
    "budget_max": 3084.9,
    "currency_code": "ypt",
    "deadline_at": "2026-05-21T23:11:05",
    "title_en": "id",
    "description": "Quis enim non exercitationem vel qui repellendus.",
    "description_en": "veniam",
    "sector": "esse",
    "sector_en": "qnqdpeixxkjqqeptza"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'multipart/form-data',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, files=files)
response.json()

Request      

POST api/ecosystem/consulting/requests

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: multipart/form-data

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

startup_id   integer  optional  

Must be at least 1. Example: 47

category   string   

Catalog code. Example: legal

title   string   

Example: adipisci

budget_min   number  optional  

optional Example: 350.4

budget_max   number  optional  

optional Example: 3084.9

currency_code   string  optional  

Must be 3 characters. Example: ypt

deadline_at   string  optional  

Must be a valid date. Example: 2026-05-21T23:11:05

title_en   string  optional  

optional Example: id

description   string   

Example: Quis enim non exercitationem vel qui repellendus.

description_en   string  optional  

optional Example: veniam

sector   string  optional  

optional Example: esse

sector_en   string  optional  

Must not be greater than 100 characters. Example: qnqdpeixxkjqqeptza

cover_image   file  optional  

Must be an image. Must not be greater than 5120 kilobytes. Example: C:\Users\Micros\AppData\Local\Temp\php63DC.tmp

gallery_images   file[]  optional  

Must be an image. Must not be greater than 5120 kilobytes.

documents   file[]  optional  

Must be a file. Must not be greater than 20480 kilobytes.

POST api/ecosystem/consulting/requests/{id}/cancel

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/consulting/requests/70359/cancel" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consulting/requests/70359/cancel"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consulting/requests/70359/cancel';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consulting/requests/70359/cancel'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/consulting/requests/{id}/cancel

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the request. Example: 70359

POST api/ecosystem/consulting/requests/{id}/proposals

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/consulting/requests/9/proposals" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"amount\": 1,
    \"currency_code\": \"grc\",
    \"delivery_days\": 10,
    \"proposal_text\": \"moscqohzznjmymocbgyndlqrl\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consulting/requests/9/proposals"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "amount": 1,
    "currency_code": "grc",
    "delivery_days": 10,
    "proposal_text": "moscqohzznjmymocbgyndlqrl"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consulting/requests/9/proposals';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'amount' => 1,
            'currency_code' => 'grc',
            'delivery_days' => 10,
            'proposal_text' => 'moscqohzznjmymocbgyndlqrl',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consulting/requests/9/proposals'
payload = {
    "amount": 1,
    "currency_code": "grc",
    "delivery_days": 10,
    "proposal_text": "moscqohzznjmymocbgyndlqrl"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/consulting/requests/{id}/proposals

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the request. Example: 9

Body Parameters

amount   number   

Must be at least 1. Example: 1

currency_code   string  optional  

Must be 3 characters. Example: grc

delivery_days   integer  optional  

Must be at least 1. Must not be greater than 365. Example: 10

proposal_text   string   

Must not be greater than 20000 characters. Example: moscqohzznjmymocbgyndlqrl

POST api/ecosystem/consulting/requests/{id}/proposals/{proposalId}/accept

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/consulting/requests/5/proposals/3757/accept" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consulting/requests/5/proposals/3757/accept"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consulting/requests/5/proposals/3757/accept';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consulting/requests/5/proposals/3757/accept'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/consulting/requests/{id}/proposals/{proposalId}/accept

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the request. Example: 5

proposalId   string   

Example: 3757

GET api/ecosystem/consulting/engagements

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/consulting/engagements" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consulting/engagements"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consulting/engagements';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consulting/engagements'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/consulting/engagements

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

GET api/ecosystem/consulting/engagements/{id}

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/consulting/engagements/150" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consulting/engagements/150"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consulting/engagements/150';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consulting/engagements/150'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/consulting/engagements/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the engagement. Example: 150

POST api/ecosystem/consulting/engagements/{id}/complete

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/consulting/engagements/44/complete" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consulting/engagements/44/complete"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consulting/engagements/44/complete';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consulting/engagements/44/complete'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/consulting/engagements/{id}/complete

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the engagement. Example: 44

POST api/ecosystem/consulting/engagements/{id}/review

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/consulting/engagements/4/review" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"rating\": 5,
    \"comment\": \"permrsu\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consulting/engagements/4/review"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "rating": 5,
    "comment": "permrsu"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consulting/engagements/4/review';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'rating' => 5,
            'comment' => 'permrsu',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consulting/engagements/4/review'
payload = {
    "rating": 5,
    "comment": "permrsu"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/consulting/engagements/{id}/review

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the engagement. Example: 4

Body Parameters

rating   integer   

Must be at least 1. Must not be greater than 5. Example: 5

comment   string  optional  

Must not be greater than 5000 characters. Example: permrsu

POST api/ecosystem/consulting/engagements/{id}/milestones/{milestoneId}/fund

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/consulting/engagements/953/milestones/751/fund" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consulting/engagements/953/milestones/751/fund"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consulting/engagements/953/milestones/751/fund';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consulting/engagements/953/milestones/751/fund'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/consulting/engagements/{id}/milestones/{milestoneId}/fund

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the engagement. Example: 953

milestoneId   string   

Example: 751

POST api/ecosystem/consulting/engagements/{id}/milestones/{milestoneId}/release

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/consulting/engagements/41/milestones/337461/release" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consulting/engagements/41/milestones/337461/release"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consulting/engagements/41/milestones/337461/release';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consulting/engagements/41/milestones/337461/release'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/consulting/engagements/{id}/milestones/{milestoneId}/release

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the engagement. Example: 41

milestoneId   string   

Example: 337461

Consultant & Providers

GET api/ecosystem/consultant/profile/{userId}

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/consultant/profile/836479" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consultant/profile/836479"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consultant/profile/836479';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consultant/profile/836479'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "id": 11,
        "userId": 836479,
        "bio": null,
        "specialties": [],
        "hourlyRate": null,
        "currencyCode": null,
        "ratingAvg": null,
        "reviewsCount": null,
        "isVerified": false,
        "user": null
    }
}
 

Request      

GET api/ecosystem/consultant/profile/{userId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

userId   string   

Example: 836479

GET api/ecosystem/consultant/profile

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/consultant/profile" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consultant/profile"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consultant/profile';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consultant/profile'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/consultant/profile

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

PUT api/ecosystem/consultant/profile

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/ecosystem/consultant/profile" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"bio\": \"en\",
    \"specialties\": [
        \"xpsyodnjgp\"
    ],
    \"hourly_rate\": 36,
    \"currency_code\": \"owb\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/consultant/profile"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "bio": "en",
    "specialties": [
        "xpsyodnjgp"
    ],
    "hourly_rate": 36,
    "currency_code": "owb"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/consultant/profile';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'bio' => 'en',
            'specialties' => [
                'xpsyodnjgp',
            ],
            'hourly_rate' => 36,
            'currency_code' => 'owb',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/consultant/profile'
payload = {
    "bio": "en",
    "specialties": [
        "xpsyodnjgp"
    ],
    "hourly_rate": 36,
    "currency_code": "owb"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Request      

PUT api/ecosystem/consultant/profile

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

bio   string  optional  

Must not be greater than 10000 characters. Example: en

specialties   string[]  optional  

Must not be greater than 100 characters.

hourly_rate   number  optional  

Must be at least 0. Example: 36

currency_code   string  optional  

Must be 3 characters. Example: owb

Investor

GET api/ecosystem/investor/profile

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/investor/profile" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/investor/profile"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/investor/profile';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/investor/profile'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/investor/profile

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

PUT api/ecosystem/investor/profile

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/ecosystem/investor/profile" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"investor_type\": \"family_office\",
    \"organization_name\": \"hqerajs\",
    \"bio\": \"nupkxonmykpmkuaybahr\",
    \"linkedin_url\": \"http:\\/\\/www.konopelski.com\\/velit-dolorem-sunt-qui\",
    \"ticket_min\": 11,
    \"ticket_max\": 32,
    \"currency_code\": \"dow\",
    \"is_accredited\": true,
    \"preferred_sectors\": [
        \"woqydvhnb\"
    ],
    \"preferred_stages\": [
        \"vxlejnykmlfcgcvrhjz\"
    ],
    \"preferred_country_code\": \"sw\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/investor/profile"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "investor_type": "family_office",
    "organization_name": "hqerajs",
    "bio": "nupkxonmykpmkuaybahr",
    "linkedin_url": "http:\/\/www.konopelski.com\/velit-dolorem-sunt-qui",
    "ticket_min": 11,
    "ticket_max": 32,
    "currency_code": "dow",
    "is_accredited": true,
    "preferred_sectors": [
        "woqydvhnb"
    ],
    "preferred_stages": [
        "vxlejnykmlfcgcvrhjz"
    ],
    "preferred_country_code": "sw"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/investor/profile';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'investor_type' => 'family_office',
            'organization_name' => 'hqerajs',
            'bio' => 'nupkxonmykpmkuaybahr',
            'linkedin_url' => 'http://www.konopelski.com/velit-dolorem-sunt-qui',
            'ticket_min' => 11,
            'ticket_max' => 32,
            'currency_code' => 'dow',
            'is_accredited' => true,
            'preferred_sectors' => [
                'woqydvhnb',
            ],
            'preferred_stages' => [
                'vxlejnykmlfcgcvrhjz',
            ],
            'preferred_country_code' => 'sw',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/investor/profile'
payload = {
    "investor_type": "family_office",
    "organization_name": "hqerajs",
    "bio": "nupkxonmykpmkuaybahr",
    "linkedin_url": "http:\/\/www.konopelski.com\/velit-dolorem-sunt-qui",
    "ticket_min": 11,
    "ticket_max": 32,
    "currency_code": "dow",
    "is_accredited": true,
    "preferred_sectors": [
        "woqydvhnb"
    ],
    "preferred_stages": [
        "vxlejnykmlfcgcvrhjz"
    ],
    "preferred_country_code": "sw"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Request      

PUT api/ecosystem/investor/profile

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

investor_type   string  optional  

Example: family_office

Must be one of:
  • angel
  • vc
  • family_office
  • corporate
  • syndicate
organization_name   string  optional  

Must not be greater than 191 characters. Example: hqerajs

bio   string  optional  

Must not be greater than 10000 characters. Example: nupkxonmykpmkuaybahr

linkedin_url   string  optional  

Must be a valid URL. Must not be greater than 255 characters. Example: http://www.konopelski.com/velit-dolorem-sunt-qui

ticket_min   number  optional  

Must be at least 0. Example: 11

ticket_max   number  optional  

Must be at least 0. Example: 32

currency_code   string  optional  

Must be 3 characters. Example: dow

is_accredited   boolean  optional  

Example: true

preferred_sectors   string[]  optional  

Must not be greater than 100 characters.

preferred_stages   string[]  optional  

Must not be greater than 32 characters.

preferred_country_code   string  optional  

Must be 2 characters. Example: sw

POST api/ecosystem/investor/profile/submit-kyc

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/investor/profile/submit-kyc" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/investor/profile/submit-kyc"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/investor/profile/submit-kyc';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/investor/profile/submit-kyc'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/investor/profile/submit-kyc

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

GET api/ecosystem/investor/portfolio

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/investor/portfolio" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/investor/portfolio"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/investor/portfolio';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/investor/portfolio'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/investor/portfolio

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

GET api/ecosystem/investor/matches

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/investor/matches" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/investor/matches"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/investor/matches';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/investor/matches'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/investor/matches

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

GET api/ecosystem/investor/watchlist

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/investor/watchlist" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/investor/watchlist"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/investor/watchlist';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/investor/watchlist'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/investor/watchlist

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

POST api/ecosystem/investor/watchlist/{startupId}

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/investor/watchlist/3" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"notes\": \"ulgmybuozumutvpqjcotdmua\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/investor/watchlist/3"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "notes": "ulgmybuozumutvpqjcotdmua"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/investor/watchlist/3';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'notes' => 'ulgmybuozumutvpqjcotdmua',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/investor/watchlist/3'
payload = {
    "notes": "ulgmybuozumutvpqjcotdmua"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/investor/watchlist/{startupId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 3

Body Parameters

notes   string  optional  

Must not be greater than 5000 characters. Example: ulgmybuozumutvpqjcotdmua

DELETE api/ecosystem/investor/watchlist/{startupId}

Example request:
curl --request DELETE \
    "http://127.0.0.1:8000/api/ecosystem/investor/watchlist/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/investor/watchlist/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/investor/watchlist/1';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/investor/watchlist/1'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('DELETE', url, headers=headers)
response.json()

Request      

DELETE api/ecosystem/investor/watchlist/{startupId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 1

GET api/ecosystem/investor/startups/{startupId}/access

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/investor/startups/6/access" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/investor/startups/6/access"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/investor/startups/6/access';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/investor/startups/6/access'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/investor/startups/{startupId}/access

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 6

POST api/ecosystem/investor/startups/{startupId}/access

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/investor/startups/4/access" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"intended_amount\": 87,
    \"accept_terms\": true
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/investor/startups/4/access"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "intended_amount": 87,
    "accept_terms": true
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/investor/startups/4/access';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'intended_amount' => 87,
            'accept_terms' => true,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/investor/startups/4/access'
payload = {
    "intended_amount": 87,
    "accept_terms": true
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/investor/startups/{startupId}/access

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 4

Body Parameters

intended_amount   number   

Must be at least 1. Example: 87

accept_terms   boolean   

Must be accepted. Example: true

POST api/ecosystem/investor/startups/{startupId}/access/confirm-payment

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/investor/startups/86102/access/confirm-payment" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/investor/startups/86102/access/confirm-payment"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/investor/startups/86102/access/confirm-payment';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/investor/startups/86102/access/confirm-payment'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/investor/startups/{startupId}/access/confirm-payment

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 86102

Syndicates

GET api/ecosystem/syndicates

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/syndicates" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/syndicates"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/syndicates';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/syndicates'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/syndicates

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

POST api/ecosystem/syndicates

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/syndicates" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"startup_id\": 6,
    \"funding_round_id\": 72,
    \"name\": \"gbhppmrssfofohwgpqxw\",
    \"description\": \"Suscipit quisquam maxime quia nihil tempore est.\",
    \"target_amount\": 43,
    \"carry_percent\": 3,
    \"minimum_commitment\": 46,
    \"maximum_commitment\": 43,
    \"currency_code\": \"cvj\",
    \"closes_at\": \"2026-05-21T23:11:33\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/syndicates"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "startup_id": 6,
    "funding_round_id": 72,
    "name": "gbhppmrssfofohwgpqxw",
    "description": "Suscipit quisquam maxime quia nihil tempore est.",
    "target_amount": 43,
    "carry_percent": 3,
    "minimum_commitment": 46,
    "maximum_commitment": 43,
    "currency_code": "cvj",
    "closes_at": "2026-05-21T23:11:33"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/syndicates';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'startup_id' => 6,
            'funding_round_id' => 72,
            'name' => 'gbhppmrssfofohwgpqxw',
            'description' => 'Suscipit quisquam maxime quia nihil tempore est.',
            'target_amount' => 43,
            'carry_percent' => 3,
            'minimum_commitment' => 46,
            'maximum_commitment' => 43,
            'currency_code' => 'cvj',
            'closes_at' => '2026-05-21T23:11:33',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/syndicates'
payload = {
    "startup_id": 6,
    "funding_round_id": 72,
    "name": "gbhppmrssfofohwgpqxw",
    "description": "Suscipit quisquam maxime quia nihil tempore est.",
    "target_amount": 43,
    "carry_percent": 3,
    "minimum_commitment": 46,
    "maximum_commitment": 43,
    "currency_code": "cvj",
    "closes_at": "2026-05-21T23:11:33"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/syndicates

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

startup_id   integer   

Must be at least 1. Example: 6

funding_round_id   integer  optional  

Must be at least 1. Example: 72

name   string   

Must not be greater than 191 characters. Example: gbhppmrssfofohwgpqxw

description   string  optional  

Must not be greater than 20000 characters. Example: Suscipit quisquam maxime quia nihil tempore est.

target_amount   number   

Must be at least 1. Example: 43

carry_percent   number  optional  

Must be at least 0. Must not be greater than 100. Example: 3

minimum_commitment   number  optional  

Must be at least 0. Example: 46

maximum_commitment   number  optional  

Must be at least 0. Example: 43

currency_code   string  optional  

Must be 3 characters. Example: cvj

closes_at   string  optional  

Must be a valid date. Example: 2026-05-21T23:11:33

GET api/ecosystem/syndicates/{id}

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/syndicates/20120" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/syndicates/20120"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/20120';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/20120'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/syndicates/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the syndicate. Example: 20120

PUT api/ecosystem/syndicates/{id}

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/ecosystem/syndicates/0999" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"name\": \"qyvfuqasrzijegsidouvlkr\",
    \"description\": \"Officiis adipisci consequuntur et voluptatibus est maiores laborum.\",
    \"target_amount\": 64,
    \"carry_percent\": 18,
    \"minimum_commitment\": 45,
    \"maximum_commitment\": 54,
    \"closes_at\": \"2026-05-21T23:11:33\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/syndicates/0999"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "name": "qyvfuqasrzijegsidouvlkr",
    "description": "Officiis adipisci consequuntur et voluptatibus est maiores laborum.",
    "target_amount": 64,
    "carry_percent": 18,
    "minimum_commitment": 45,
    "maximum_commitment": 54,
    "closes_at": "2026-05-21T23:11:33"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/0999';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'name' => 'qyvfuqasrzijegsidouvlkr',
            'description' => 'Officiis adipisci consequuntur et voluptatibus est maiores laborum.',
            'target_amount' => 64,
            'carry_percent' => 18,
            'minimum_commitment' => 45,
            'maximum_commitment' => 54,
            'closes_at' => '2026-05-21T23:11:33',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/0999'
payload = {
    "name": "qyvfuqasrzijegsidouvlkr",
    "description": "Officiis adipisci consequuntur et voluptatibus est maiores laborum.",
    "target_amount": 64,
    "carry_percent": 18,
    "minimum_commitment": 45,
    "maximum_commitment": 54,
    "closes_at": "2026-05-21T23:11:33"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Request      

PUT api/ecosystem/syndicates/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the syndicate. Example: 0999

Body Parameters

name   string  optional  

Must not be greater than 191 characters. Example: qyvfuqasrzijegsidouvlkr

description   string  optional  

Must not be greater than 20000 characters. Example: Officiis adipisci consequuntur et voluptatibus est maiores laborum.

target_amount   number  optional  

Must be at least 1. Example: 64

carry_percent   number  optional  

Must be at least 0. Must not be greater than 100. Example: 18

minimum_commitment   number  optional  

Must be at least 0. Example: 45

maximum_commitment   number  optional  

Must be at least 0. Example: 54

closes_at   string  optional  

Must be a valid date. Example: 2026-05-21T23:11:33

POST api/ecosystem/syndicates/{id}/open

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/syndicates/6/open" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/syndicates/6/open"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/6/open';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/6/open'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/syndicates/{id}/open

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the syndicate. Example: 6

POST api/ecosystem/syndicates/{id}/close

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/syndicates/892/close" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/syndicates/892/close"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/892/close';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/892/close'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/syndicates/{id}/close

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the syndicate. Example: 892

GET api/ecosystem/syndicates/{id}/dashboard

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/syndicates/44/dashboard" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/syndicates/44/dashboard"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/44/dashboard';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/44/dashboard'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/syndicates/{id}/dashboard

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the syndicate. Example: 44

POST api/ecosystem/syndicates/{id}/join

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/syndicates/2/join" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/syndicates/2/join"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/2/join';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/2/join'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/syndicates/{id}/join

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the syndicate. Example: 2

POST api/ecosystem/syndicates/{id}/leave

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/syndicates/38/leave" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/syndicates/38/leave"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/38/leave';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/38/leave'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/syndicates/{id}/leave

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the syndicate. Example: 38

GET api/ecosystem/syndicates/{id}/members

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/syndicates/9/members" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/syndicates/9/members"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/9/members';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/9/members'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/syndicates/{id}/members

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the syndicate. Example: 9

POST api/ecosystem/syndicates/{id}/members/{memberId}/approve

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/syndicates/3/members/1/approve" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/syndicates/3/members/1/approve"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/3/members/1/approve';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/3/members/1/approve'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/syndicates/{id}/members/{memberId}/approve

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the syndicate. Example: 3

memberId   string   

Example: 1

POST api/ecosystem/syndicates/{id}/members/{memberId}/reject

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/syndicates/8/members/2127/reject" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/syndicates/8/members/2127/reject"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/8/members/2127/reject';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/syndicates/8/members/2127/reject'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/syndicates/{id}/members/{memberId}/reject

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the syndicate. Example: 8

memberId   string   

Example: 2127

Escrow

POST api/ecosystem/escrow/commitments/{commitmentId}

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/escrow/commitments/8" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/escrow/commitments/8"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/escrow/commitments/8';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/escrow/commitments/8'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/escrow/commitments/{commitmentId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

commitmentId   string   

Example: 8

POST api/ecosystem/escrow/{id}/hold

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/escrow/83337090/hold" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/escrow/83337090/hold"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/escrow/83337090/hold';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/escrow/83337090/hold'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/escrow/{id}/hold

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the escrow. Example: 83337090

POST api/ecosystem/escrow/{id}/release

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/escrow/6/release" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/escrow/6/release"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/escrow/6/release';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/escrow/6/release'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/escrow/{id}/release

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the escrow. Example: 6

POST api/ecosystem/escrow/{id}/refund

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/escrow/87682133/refund" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/escrow/87682133/refund"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/escrow/87682133/refund';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/escrow/87682133/refund'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/escrow/{id}/refund

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the escrow. Example: 87682133

Admin

POST api/ecosystem/admin/investors/{userId}/approve-kyc

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/admin/investors/8/approve-kyc" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/admin/investors/8/approve-kyc"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/admin/investors/8/approve-kyc';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/admin/investors/8/approve-kyc'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/admin/investors/{userId}/approve-kyc

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

userId   string   

Example: 8

POST api/ecosystem/admin/investors/{userId}/reject-kyc

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/admin/investors/27/reject-kyc" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/admin/investors/27/reject-kyc"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/admin/investors/27/reject-kyc';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/admin/investors/27/reject-kyc'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/admin/investors/{userId}/reject-kyc

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

userId   string   

Example: 27

POST api/ecosystem/admin/startups/{id}/approve

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/admin/startups/12067/approve" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/admin/startups/12067/approve"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/admin/startups/12067/approve';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/admin/startups/12067/approve'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/admin/startups/{id}/approve

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the startup. Example: 12067

POST api/ecosystem/admin/startups/{id}/reject

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/admin/startups/2245/reject" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"rejection_reason\": \"tmie\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/admin/startups/2245/reject"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "rejection_reason": "tmie"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/admin/startups/2245/reject';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'rejection_reason' => 'tmie',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/admin/startups/2245/reject'
payload = {
    "rejection_reason": "tmie"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/admin/startups/{id}/reject

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the startup. Example: 2245

Body Parameters

rejection_reason   string   

Must not be greater than 2000 characters. Example: tmie

POST api/ecosystem/admin/startups/{id}/fundraising

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/admin/startups/36/fundraising" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/admin/startups/36/fundraising"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/admin/startups/36/fundraising';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/admin/startups/36/fundraising'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/admin/startups/{id}/fundraising

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the startup. Example: 36

POST api/ecosystem/admin/startups/{id}/close-round

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/admin/startups/1178/close-round" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/admin/startups/1178/close-round"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/admin/startups/1178/close-round';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/admin/startups/1178/close-round'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/admin/startups/{id}/close-round

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the startup. Example: 1178

POST api/ecosystem/admin/startups/{id}/suspend

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/admin/startups/9497062/suspend" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/admin/startups/9497062/suspend"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/admin/startups/9497062/suspend';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/admin/startups/9497062/suspend'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/admin/startups/{id}/suspend

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   string   

The ID of the startup. Example: 9497062

Authentication

Log in

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/auth/login" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"email\": \"user@demosite.com\",
    \"password\": \"123456\",
    \"auth_field\": \"email\",
    \"phone\": null,
    \"phone_country\": null,
    \"captcha_key\": \"provident\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/auth/login"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "email": "user@demosite.com",
    "password": "123456",
    "auth_field": "email",
    "phone": null,
    "phone_country": null,
    "captcha_key": "provident"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/auth/login';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'email' => 'user@demosite.com',
            'password' => '123456',
            'auth_field' => 'email',
            'phone' => null,
            'phone_country' => null,
            'captcha_key' => 'provident',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/auth/login'
payload = {
    "email": "user@demosite.com",
    "password": "123456",
    "auth_field": "email",
    "phone": null,
    "phone_country": null,
    "captcha_key": "provident"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/auth/login

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

email   string  optional  

The user's email address or username (Required when 'auth_field' value is 'email'). Example: user@demosite.com

password   string   

The user's password. Example: 123456

auth_field   string   

The user's auth field ('email' or 'phone'). Example: email

phone   string  optional  

The user's mobile phone number (Required when 'auth_field' value is 'phone').

phone_country   string   

The user's phone number's country code (Required when the 'phone' field is filled).

captcha_key   string  optional  

Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel). Example: provident

Log out

requires authentication

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/auth/logout/12" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/auth/logout/12"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/auth/logout/12';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/auth/logout/12'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (400):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "An error occurred and the logout failed.",
    "result": null
}
 

Request      

GET api/auth/logout/{userId}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

userId   integer  optional  

The ID of the user to logout. Example: 12

Forgot password

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/auth/password/forgot" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"email\": \"user@demosite.com\",
    \"auth_field\": \"email\",
    \"phone\": null,
    \"phone_country\": null,
    \"captcha_key\": \"beatae\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/auth/password/forgot"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "email": "user@demosite.com",
    "auth_field": "email",
    "phone": null,
    "phone_country": null,
    "captcha_key": "beatae"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/auth/password/forgot';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'email' => 'user@demosite.com',
            'auth_field' => 'email',
            'phone' => null,
            'phone_country' => null,
            'captcha_key' => 'beatae',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/auth/password/forgot'
payload = {
    "email": "user@demosite.com",
    "auth_field": "email",
    "phone": null,
    "phone_country": null,
    "captcha_key": "beatae"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/auth/password/forgot

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

email   string  optional  

The user's email address or username (Required when 'auth_field' value is 'email'). Example: user@demosite.com

auth_field   string   

The user's auth field ('email' or 'phone'). Example: email

phone   string  optional  

The user's mobile phone number (Required when 'auth_field' value is 'phone').

phone_country   string   

The user's phone number's country code (Required when the 'phone' field is filled).

captcha_key   string  optional  

Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel). Example: beatae

Reset password

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/auth/password/reset" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"email\": \"john.doe@domain.tld\",
    \"token\": \"dolorem\",
    \"phone_country\": null,
    \"password\": \"js!X07$z61hLA\",
    \"auth_field\": \"email\",
    \"phone\": null,
    \"password_confirmation\": \"js!X07$z61hLA\",
    \"captcha_key\": \"deserunt\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/auth/password/reset"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "email": "john.doe@domain.tld",
    "token": "dolorem",
    "phone_country": null,
    "password": "js!X07$z61hLA",
    "auth_field": "email",
    "phone": null,
    "password_confirmation": "js!X07$z61hLA",
    "captcha_key": "deserunt"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/auth/password/reset';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'email' => 'john.doe@domain.tld',
            'token' => 'dolorem',
            'phone_country' => null,
            'password' => 'js!X07$z61hLA',
            'auth_field' => 'email',
            'phone' => null,
            'password_confirmation' => 'js!X07$z61hLA',
            'captcha_key' => 'deserunt',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/auth/password/reset'
payload = {
    "email": "john.doe@domain.tld",
    "token": "dolorem",
    "phone_country": null,
    "password": "js!X07$z61hLA",
    "auth_field": "email",
    "phone": null,
    "password_confirmation": "js!X07$z61hLA",
    "captcha_key": "deserunt"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/auth/password/reset

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

email   string  optional  

The user's email address or username (Required when 'auth_field' value is 'email'). Example: john.doe@domain.tld

token   string   

Example: dolorem

phone_country   string   

The user's phone number's country code (Required when the 'phone' field is filled).

password   string   

The user's password. Example: js!X07$z61hLA

auth_field   string   

The user's auth field ('email' or 'phone'). Example: email

phone   string  optional  

The user's mobile phone number (Required when 'auth_field' value is 'phone').

password_confirmation   string   

The confirmation of the user's password. Example: js!X07$z61hLA

captcha_key   string  optional  

Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel). Example: deserunt

Captcha

Get CAPTCHA

Calling this endpoint is mandatory if the captcha is enabled in the Admin panel. Return JSON data with an 'img' item that contains the captcha image to show and a 'key' item that contains the generated key to send for validation.

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/captcha" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/captcha"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/captcha';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/captcha'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "sensitive": false,
        "key": "eyJpdiI6IkdHb3dZR21makZlTGhWbVpNNUsrN3c9PSIsInZhbHVlIjoiTklnZ1FZYWdtOTFsYVh2YUJrWFc4bUZwcXFTdnMwdy9SNU55NHJiMFYwRGplWCtLaTlnQ3diWUpMajJJN2Z6TlJKcUpsaHh4dmpzN0U5R2czTVV1NHVjaG0rVHhJa2dRRnltUTBEeGwvdGc9IiwibWFjIjoiYjliOTE2MDhlNDNlOTAzMzJiNmM5M2FlMDdjMzY4ZWQ1YWE1NDQxZWFmODA0MjhiNzg4YzE0MTcyNDQyNDUzNiIsInRhZyI6IiJ9",
        "img": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAAAyCAYAAADbYdBlAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAP2ElEQVR4nO2daXxb1ZmHn3u1y5ZtWZZ3y46TOIkTJ5ksZIUsZICYZTLAgKFQp3QBSmlLCwxTpjTQTsPQ/EoppbSd+QFuy+AWaBJo7A4E0kAIkD0mTpw9kVfZlldZ1no1H7xbsuNFSwb0fLv3nnvu39L/nuV9z5GFfYcO+4gSJUKIkRYQiG88dIRuhzfSMqKEgcvSgL97dj6PPXkca6sr0lKihJjL0oAAz20uYMvzZ6ip6460lCgh5LI1IMDmJ/J56VUzp87aIi0lSoi4rA0I8MQjM3irvIEjx9ojLSVKCJDtr1q6KVGvxJSpibSWEVl+RSJ/ebsej9dHVsblqzPK+JG9tXXTpl17mvjf9xuZNiWG2Bj5pCu9oaKMVo8To1KNXq4KgkxYvEDPzt1NtLS6yM2OCUqdUSKP0BcHPHu+i5LSaubOjuPWm9InXXG51UyZ1YxKlFFoMLFWnzHpOgH+tLUWrVbGjdemBqW+KJFFGB6IfmdXI2U7LWwsMjG/IH7SD6iyt1JmNfNRewPrDSauN2STptROqs63/9ZAt8PLbRuCY+ookcPPgAB2u5dXSs1Iko/iIhO62Ml3y07JS7nVzA7rRZKVGgoN2ayIn3grtnN3EzV13Wy8wzRpbVEiR0AD9lFR2UFJqZl1q4ysX5cStIcetVkps17ks64WCg0mChNNJCrU465n774Wjhxr55v3TAmatijhZVQD9rF1Rz0HjrSxsSiL6VNjg/bwDo+LMquZshYz0zXxrDeYWKQzjquOI5+1894HTXz/gWlB0xVsbC3NtDc24HE58Pl8aGLjiNEbiE1MirS0iDMmAwI0NTt5pbSapEQlxUVZiKIQVCGfdlgot5oxO22sTzRRaMgmRja2rv/kGRt/3lbLDx+eEVRNk0GSvJzdv5dzhz7B3tYSsIwmLp7M/HlMX3IVKu0Xc2Y/ZgP28fH+FkpKq7nzlkyuWm4IuqBGVzflLWbKrBdZqEum0GBiTkziJe+rru3m1y+dZ/MP84Ouabw4bJ18/HoJbQ21YyqvUKlZdNPtpE6bGWJllx/jNmAff3y9GnNNN8VFJjLSxj9+GwsftNVRZjXT7nGhEmV4fRI6mRKdXMHqhHSWDZvEWFtc/HjLSTY9lYdalKMWZSHRNRpup4Pdv3+RzubGcd0nCCJLb737C2fCCRsQ4ILZTkmpmVl5upCGRKqdNn5TW8lRm7X/3CxtAj+bttyvrLm9i59sOk3dV+qQCwI6mYKHsuaxYJxjy4ly5G/bOH/40wndq1Cpueb+R1BqJhem+v/EpHLBOSYtP3p0Jol6Jd9+rIKDR9qCpWsIWapYHs9egEIYkHvC3sa25vN+ZXfYzlP3lToAPD4f8XJV2MzntHdx4cj+gNc0cfHMuvIfKVh3A8lTpgcs43Y6OLN/TyglXnZMPsAHrFtlZOVSAyWlZvZ8aqW4yERCvCIYVfejlSlYrDOyt8PSf25vWwOv1Fex3pBNocGETqbgnZaaIfdtTA1fl9Zw5gQ+n+R3XhuvZ809D6JU9+Sxpy1eQcW7b3P2wN4AdZwk/6prQq61D7ckcc7RQY3DhtXjpN3jxOvzoZMpSFSoSVdpmRcbutl6QANKjQ1I9TWIxhQEYwqCQnnJitQqkXuLc6is6uSnz55i1XID118T3HTZWn3mEANqZDLemHMd5daL/PTCIbolD+5BBpgbY2BRXHhaP4BOa1PA86aCf+g3Xx95y9cENKCzqzMk2gZT67TxUbuF/R0WTtrbkRh5FBYvU/Lq7HUh0xLQgN6jB3Fve63/WIhPQDCmIhhT+k0p9h4L6qETkNkzdTyzaTbbyxv4t6eOU1yUxcw8XVDELo4zEitTYPO6gZ6AtkvycGNSDqsT0imuen9I+Q3GnKA8d6xI3sDbCJQa/xCLQhV4kYZsDC/7ZCipr+L1pnNjLp+tDs53NxIBDehrahh63N6Gr70NzlTh9xHHxiEmpwwyZyqy+Yv5p/WprFyaSElpNXs+baG4KAuFYnLLD2WCyJXxaZS3mIGeMd7+ziZWJaTzVvMFXNJA65ej1vGbuuOUWc2sN5hYEhe8TM5IKFSBl4o1V59n6qKhEyZrzcWAZWP0wQ9tDaZb8n9J9HIlUzXxZKpiSVKoEQXo9Lipc9kjY0DZijUIGSZ8TRakJgu+pgZ8zY0Q6A23dSDZOuDc6R5zCgKa514BwKBX8r37p7LvUCvfffwYt96UzpqVkxtPXK3P6DcgwMftFq7QJfNW84WBP0oQeDx7IWkqLQc6myi3mnmhtpLCRBOFBhNx8tC0Moas7IDn66qOce7gx+QuXAaA5PVwfPc7AcsaTbkh0daHdlhw/1+MuRSnRS70E9iA2bnIsv0/CKmleagpGy1IjQ34BgVcBb0BQTY0/nbFAj1XLNDz2ps1/GTLSb58hwnTBBeWzozRk6bUUu+yA3Cgs5Gtzefpkjz9Za5LNJGm6gllLNIZWaQz0uJ2UNZi5r5TH1AQk0ihIZt5scFtbZJMU9AmJAbMfBx95y0aL5xh+pKrOPHhTlrrqv3KKFRqsuctCqqm4ajFoV+5IAQ3ozVeZF+/975NYy0saLSIScnITFOQzSpAvmgZvlozUvWF/jLyBUuQFSwIeH9Bfhw52TH8/jUztfUOCvLjJiS60+PiWFfPl+zx+ajsau0fRqtFGY/nLPQLQmtkcubGGrjFmIsoCGxrPk+p5Qxen49cTRxyYfK7EwRBJC4pmepjRwJet1mbuFhxIKBBZQoly27bSFxS8qR1jMb57k4OdA5MlnLV8WGdqA1nUp+6a1spno92DVSWPxfF7RtHvceUoeHfH55BaoqaBx6pYN+h1nE/d60+c8jx4FnczcZc4i/Rxa6IT+U/cpfwVO4VtHgc3Hl8Jz+vPkqVffxahpM8ZTqLNxQBY29Z9GmZrPryfSRl5Uz6+ZdieBfcLblD/szRmLAB3e+8jefdvw5UNDUP1Te+69f9jsSalUn8YvMcKio7+PmLZ8e1BzhNpWWGNsHvvF6u5Gbj2MdQaUotX02bxZtzrmV+bBL/XVfFt059SLnVfOmbR6ClrppTH++GUUIbw4nRG9DE+f89oUA7rAu2ez0jlAwPEzKge8/7uLf/qf9YyMpBdf/DY4oXDkYhF/na3dkUXp3MlufPsL284dI39bImwT/1d0fK9Annf9fqM9gybRkPm+ZzztHBDRVl466j4UwVH/zht7Rb6sZ1X83xo/z9lRdw2EIfA9QMayDs0sQN2FzRRdUfLex5dOxhneGM24Ceg5/gLn25/1hISUP9rX9FmET+cmaejs1P5COXwaObKqmsuvQX4Qjwwa2IT5uwhj5y1DoeyJjDX+cWjuu+7o529m17DV+AMIcxeypLbr4LwyhdbFerlU/e/MN45Y6b4S1goLDMaAw2XXOFjaS5sax8ZuIz93Gl4ryVR3GVvAi+nu5FSExC9e0fIMQGJ1Z0/TWprFgyNKWnVvm/IzavmzcCBFP39u47iQQnPtyJ1+0/jIgzprL89o2IMjnpM2ZTf/oEh8v/grPLf7N9a1011cePkpU/L2Q6h48Bx9IFN1d00Vxho7mii6S5MSTNjWXmXcGJq465BfSeOYnzv54biAXGxaN68DHEBH1QhPSREK/gO/dOZdG8BB790TF27vZPb73eeLY/GzKYd1v8QxvhQJK81Bw/GvBawdWFiIO+9LTps1j71e+MGHA2VxwMicY+hodhRuqCR2rpZt6VQtLc4C2eHVMLKFVfxPniFuh7w7UxqB98DDE5dFsjF85PYOH8BP68rZYnn6miuMhEjkmL1e0YEnQezKnudqodNrLUwds2MBbaLfV4Pf4vhEKtCbjyRR0Ty+zV17Fv66t+16yDQlqhYLRJSChbupG4pAElSz2O5zeDo/dHglQqVN98GDE9K6TC+rhtQwa19Q5KSs2YMjVYl7YOWXCwJiGdXW0Dg/53W6u5J21WWLT1YW8LHL4Zbc+HMWdqwPNejxtHlw11TGheIo1MjsDAHD3nvIaqI5awmm4woxpQamnG+cvN0DdekStQ3fs9ZCOsZwsVGWlqfvBQHtt31/LBLyS0K7TYp9mJlyl5ILOAyq5WGt09L8iu1lo2ps5EDGOEXxphIC+Tj7wkbaTFCACSJ7ShkYLqBHIvxDDzoo6q7E7iV2rDarrBjGhAX2c7zuefxtcXtRdFlPc8gGzG7HBp8+Oz7Abq7raQ8FEC2tNaVm/QoxZlLItPYXtvt9zqcXGws4nFcaHNKAxGPkL4qdM68rL8jibLiNfkyuDnqgd3rzNzdFSY2th2ZU8K9eZZkcsFB5yE+LrtOH71n/gae+NygoDyS19HHuI85WhUdbXySYcFRGi7sg33wi5OveFm6456lg/bGxLuyUhCauDtCM4uG7UnPgt47eSgDNJgFGpN0JfkD59I7L26harsgVBXoJBWuPBrAX1uF85f/wxfzUA2QHHr3ciXXhlWYcN5ueHkkOPr5mRw97o8yndaeOnpOhKXx9KS0TNU2NfZSKfHhS5Eq16Go4mLJ86YSkeTfyD94I438LidZM2ejyiT43Y6qNrzHrVVgY0Zik1Jw+N0l1M2ZIgSn9eL87fPIp073X9OccMtKFaHb4l4IPZ3NFLZNZDAV4syNiTlALB+XQorlxp48uVKqFLStrINj0ri72113NhbJhzkLV/Nge2lfue9bheHdrzJ4fJtKDUaXHZ7wGX7PQhMW7witEIZeygmHPR3wT5JwvXyC0iDugz52vUo1v9zRIQNpmRY61doMA1p3XSxcu7cmI59up3kN5OJPRYb9m44K38e6aOMj32SF2eXbRTzwdRFy0bszoPJRILRoaLfgK7XXsJ7eF//Bdny1Shv+VJERA3mvZYaLjgGxisKQWRDkn/qZ16sAVmOh4Y7GxC7RWz/o+HDk+PbmztZFt5424S70NTpsyhYd32QFQVmuAEjOQYU9h067PM5HHR//2tDL6RnIaakDdkHIhhTg575uBQuyUuHx4VN8mDzuBAFkfyYwBpeqj/BnrYGOr1u3K2Q+2kK8zL1FBeFLz3n80mcO/gJJ/fuCphuG45CpSZv2Wrylq0Kg7oe3mg8y/7OJjSiDK0o7/n1iSAvzh0rwr5Dh31S9UUcTz8+tjsUSoSk5B5TJvea0piCmJ6JoJv87wkGC69Pwil5OXygk5JSM797dn5Yny95PTRdOIvl/Gk6mxuxd7ThcToQZXLkShUJqRkYsrLJzJ83Yhjni0BPC2jvwnu8Al9TQ+9yewtSowVsHWOuSH7tTShvui2EUqN8HpEDCNoY5IuW+V30ORy9e0AaBu0F6d0P0j70VxBEY/Qnc6OMn1FTcYJajZCVjRhgt5fP7RowZaMFcWpeyERG+fwy4Z/mEBTKnolKmBYlRPl8ctn/o5oon2+iBowSUaIGjBJRogaMElH+D0AG7C0UTJ0nAAAAAElFTkSuQmCC"
    }
}
 

Request      

GET api/captcha

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Categories

List categories

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/categories?parentId=0&nestedIncluded=0&embed=&sort=-lft&perPage=2&page=1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/categories"
);

const params = {
    "parentId": "0",
    "nestedIncluded": "0",
    "embed": "",
    "sort": "-lft",
    "perPage": "2",
    "page": "1",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/categories';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'parentId' => '0',
            'nestedIncluded' => '0',
            'embed' => '',
            'sort' => '-lft',
            'perPage' => '2',
            'page' => '1',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/categories'
params = {
  'parentId': '0',
  'nestedIncluded': '0',
  'embed': '',
  'sort': '-lft',
  'perPage': '2',
  'page': '1',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "data": [
            {
                "id": 122,
                "parent_id": null,
                "name": "Local Events",
                "slug": "local-events",
                "description": "",
                "hide_description": null,
                "image_path": "app/default/categories/fa-folder-default.png",
                "icon_class": "fa-regular fa-calendar-days",
                "seo_title": "",
                "seo_description": "",
                "seo_keywords": "",
                "lft": 144,
                "rgt": 158,
                "depth": 0,
                "type": "classified",
                "is_for_permanent": 0,
                "active": 1,
                "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png",
                "parentClosure": null
            },
            {
                "id": 114,
                "parent_id": null,
                "name": "Learning",
                "slug": "learning",
                "description": "",
                "hide_description": null,
                "image_path": "app/default/categories/fa-folder-default.png",
                "icon_class": "fa-solid fa-graduation-cap",
                "seo_title": "",
                "seo_description": "",
                "seo_keywords": "",
                "lft": 134,
                "rgt": 143,
                "depth": 0,
                "type": "classified",
                "is_for_permanent": 0,
                "active": 1,
                "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png",
                "parentClosure": null
            }
        ],
        "links": {
            "first": "http://127.0.0.1:8000/api/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=1",
            "last": "http://127.0.0.1:8000/api/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=6",
            "prev": null,
            "next": "http://127.0.0.1:8000/api/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2"
        },
        "meta": {
            "current_page": 1,
            "from": 1,
            "last_page": 6,
            "links": [
                {
                    "url": null,
                    "label": "&laquo; Previous",
                    "active": false
                },
                {
                    "url": "http://127.0.0.1:8000/api/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=1",
                    "label": "1",
                    "active": true
                },
                {
                    "url": "http://127.0.0.1:8000/api/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2",
                    "label": "2",
                    "active": false
                },
                {
                    "url": "http://127.0.0.1:8000/api/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=3",
                    "label": "3",
                    "active": false
                },
                {
                    "url": "http://127.0.0.1:8000/api/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=4",
                    "label": "4",
                    "active": false
                },
                {
                    "url": "http://127.0.0.1:8000/api/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=5",
                    "label": "5",
                    "active": false
                },
                {
                    "url": "http://127.0.0.1:8000/api/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=6",
                    "label": "6",
                    "active": false
                },
                {
                    "url": "http://127.0.0.1:8000/api/categories?parentId=0&nestedIncluded=0&sort=-lft&perPage=2&page=2",
                    "label": "Next &raquo;",
                    "active": false
                }
            ],
            "path": "http://127.0.0.1:8000/api/categories",
            "per_page": 2,
            "to": 2,
            "total": 12
        }
    }
}
 

Request      

GET api/categories

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Query Parameters

parentId   integer  optional  

The ID of the parent category of the sub categories to retrieve. Example: 0

nestedIncluded   integer  optional  

If parent ID is not provided, are nested entries will be included? - Possible values: 0,1. Example: 0

embed   string  optional  

The Comma-separated list of the category relationships for Eager Loading - Possible values: parent,children.

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: lft. Example: -lft

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

page   integer  optional  

Items page number. From 1 to ("total items" divided by "items per page value - perPage"). Example: 1

Get category

Get category by its unique slug or ID.

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/categories/cars?parentCatSlug=automobiles" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/categories/cars"
);

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

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/categories/cars';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'parentCatSlug' => 'automobiles',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/categories/cars'
params = {
  'parentCatSlug': 'automobiles',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "id": 2,
        "parent_id": 1,
        "name": "Cars",
        "slug": "cars",
        "description": "",
        "hide_description": null,
        "image_path": "app/default/categories/fa-folder-default.png",
        "icon_class": "bi bi-folder-fill",
        "seo_title": "",
        "seo_description": "",
        "seo_keywords": "",
        "lft": 2,
        "rgt": 3,
        "depth": 1,
        "type": "classified",
        "is_for_permanent": 0,
        "active": 1,
        "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png"
    }
}
 

Request      

GET api/categories/{slugOrId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

slugOrId   string   

The slug or ID of the category. Example: cars

Query Parameters

parentCatSlug   string  optional  

The slug of the parent category to retrieve used when category's slug provided instead of ID. Example: automobiles

List category's fields

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/categories/1/fields" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"language_code\": \"en\",
    \"post_id\": 1
}"
const url = new URL(
    "http://127.0.0.1:8000/api/categories/1/fields"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "language_code": "en",
    "post_id": 1
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/categories/1/fields';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'language_code' => 'en',
            'post_id' => 1,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/categories/1/fields'
payload = {
    "language_code": "en",
    "post_id": 1
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, json=payload)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": [
        {
            "id": 1,
            "belongs_to": "post",
            "name": "Car Brand",
            "type": "select",
            "max": null,
            "default_value": "",
            "required": 1,
            "use_as_filter": 1,
            "help": "",
            "active": 1,
            "options": [
                {
                    "id": 1,
                    "field_id": 1,
                    "value": "Toyota",
                    "parent_id": null,
                    "lft": 1,
                    "rgt": 2,
                    "depth": null
                },
                {
                    "id": 2,
                    "field_id": 1,
                    "value": "BMW",
                    "parent_id": null,
                    "lft": 3,
                    "rgt": 4,
                    "depth": null
                },
                {
                    "id": 3,
                    "field_id": 1,
                    "value": "Mercedes-Benz",
                    "parent_id": null,
                    "lft": 5,
                    "rgt": 6,
                    "depth": null
                },
                {
                    "id": 4,
                    "field_id": 1,
                    "value": "Chevrolet",
                    "parent_id": null,
                    "lft": 7,
                    "rgt": 8,
                    "depth": null
                },
                {
                    "id": 5,
                    "field_id": 1,
                    "value": "Cadillac",
                    "parent_id": null,
                    "lft": 9,
                    "rgt": 10,
                    "depth": null
                },
                {
                    "id": 6,
                    "field_id": 1,
                    "value": "Buick",
                    "parent_id": null,
                    "lft": 11,
                    "rgt": 12,
                    "depth": null
                },
                {
                    "id": 7,
                    "field_id": 1,
                    "value": "GMC",
                    "parent_id": null,
                    "lft": 13,
                    "rgt": 14,
                    "depth": null
                },
                {
                    "id": 8,
                    "field_id": 1,
                    "value": "Ford",
                    "parent_id": null,
                    "lft": 15,
                    "rgt": 16,
                    "depth": null
                },
                {
                    "id": 9,
                    "field_id": 1,
                    "value": "Chrysler",
                    "parent_id": null,
                    "lft": 17,
                    "rgt": 18,
                    "depth": null
                },
                {
                    "id": 10,
                    "field_id": 1,
                    "value": "Dodge",
                    "parent_id": null,
                    "lft": 19,
                    "rgt": 20,
                    "depth": null
                },
                {
                    "id": 11,
                    "field_id": 1,
                    "value": "Jeep",
                    "parent_id": null,
                    "lft": 21,
                    "rgt": 22,
                    "depth": null
                },
                {
                    "id": 12,
                    "field_id": 1,
                    "value": "Tesla",
                    "parent_id": null,
                    "lft": 23,
                    "rgt": 24,
                    "depth": null
                },
                {
                    "id": 13,
                    "field_id": 1,
                    "value": "Lexus",
                    "parent_id": null,
                    "lft": 25,
                    "rgt": 26,
                    "depth": null
                },
                {
                    "id": 14,
                    "field_id": 1,
                    "value": "Suzuki",
                    "parent_id": null,
                    "lft": 27,
                    "rgt": 28,
                    "depth": null
                },
                {
                    "id": 15,
                    "field_id": 1,
                    "value": "Mazda",
                    "parent_id": null,
                    "lft": 29,
                    "rgt": 30,
                    "depth": null
                },
                {
                    "id": 16,
                    "field_id": 1,
                    "value": "Honda",
                    "parent_id": null,
                    "lft": 31,
                    "rgt": 32,
                    "depth": null
                },
                {
                    "id": 17,
                    "field_id": 1,
                    "value": "Acura",
                    "parent_id": null,
                    "lft": 33,
                    "rgt": 34,
                    "depth": null
                },
                {
                    "id": 18,
                    "field_id": 1,
                    "value": "Mitsubishi",
                    "parent_id": null,
                    "lft": 35,
                    "rgt": 36,
                    "depth": null
                },
                {
                    "id": 19,
                    "field_id": 1,
                    "value": "Nissan",
                    "parent_id": null,
                    "lft": 37,
                    "rgt": 38,
                    "depth": null
                },
                {
                    "id": 20,
                    "field_id": 1,
                    "value": "Infiniti",
                    "parent_id": null,
                    "lft": 39,
                    "rgt": 40,
                    "depth": null
                },
                {
                    "id": 21,
                    "field_id": 1,
                    "value": "Audi",
                    "parent_id": null,
                    "lft": 41,
                    "rgt": 42,
                    "depth": null
                },
                {
                    "id": 22,
                    "field_id": 1,
                    "value": "Volkswagen",
                    "parent_id": null,
                    "lft": 43,
                    "rgt": 44,
                    "depth": null
                },
                {
                    "id": 23,
                    "field_id": 1,
                    "value": "Porsche",
                    "parent_id": null,
                    "lft": 45,
                    "rgt": 46,
                    "depth": null
                },
                {
                    "id": 24,
                    "field_id": 1,
                    "value": "Opel",
                    "parent_id": null,
                    "lft": 47,
                    "rgt": 48,
                    "depth": null
                },
                {
                    "id": 25,
                    "field_id": 1,
                    "value": "Jaguar",
                    "parent_id": null,
                    "lft": 49,
                    "rgt": 50,
                    "depth": null
                },
                {
                    "id": 26,
                    "field_id": 1,
                    "value": "Land Rover",
                    "parent_id": null,
                    "lft": 51,
                    "rgt": 52,
                    "depth": null
                },
                {
                    "id": 27,
                    "field_id": 1,
                    "value": "MINI",
                    "parent_id": null,
                    "lft": 53,
                    "rgt": 54,
                    "depth": null
                },
                {
                    "id": 28,
                    "field_id": 1,
                    "value": "Aston Martin",
                    "parent_id": null,
                    "lft": 55,
                    "rgt": 56,
                    "depth": null
                },
                {
                    "id": 29,
                    "field_id": 1,
                    "value": "Bentley",
                    "parent_id": null,
                    "lft": 57,
                    "rgt": 58,
                    "depth": null
                },
                {
                    "id": 30,
                    "field_id": 1,
                    "value": "Rolls-Royce",
                    "parent_id": null,
                    "lft": 59,
                    "rgt": 60,
                    "depth": null
                },
                {
                    "id": 31,
                    "field_id": 1,
                    "value": "McLaren",
                    "parent_id": null,
                    "lft": 61,
                    "rgt": 62,
                    "depth": null
                },
                {
                    "id": 32,
                    "field_id": 1,
                    "value": "Fiat",
                    "parent_id": null,
                    "lft": 63,
                    "rgt": 64,
                    "depth": null
                },
                {
                    "id": 33,
                    "field_id": 1,
                    "value": "Alfa Romeo",
                    "parent_id": null,
                    "lft": 65,
                    "rgt": 66,
                    "depth": null
                },
                {
                    "id": 34,
                    "field_id": 1,
                    "value": "Maserati",
                    "parent_id": null,
                    "lft": 67,
                    "rgt": 68,
                    "depth": null
                },
                {
                    "id": 35,
                    "field_id": 1,
                    "value": "Ferrari",
                    "parent_id": null,
                    "lft": 69,
                    "rgt": 70,
                    "depth": null
                },
                {
                    "id": 36,
                    "field_id": 1,
                    "value": "Lamborghini",
                    "parent_id": null,
                    "lft": 71,
                    "rgt": 72,
                    "depth": null
                },
                {
                    "id": 37,
                    "field_id": 1,
                    "value": "Pagani",
                    "parent_id": null,
                    "lft": 73,
                    "rgt": 74,
                    "depth": null
                },
                {
                    "id": 38,
                    "field_id": 1,
                    "value": "Lancia",
                    "parent_id": null,
                    "lft": 75,
                    "rgt": 76,
                    "depth": null
                },
                {
                    "id": 39,
                    "field_id": 1,
                    "value": "Renault",
                    "parent_id": null,
                    "lft": 77,
                    "rgt": 78,
                    "depth": null
                },
                {
                    "id": 40,
                    "field_id": 1,
                    "value": "Peugeot",
                    "parent_id": null,
                    "lft": 79,
                    "rgt": 80,
                    "depth": null
                },
                {
                    "id": 41,
                    "field_id": 1,
                    "value": "Citroen",
                    "parent_id": null,
                    "lft": 81,
                    "rgt": 82,
                    "depth": null
                },
                {
                    "id": 42,
                    "field_id": 1,
                    "value": "Bugatti",
                    "parent_id": null,
                    "lft": 83,
                    "rgt": 84,
                    "depth": null
                },
                {
                    "id": 43,
                    "field_id": 1,
                    "value": "Tata",
                    "parent_id": null,
                    "lft": 85,
                    "rgt": 86,
                    "depth": null
                },
                {
                    "id": 44,
                    "field_id": 1,
                    "value": "Hyundai",
                    "parent_id": null,
                    "lft": 87,
                    "rgt": 88,
                    "depth": null
                },
                {
                    "id": 45,
                    "field_id": 1,
                    "value": "Kia",
                    "parent_id": null,
                    "lft": 89,
                    "rgt": 90,
                    "depth": null
                },
                {
                    "id": 46,
                    "field_id": 1,
                    "value": "Daewoo",
                    "parent_id": null,
                    "lft": 91,
                    "rgt": 92,
                    "depth": null
                },
                {
                    "id": 47,
                    "field_id": 1,
                    "value": "Volvo",
                    "parent_id": null,
                    "lft": 93,
                    "rgt": 94,
                    "depth": null
                },
                {
                    "id": 48,
                    "field_id": 1,
                    "value": "Saab",
                    "parent_id": null,
                    "lft": 95,
                    "rgt": 96,
                    "depth": null
                },
                {
                    "id": 49,
                    "field_id": 1,
                    "value": "Lada",
                    "parent_id": null,
                    "lft": 97,
                    "rgt": 98,
                    "depth": null
                },
                {
                    "id": 50,
                    "field_id": 1,
                    "value": "Volga",
                    "parent_id": null,
                    "lft": 99,
                    "rgt": 100,
                    "depth": null
                },
                {
                    "id": 51,
                    "field_id": 1,
                    "value": "Zil",
                    "parent_id": null,
                    "lft": 101,
                    "rgt": 102,
                    "depth": null
                },
                {
                    "id": 52,
                    "field_id": 1,
                    "value": "GAZ",
                    "parent_id": null,
                    "lft": 103,
                    "rgt": 104,
                    "depth": null
                },
                {
                    "id": 53,
                    "field_id": 1,
                    "value": "Geely",
                    "parent_id": null,
                    "lft": 105,
                    "rgt": 106,
                    "depth": null
                },
                {
                    "id": 54,
                    "field_id": 1,
                    "value": "Chery",
                    "parent_id": null,
                    "lft": 107,
                    "rgt": 108,
                    "depth": null
                },
                {
                    "id": 55,
                    "field_id": 1,
                    "value": "Hongqi",
                    "parent_id": null,
                    "lft": 109,
                    "rgt": 110,
                    "depth": null
                },
                {
                    "id": 56,
                    "field_id": 1,
                    "value": "Dacia",
                    "parent_id": null,
                    "lft": 111,
                    "rgt": 112,
                    "depth": null
                },
                {
                    "id": 57,
                    "field_id": 1,
                    "value": "Daihatsu",
                    "parent_id": null,
                    "lft": 113,
                    "rgt": 114,
                    "depth": null
                },
                {
                    "id": 58,
                    "field_id": 1,
                    "value": "FIAT",
                    "parent_id": null,
                    "lft": 115,
                    "rgt": 116,
                    "depth": null
                },
                {
                    "id": 59,
                    "field_id": 1,
                    "value": "Genesis",
                    "parent_id": null,
                    "lft": 117,
                    "rgt": 118,
                    "depth": null
                },
                {
                    "id": 60,
                    "field_id": 1,
                    "value": "Isuzu",
                    "parent_id": null,
                    "lft": 119,
                    "rgt": 120,
                    "depth": null
                },
                {
                    "id": 61,
                    "field_id": 1,
                    "value": "Lincoln",
                    "parent_id": null,
                    "lft": 121,
                    "rgt": 122,
                    "depth": null
                },
                {
                    "id": 62,
                    "field_id": 1,
                    "value": "Lotus",
                    "parent_id": null,
                    "lft": 123,
                    "rgt": 124,
                    "depth": null
                },
                {
                    "id": 63,
                    "field_id": 1,
                    "value": "Ram",
                    "parent_id": null,
                    "lft": 125,
                    "rgt": 126,
                    "depth": null
                },
                {
                    "id": 64,
                    "field_id": 1,
                    "value": "Ram",
                    "parent_id": null,
                    "lft": 127,
                    "rgt": 128,
                    "depth": null
                },
                {
                    "id": 65,
                    "field_id": 1,
                    "value": "SEAT",
                    "parent_id": null,
                    "lft": 129,
                    "rgt": 130,
                    "depth": null
                },
                {
                    "id": 66,
                    "field_id": 1,
                    "value": "Skoda",
                    "parent_id": null,
                    "lft": 131,
                    "rgt": 132,
                    "depth": null
                },
                {
                    "id": 67,
                    "field_id": 1,
                    "value": "Smart",
                    "parent_id": null,
                    "lft": 133,
                    "rgt": 134,
                    "depth": null
                },
                {
                    "id": 68,
                    "field_id": 1,
                    "value": "Subaru",
                    "parent_id": null,
                    "lft": 135,
                    "rgt": 136,
                    "depth": null
                },
                {
                    "id": 69,
                    "field_id": 1,
                    "value": "Other",
                    "parent_id": null,
                    "lft": 137,
                    "rgt": 138,
                    "depth": null
                }
            ]
        },
        {
            "id": 2,
            "belongs_to": "post",
            "name": "Car Model",
            "type": "text",
            "max": null,
            "default_value": "",
            "required": 0,
            "use_as_filter": 0,
            "help": "",
            "active": 1,
            "options": []
        },
        {
            "id": 3,
            "belongs_to": "post",
            "name": "Year of registration",
            "type": "number",
            "max": null,
            "default_value": "",
            "required": 0,
            "use_as_filter": 0,
            "help": "",
            "active": 1,
            "options": []
        },
        {
            "id": 5,
            "belongs_to": "post",
            "name": "Fuel Type",
            "type": "select",
            "max": null,
            "default_value": "",
            "required": 0,
            "use_as_filter": 1,
            "help": "",
            "active": 1,
            "options": [
                {
                    "id": 70,
                    "field_id": 5,
                    "value": "Essence",
                    "parent_id": null,
                    "lft": 139,
                    "rgt": 140,
                    "depth": null
                },
                {
                    "id": 71,
                    "field_id": 5,
                    "value": "Diesel",
                    "parent_id": null,
                    "lft": 141,
                    "rgt": 142,
                    "depth": null
                }
            ]
        },
        {
            "id": 7,
            "belongs_to": "post",
            "name": "Transmission",
            "type": "radio",
            "max": null,
            "default_value": "",
            "required": 0,
            "use_as_filter": 1,
            "help": "",
            "active": 1,
            "options": [
                {
                    "id": 76,
                    "field_id": 7,
                    "value": "Automatic",
                    "parent_id": null,
                    "lft": 151,
                    "rgt": 152,
                    "depth": null
                },
                {
                    "id": 77,
                    "field_id": 7,
                    "value": "Manual",
                    "parent_id": null,
                    "lft": 153,
                    "rgt": 154,
                    "depth": null
                }
            ]
        },
        {
            "id": 8,
            "belongs_to": "post",
            "name": "Condition",
            "type": "select",
            "max": null,
            "default_value": "",
            "required": 0,
            "use_as_filter": 1,
            "help": "",
            "active": 1,
            "options": [
                {
                    "id": 78,
                    "field_id": 8,
                    "value": "New",
                    "parent_id": null,
                    "lft": 155,
                    "rgt": 156,
                    "depth": null
                },
                {
                    "id": 79,
                    "field_id": 8,
                    "value": "Used",
                    "parent_id": null,
                    "lft": 157,
                    "rgt": 158,
                    "depth": null
                }
            ]
        },
        {
            "id": 4,
            "belongs_to": "post",
            "name": "Mileage",
            "type": "text",
            "max": null,
            "default_value": "",
            "required": 0,
            "use_as_filter": 0,
            "help": "",
            "active": 1,
            "options": []
        },
        {
            "id": 6,
            "belongs_to": "post",
            "name": "Features",
            "type": "checkbox_multiple",
            "max": null,
            "default_value": "",
            "required": 0,
            "use_as_filter": 1,
            "help": "",
            "active": 1,
            "options": [
                {
                    "id": 72,
                    "field_id": 6,
                    "value": "Air Conditioner",
                    "parent_id": null,
                    "lft": 143,
                    "rgt": 144,
                    "depth": null
                },
                {
                    "id": 73,
                    "field_id": 6,
                    "value": "GPS",
                    "parent_id": null,
                    "lft": 145,
                    "rgt": 146,
                    "depth": null
                },
                {
                    "id": 74,
                    "field_id": 6,
                    "value": "Security System",
                    "parent_id": null,
                    "lft": 147,
                    "rgt": 148,
                    "depth": null
                },
                {
                    "id": 75,
                    "field_id": 6,
                    "value": "Spare Tire",
                    "parent_id": null,
                    "lft": 149,
                    "rgt": 150,
                    "depth": null
                }
            ]
        }
    ],
    "extra": {
        "errors": [],
        "oldInput": null
    }
}
 

Request      

GET api/categories/{id}/fields

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The ID of the category. Example: 1

Body Parameters

language_code   string  optional  

The code of the user's spoken language. Example: en

post_id   integer   

The unique ID of the post. Example: 1

List category's fields

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/categories/1/fields" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"language_code\": \"en\",
    \"post_id\": 1
}"
const url = new URL(
    "http://127.0.0.1:8000/api/categories/1/fields"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "language_code": "en",
    "post_id": 1
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/categories/1/fields';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'language_code' => 'en',
            'post_id' => 1,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/categories/1/fields'
payload = {
    "language_code": "en",
    "post_id": 1
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/categories/{id}/fields

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The ID of the category. Example: 1

Body Parameters

language_code   string  optional  

The code of the user's spoken language. Example: en

post_id   integer   

The unique ID of the post. Example: 1

Contact

Send Form

Send a message to the site owner.

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/contact" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"name\": \"omnis\",
    \"email\": \"john.doe@domain.tld\",
    \"phone\": \"architecto\",
    \"message\": \"Nesciunt porro possimus maiores voluptatibus accusamus velit qui aspernatur.\",
    \"country_code\": \"US\",
    \"country_name\": \"United Sates\",
    \"first_name\": \"John\",
    \"last_name\": \"Doe\",
    \"captcha_key\": \"quod\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/contact"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "name": "omnis",
    "email": "john.doe@domain.tld",
    "phone": "architecto",
    "message": "Nesciunt porro possimus maiores voluptatibus accusamus velit qui aspernatur.",
    "country_code": "US",
    "country_name": "United Sates",
    "first_name": "John",
    "last_name": "Doe",
    "captcha_key": "quod"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/contact';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'name' => 'omnis',
            'email' => 'john.doe@domain.tld',
            'phone' => 'architecto',
            'message' => 'Nesciunt porro possimus maiores voluptatibus accusamus velit qui aspernatur.',
            'country_code' => 'US',
            'country_name' => 'United Sates',
            'first_name' => 'John',
            'last_name' => 'Doe',
            'captcha_key' => 'quod',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/contact'
payload = {
    "name": "omnis",
    "email": "john.doe@domain.tld",
    "phone": "architecto",
    "message": "Nesciunt porro possimus maiores voluptatibus accusamus velit qui aspernatur.",
    "country_code": "US",
    "country_name": "United Sates",
    "first_name": "John",
    "last_name": "Doe",
    "captcha_key": "quod"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/contact

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

name   string   

Example: omnis

email   string   

The user's email address. Example: john.doe@domain.tld

phone   string   

Example: architecto

message   string   

The message to send. Example: Nesciunt porro possimus maiores voluptatibus accusamus velit qui aspernatur.

country_code   string   

The user's country code. Example: US

country_name   string   

The user's country name. Example: United Sates

first_name   string   

The user's first name. Example: John

last_name   string   

The user's last name. Example: Doe

captcha_key   string  optional  

Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel). Example: quod

Report post

Report abuse or issues

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/posts/20/report" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"report_type_id\": 2,
    \"email\": \"john.doe@domain.tld\",
    \"message\": \"Et sunt voluptatibus ducimus id assumenda sint.\",
    \"captcha_key\": \"minus\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/posts/20/report"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "report_type_id": 2,
    "email": "john.doe@domain.tld",
    "message": "Et sunt voluptatibus ducimus id assumenda sint.",
    "captcha_key": "minus"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/posts/20/report';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'report_type_id' => 2,
            'email' => 'john.doe@domain.tld',
            'message' => 'Et sunt voluptatibus ducimus id assumenda sint.',
            'captcha_key' => 'minus',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/posts/20/report'
payload = {
    "report_type_id": 2,
    "email": "john.doe@domain.tld",
    "message": "Et sunt voluptatibus ducimus id assumenda sint.",
    "captcha_key": "minus"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/posts/{id}/report

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The post ID. Example: 20

Body Parameters

report_type_id   integer   

The report type ID. Example: 2

email   string   

The user's email address. Example: john.doe@domain.tld

message   string   

The message to send. Example: Et sunt voluptatibus ducimus id assumenda sint.

captcha_key   string  optional  

Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel). Example: minus

Countries

List countries

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/countries?embed=&includeNonActive=&iti=%27onlyCountries%27&countryCode=&sort=-name&perPage=2" \
    --header "Content-Language: en" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/countries"
);

const params = {
    "embed": "",
    "includeNonActive": "0",
    "iti": "'onlyCountries'",
    "countryCode": "",
    "sort": "-name",
    "perPage": "2",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Language": "en",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/countries';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Language' => 'en',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
            'includeNonActive' => '0',
            'iti' => ''onlyCountries'',
            'countryCode' => '',
            'sort' => '-name',
            'perPage' => '2',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/countries'
params = {
  'embed': '',
  'includeNonActive': '0',
  'iti': ''onlyCountries'',
  'countryCode': '',
  'sort': '-name',
  'perPage': '2',
}
headers = {
  'Content-Language': 'en',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (400):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "No data available. Only \"i18n\" and \"onlyCountries\" are accepted for the \"iti\" parameter.",
    "result": null
}
 

Request      

GET api/countries

Headers

Content-Language      

Example: en

Content-Type      

Example: application/json

Accept      

Example: application/json

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Query Parameters

embed   string  optional  

Comma-separated list of the country relationships for Eager Loading - Possible values: currency,continent.

includeNonActive   boolean  optional  

Allow including the non-activated countries in the list. Example: false

iti   string  optional  

Allow getting option data for the phone number input. Possible value: 'i18n' or 'onlyCountries'. Example: 'onlyCountries'

countryCode   string  optional  

The code of the current country (Only when the 'iti' parameter is filled to true).

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: name. Example: -name

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

Get country

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/countries/DE?embed=currency" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/countries/DE"
);

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

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/countries/DE';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => 'currency',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/countries/DE'
params = {
  'embed': 'currency',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (404):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Country not found",
    "result": null,
    "error": "Country not found"
}
 

Request      

GET api/countries/{code}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

code   string   

The country's ISO 3166-1 code. Example: DE

Query Parameters

embed   string  optional  

Comma-separated list of the country relationships for Eager Loading - Possible values: currency. Example: currency

List admin. divisions (1)

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/countries/US/subAdmins1?embed=&q=&sort=-name&perPage=2&page=1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/countries/US/subAdmins1"
);

const params = {
    "embed": "",
    "q": "",
    "sort": "-name",
    "perPage": "2",
    "page": "1",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/countries/US/subAdmins1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
            'q' => '',
            'sort' => '-name',
            'perPage' => '2',
            'page' => '1',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/countries/US/subAdmins1'
params = {
  'embed': '',
  'q': '',
  'sort': '-name',
  'perPage': '2',
  'page': '1',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": "No administrative divisions found",
    "result": {
        "data": [],
        "links": {
            "first": "http://127.0.0.1:8000/api/countries/US/subAdmins1?page=1",
            "last": "http://127.0.0.1:8000/api/countries/US/subAdmins1?page=1",
            "prev": null,
            "next": null
        },
        "meta": {
            "current_page": 1,
            "from": null,
            "last_page": 1,
            "links": [
                {
                    "url": null,
                    "label": "&laquo; Previous",
                    "active": false
                },
                {
                    "url": "http://127.0.0.1:8000/api/countries/US/subAdmins1?page=1",
                    "label": "1",
                    "active": true
                },
                {
                    "url": null,
                    "label": "Next &raquo;",
                    "active": false
                }
            ],
            "path": "http://127.0.0.1:8000/api/countries/US/subAdmins1",
            "per_page": 2,
            "to": null,
            "total": 0
        }
    }
}
 

Request      

GET api/countries/{countryCode}/subAdmins1

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

countryCode   string  optional  

The country code of the country of the cities to retrieve. Example: US

Query Parameters

embed   string  optional  

Comma-separated list of the administrative division (1) relationships for Eager Loading - Possible values: country.

q   string  optional  

Get the administrative division list related to the entered keyword.

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: name. Example: -name

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

page   integer  optional  

Items page number. From 1 to ("total items" divided by "items per page value - perPage"). Example: 1

List admin. divisions (2)

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/countries/US/subAdmins2?embed=&admin1Code=&q=&sort=-name&perPage=2&page=1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/countries/US/subAdmins2"
);

const params = {
    "embed": "",
    "admin1Code": "",
    "q": "",
    "sort": "-name",
    "perPage": "2",
    "page": "1",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/countries/US/subAdmins2';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
            'admin1Code' => '',
            'q' => '',
            'sort' => '-name',
            'perPage' => '2',
            'page' => '1',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/countries/US/subAdmins2'
params = {
  'embed': '',
  'admin1Code': '',
  'q': '',
  'sort': '-name',
  'perPage': '2',
  'page': '1',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": "No administrative divisions found",
    "result": {
        "data": [],
        "links": {
            "first": "http://127.0.0.1:8000/api/countries/US/subAdmins2?page=1",
            "last": "http://127.0.0.1:8000/api/countries/US/subAdmins2?page=1",
            "prev": null,
            "next": null
        },
        "meta": {
            "current_page": 1,
            "from": null,
            "last_page": 1,
            "links": [
                {
                    "url": null,
                    "label": "&laquo; Previous",
                    "active": false
                },
                {
                    "url": "http://127.0.0.1:8000/api/countries/US/subAdmins2?page=1",
                    "label": "1",
                    "active": true
                },
                {
                    "url": null,
                    "label": "Next &raquo;",
                    "active": false
                }
            ],
            "path": "http://127.0.0.1:8000/api/countries/US/subAdmins2",
            "per_page": 2,
            "to": null,
            "total": 0
        }
    }
}
 

Request      

GET api/countries/{countryCode}/subAdmins2

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

countryCode   string  optional  

The country code of the country of the cities to retrieve. Example: US

Query Parameters

embed   string  optional  

Comma-separated list of the administrative division (2) relationships for Eager Loading - Possible values: country,subAdmin1.

admin1Code   string  optional  

Get the administrative division 2 list related to the administrative division 1 code.

q   string  optional  

Get the administrative division 2 list related to the entered keyword.

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: name. Example: -name

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

page   integer  optional  

Items page number. From 1 to ("total items" divided by "items per page value - perPage"). Example: 1

List cities

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/countries/US/cities?embed=&admin1Code=&admin2Code=&q=&autocomplete=&sort=-name&perPage=2&page=1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/countries/US/cities"
);

const params = {
    "embed": "",
    "admin1Code": "",
    "admin2Code": "",
    "q": "",
    "autocomplete": "0",
    "sort": "-name",
    "perPage": "2",
    "page": "1",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/countries/US/cities';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
            'admin1Code' => '',
            'admin2Code' => '',
            'q' => '',
            'autocomplete' => '0',
            'sort' => '-name',
            'perPage' => '2',
            'page' => '1',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/countries/US/cities'
params = {
  'embed': '',
  'admin1Code': '',
  'admin2Code': '',
  'q': '',
  'autocomplete': '0',
  'sort': '-name',
  'perPage': '2',
  'page': '1',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": "No cities found",
    "result": {
        "data": [],
        "links": {
            "first": "http://127.0.0.1:8000/api/countries/US/cities?page=1",
            "last": "http://127.0.0.1:8000/api/countries/US/cities?page=1",
            "prev": null,
            "next": null
        },
        "meta": {
            "current_page": 1,
            "from": null,
            "last_page": 1,
            "links": [
                {
                    "url": null,
                    "label": "&laquo; Previous",
                    "active": false
                },
                {
                    "url": "http://127.0.0.1:8000/api/countries/US/cities?page=1",
                    "label": "1",
                    "active": true
                },
                {
                    "url": null,
                    "label": "Next &raquo;",
                    "active": false
                }
            ],
            "path": "http://127.0.0.1:8000/api/countries/US/cities",
            "per_page": 2,
            "to": null,
            "total": 0
        }
    }
}
 

Request      

GET api/countries/{countryCode}/cities

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

countryCode   string  optional  

The country code of the country of the cities to retrieve. Example: US

Query Parameters

embed   string  optional  

Comma-separated list of the city relationships for Eager Loading - Possible values: country,subAdmin1,subAdmin2.

admin1Code   string  optional  

Get the city list related to the administrative division 1 code.

admin2Code   string  optional  

Get the city list related to the administrative division 2 code.

q   string  optional  

Get the city list related to the entered keyword.

autocomplete   boolean  optional  

Allow getting the city list in the autocomplete data format. Possible value: 0 or 1. Example: false

sort   string  optional  

string|array The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: name,population. Example: -name

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

page   integer  optional  

Items page number. From 1 to ("total items" divided by "items per page value - perPage"). Example: 1

Get admin. division (1)

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/subAdmins1/CH.VD?embed=" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/subAdmins1/CH.VD"
);

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

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/subAdmins1/CH.VD';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/subAdmins1/CH.VD'
params = {
  'embed': '',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": "No administrative divisions found",
    "result": {
        "data": [],
        "links": {
            "first": "http://127.0.0.1:8000/api/subAdmins1/CH.VD?page=1",
            "last": "http://127.0.0.1:8000/api/subAdmins1/CH.VD?page=1",
            "prev": null,
            "next": null
        },
        "meta": {
            "current_page": 1,
            "from": null,
            "last_page": 1,
            "links": [
                {
                    "url": null,
                    "label": "&laquo; Previous",
                    "active": false
                },
                {
                    "url": "http://127.0.0.1:8000/api/subAdmins1/CH.VD?page=1",
                    "label": "1",
                    "active": true
                },
                {
                    "url": null,
                    "label": "Next &raquo;",
                    "active": false
                }
            ],
            "path": "http://127.0.0.1:8000/api/subAdmins1/CH.VD",
            "per_page": 39,
            "to": null,
            "total": 0
        }
    }
}
 

Request      

GET api/subAdmins1/{code}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

code   string   

The administrative division (1)'s code. Example: CH.VD

Query Parameters

embed   string  optional  

Comma-separated list of the administrative division (1) relationships for Eager Loading - Possible values: country.

Get admin. division (2)

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/subAdmins2/CH.VD.2225?embed=" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/subAdmins2/CH.VD.2225"
);

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

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/subAdmins2/CH.VD.2225';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/subAdmins2/CH.VD.2225'
params = {
  'embed': '',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (404):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Administrative division not found",
    "result": null,
    "error": "Administrative division not found"
}
 

Request      

GET api/subAdmins2/{code}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

code   string   

The administrative division (2)'s code. Example: CH.VD.2225

Query Parameters

embed   string  optional  

Comma-separated list of the administrative division (2) relationships for Eager Loading - Possible values: country,subAdmin1.

Get city

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/cities/12544?embed=country" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/cities/12544"
);

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

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/cities/12544';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => 'country',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/cities/12544'
params = {
  'embed': 'country',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (404):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "City not found",
    "result": null,
    "error": "City not found"
}
 

Request      

GET api/cities/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The city's ID. Example: 12544

Query Parameters

embed   string  optional  

Comma-separated list of the city relationships for Eager Loading - Possible values: country,subAdmin1,subAdmin2. Example: country

Ecosystem messaging

GET api/ecosystem/messages

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/messages" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/messages"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/messages';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/messages'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/messages

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

GET api/ecosystem/messages/startup/{startupId}

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/messages/startup/8" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/messages/startup/8"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/messages/startup/8';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/messages/startup/8'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/messages/startup/{startupId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

startupId   string   

Example: 8

GET api/ecosystem/messages/{conversationId}

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/messages/203" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/messages/203"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/messages/203';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/messages/203'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/messages/{conversationId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

conversationId   string   

Example: 203

POST api/ecosystem/messages/{conversationId}

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/messages/0" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"body\": \"qlkhquxapxrhiubwmx\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/messages/0"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "body": "qlkhquxapxrhiubwmx"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/messages/0';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'body' => 'qlkhquxapxrhiubwmx',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/messages/0'
payload = {
    "body": "qlkhquxapxrhiubwmx"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/messages/{conversationId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

conversationId   string   

Example: 0

Body Parameters

body   string   

Must not be greater than 5000 characters. Example: qlkhquxapxrhiubwmx

Endpoints

GET api/ecosystem/health

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/health" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/health"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/health';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/health'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
vary: Origin
 

{
    "success": true,
    "status": "ok",
    "service": "ecosystem-api",
    "timestamp": "2026-05-21T23:10:41+00:00"
}
 

Request      

GET api/ecosystem/health

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

GET api/ecosystem/meta

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/meta" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/meta"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/meta';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/meta'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
vary: Origin
 

{
    "success": true,
    "result": {
        "api_version": "1.0",
        "openapi": "http://127.0.0.1:8000/docs/api",
        "sitemap": "http://127.0.0.1:8000/ecosystem-sitemap.xml",
        "timestamps_utc": true,
        "data_retention_years": 7,
        "supported_currencies": [
            "SAR",
            "AED",
            "USD",
            "EUR",
            "GBP",
            "KWD",
            "BHD",
            "OMR",
            "QAR"
        ],
        "default_currency": "SAR",
        "supported_locales": [
            "ar",
            "en"
        ],
        "payment_driver": "demo",
        "payment_gateways": [
            "demo",
            "paypal",
            "stripe",
            "hyperpay"
        ],
        "active_gateway": "paypal",
        "auth": "sanctum",
        "privacy": {
            "export": "GET /api/ecosystem/privacy/export",
            "status": "GET /api/ecosystem/privacy/status",
            "hide": "POST /api/ecosystem/privacy/hide",
            "restore": "POST /api/ecosystem/privacy/restore",
            "web_export": "http://127.0.0.1:8000/account/ecosystem/privacy/export",
            "web_visibility": "http://127.0.0.1:8000/account/ecosystem/privacy/visibility"
        }
    }
}
 

Request      

GET api/ecosystem/meta

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

GET api/ecosystem/privacy/status

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/privacy/status" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/privacy/status"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/privacy/status';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/privacy/status'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/privacy/status

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

GET api/ecosystem/privacy/export

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/privacy/export" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/privacy/export"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/privacy/export';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/privacy/export'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/privacy/export

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

POST api/ecosystem/privacy/hide

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/privacy/hide" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"password\": \"OXR\\\\YDdg5l3|v.\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/privacy/hide"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "password": "OXR\\YDdg5l3|v."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/privacy/hide';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'password' => 'OXR\\YDdg5l3|v.',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/privacy/hide'
payload = {
    "password": "OXR\\YDdg5l3|v."
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/privacy/hide

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

password   string   

Example: OXR\YDdg5l3|v.

POST api/ecosystem/privacy/restore

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/privacy/restore" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/privacy/restore"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/privacy/restore';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/privacy/restore'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/privacy/restore

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

GET api/ecosystem/provider/subscription

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/provider/subscription" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/provider/subscription"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/provider/subscription';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/provider/subscription'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/ecosystem/provider/subscription

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

POST api/ecosystem/provider/subscription/accept-terms

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/provider/subscription/accept-terms" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"accept_terms\": true
}"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/provider/subscription/accept-terms"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "accept_terms": true
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/provider/subscription/accept-terms';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'accept_terms' => true,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/provider/subscription/accept-terms'
payload = {
    "accept_terms": true
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/ecosystem/provider/subscription/accept-terms

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

accept_terms   boolean   

Must be accepted. Example: true

POST api/ecosystem/provider/subscription/confirm-payment

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/provider/subscription/confirm-payment" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/provider/subscription/confirm-payment"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/provider/subscription/confirm-payment';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/provider/subscription/confirm-payment'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/provider/subscription/confirm-payment

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

POST api/ecosystem/provider/subscription/publish-services

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/ecosystem/provider/subscription/publish-services" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/provider/subscription/publish-services"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/provider/subscription/publish-services';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/provider/subscription/publish-services'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/ecosystem/provider/subscription/publish-services

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Guide

GCC Startup Investment Platform (/api/ecosystem).

Interactive endpoint list below is auto-generated from Laravel routes. This section is a static integration guide in English.

Arabic Markdown: docs/api/INVESTMENT_PLATFORM_AR.md

Overview

Platform overview

Modules

Base URL

{baseUrl}/api/ecosystem

Auth

Use Authorization: Bearer {sanctum_token} on protected routes.

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/_docs/overview"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/_docs/overview"
);

fetch(url, {
    method: "GET",
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/_docs/overview';
$response = $client->get($url);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/_docs/overview'
response = requests.request('GET', url, )
response.json()

Example response (200, Documentation only):


{
    "note": "Not a live API route"
}
 

Request      

GET api/ecosystem/_docs/overview

Commissions & payments

Commissions and online payments

When a client pays online, the platform records an ecosystem_service_order:

Field Description
gross_amount Total paid
provider_amount Share for service provider
platform_amount Platform share
service_type consulting, feasibility, or financial_accounting

Admin UI: GET/PUT /admin/ecosystem/commissions

API triggers:

category=financial on consulting requests uses financial_accounting rates.

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/_docs/commissions"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/_docs/commissions"
);

fetch(url, {
    method: "GET",
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/_docs/commissions';
$response = $client->get($url);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/_docs/commissions'
response = requests.request('GET', url, )
response.json()

Example response (200, Documentation only):


{}
 

Request      

GET api/ecosystem/_docs/commissions

Bilingual & attachments

Bilingual fields and file uploads

Bilingual (AR / EN)

Catalog, packages, consulting requests, and feasibility studies support Arabic and English text fields (*_en columns).

Attachments

ecosystem_attachments polymorphic table (image, document).

Multipart fields:

Load in API: eager-load ecosystemAttachments on resources.

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/ecosystem/_docs/bilingual-attachments"
const url = new URL(
    "http://127.0.0.1:8000/api/ecosystem/_docs/bilingual-attachments"
);

fetch(url, {
    method: "GET",
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/ecosystem/_docs/bilingual-attachments';
$response = $client->get($url);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/ecosystem/_docs/bilingual-attachments'
response = requests.request('GET', url, )
response.json()

Example response (200, Documentation only):


{}
 

Request      

GET api/ecosystem/_docs/bilingual-attachments

Home

List sections

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/sections" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/sections"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/sections';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/sections'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "data": {
            "search_form": {
                "belongs_to": "home",
                "key": "search_form",
                "data": [],
                "options": {
                    "enable_extended_form_area": "1",
                    "background_image_path": null,
                    "background_image_darken": 0,
                    "title_en": "Sell and Buy near you",
                    "sub_title_en": "Simple, fast and efficient",
                    "title_fr": "Vendre et acheter près de chez vous",
                    "sub_title_fr": "Simple, rapide et efficace",
                    "title_es": "Vender y comprar cerca de usted",
                    "sub_title_es": "Simple, rápido y eficiente",
                    "title_ar": "بيع وشراء بالقرب منك",
                    "sub_title_ar": "بسيطة وسريعة وفعالة",
                    "title_pt": "Vender e comprar perto de si",
                    "sub_title_pt": "Simples, Rápido e Eficiente",
                    "title_de": "Verkaufen und Kaufen in Ihrer Nähe",
                    "sub_title_de": "Einfach, schnell und effizient",
                    "title_it": "Vendi e compra vicino a te",
                    "sub_title_it": "Semplice, veloce ed efficiente",
                    "title_tr": "Size yakın satıp satın alın",
                    "sub_title_tr": "Basit, hızlı ve verimli",
                    "title_ru": "Продавайте и покупайте рядом с вами",
                    "sub_title_ru": "Просто, быстро и эффективно",
                    "title_hi": "अपने पास बेचें और खरीदें",
                    "sub_title_hi": "सरल, तेज और कुशल",
                    "title_bn": "আপনার কাছাকাছি বিক্রি করুন এবং কিনুন",
                    "sub_title_bn": "সহজ, দ্রুত এবং দক্ষ",
                    "title_zh": "在您附近买卖",
                    "sub_title_zh": "简单,快速,高效",
                    "title_ja": "お近くの売買",
                    "sub_title_ja": "シンプル、迅速かつ効率的",
                    "title_he": "למכור ולקנות בקרבתך",
                    "sub_title_he": "פשוט, מהיר ויעיל",
                    "title_th": "ขายและซื้อใกล้บ้านคุณ",
                    "sub_title_th": "ง่ายรวดเร็วและมีประสิทธิภาพ",
                    "title_ro": "Vinde și Cumpără inteligent",
                    "sub_title_ro": "Simplu, rapid și eficient!",
                    "title_ka": "გაყიდვა და შეძენა ახლოს თქვენ",
                    "sub_title_ka": "მარტივი, სწრაფი და ეფექტური",
                    "background_image_url": null
                },
                "lft": 0
            },
            "categories": {
                "belongs_to": "home",
                "key": "categories",
                "data": {
                    "categories": {
                        "1": {
                            "id": 1,
                            "parent_id": null,
                            "name": "Automobiles",
                            "slug": "automobiles",
                            "description": "",
                            "hide_description": null,
                            "image_path": "app/default/categories/fa-folder-default.png",
                            "icon_class": "fa-solid fa-car",
                            "seo_title": "",
                            "seo_description": "",
                            "seo_keywords": "",
                            "lft": 1,
                            "rgt": 10,
                            "depth": 0,
                            "type": "classified",
                            "is_for_permanent": 0,
                            "active": 1,
                            "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png"
                        },
                        "9": {
                            "id": 9,
                            "parent_id": null,
                            "name": "Phones & Tablets",
                            "slug": "phones-and-tablets",
                            "description": "",
                            "hide_description": null,
                            "image_path": "app/default/categories/fa-folder-default.png",
                            "icon_class": "fa-solid fa-mobile-screen-button",
                            "seo_title": "",
                            "seo_description": "",
                            "seo_keywords": "",
                            "lft": 11,
                            "rgt": 17,
                            "depth": 0,
                            "type": "classified",
                            "is_for_permanent": 0,
                            "active": 1,
                            "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png"
                        },
                        "14": {
                            "id": 14,
                            "parent_id": null,
                            "name": "Electronics",
                            "slug": "electronics",
                            "description": "",
                            "hide_description": null,
                            "image_path": "app/default/categories/fa-folder-default.png",
                            "icon_class": "fa-solid fa-laptop",
                            "seo_title": "",
                            "seo_description": "",
                            "seo_keywords": "",
                            "lft": 18,
                            "rgt": 35,
                            "depth": 0,
                            "type": "classified",
                            "is_for_permanent": 0,
                            "active": 1,
                            "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png"
                        },
                        "30": {
                            "id": 30,
                            "parent_id": null,
                            "name": "Furniture & Appliances",
                            "slug": "furniture-appliances",
                            "description": "",
                            "hide_description": null,
                            "image_path": "app/default/categories/fa-folder-default.png",
                            "icon_class": "fa-solid fa-couch",
                            "seo_title": "",
                            "seo_description": "",
                            "seo_keywords": "",
                            "lft": 36,
                            "rgt": 44,
                            "depth": 0,
                            "type": "classified",
                            "is_for_permanent": 0,
                            "active": 1,
                            "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png"
                        },
                        "37": {
                            "id": 37,
                            "parent_id": null,
                            "name": "Real estate",
                            "slug": "real-estate",
                            "description": "",
                            "hide_description": null,
                            "image_path": "app/default/categories/fa-folder-default.png",
                            "icon_class": "fa-solid fa-house",
                            "seo_title": "",
                            "seo_description": "",
                            "seo_keywords": "",
                            "lft": 45,
                            "rgt": 55,
                            "depth": 0,
                            "type": "classified",
                            "is_for_permanent": 0,
                            "active": 1,
                            "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png"
                        },
                        "46": {
                            "id": 46,
                            "parent_id": null,
                            "name": "Animals & Pets",
                            "slug": "animals-and-pets",
                            "description": "",
                            "hide_description": null,
                            "image_path": "app/default/categories/fa-folder-default.png",
                            "icon_class": "fa-solid fa-paw",
                            "seo_title": "",
                            "seo_description": "",
                            "seo_keywords": "",
                            "lft": 56,
                            "rgt": 65,
                            "depth": 0,
                            "type": "classified",
                            "is_for_permanent": 0,
                            "active": 1,
                            "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png"
                        },
                        "54": {
                            "id": 54,
                            "parent_id": null,
                            "name": "Fashion",
                            "slug": "fashion",
                            "description": "",
                            "hide_description": null,
                            "image_path": "app/default/categories/fa-folder-default.png",
                            "icon_class": "fa-solid fa-shirt",
                            "seo_title": "",
                            "seo_description": "",
                            "seo_keywords": "",
                            "lft": 66,
                            "rgt": 75,
                            "depth": 0,
                            "type": "classified",
                            "is_for_permanent": 0,
                            "active": 1,
                            "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png"
                        },
                        "62": {
                            "id": 62,
                            "parent_id": null,
                            "name": "Beauty & Well being",
                            "slug": "beauty-well-being",
                            "description": "",
                            "hide_description": null,
                            "image_path": "app/default/categories/fa-folder-default.png",
                            "icon_class": "fa-solid fa-spa",
                            "seo_title": "",
                            "seo_description": "",
                            "seo_keywords": "",
                            "lft": 76,
                            "rgt": 88,
                            "depth": 0,
                            "type": "classified",
                            "is_for_permanent": 0,
                            "active": 1,
                            "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png"
                        },
                        "73": {
                            "id": 73,
                            "parent_id": null,
                            "name": "Jobs",
                            "slug": "jobs",
                            "description": "",
                            "hide_description": null,
                            "image_path": "app/default/categories/fa-folder-default.png",
                            "icon_class": "fa-solid fa-briefcase",
                            "seo_title": "",
                            "seo_description": "",
                            "seo_keywords": "",
                            "lft": 89,
                            "rgt": 114,
                            "depth": 0,
                            "type": "job-offer",
                            "is_for_permanent": 0,
                            "active": 1,
                            "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png"
                        },
                        "97": {
                            "id": 97,
                            "parent_id": null,
                            "name": "Services",
                            "slug": "services",
                            "description": "",
                            "hide_description": null,
                            "image_path": "app/default/categories/fa-folder-default.png",
                            "icon_class": "fa-solid fa-clipboard-list",
                            "seo_title": "",
                            "seo_description": "",
                            "seo_keywords": "",
                            "lft": 115,
                            "rgt": 133,
                            "depth": 0,
                            "type": "classified",
                            "is_for_permanent": 0,
                            "active": 1,
                            "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png"
                        },
                        "114": {
                            "id": 114,
                            "parent_id": null,
                            "name": "Learning",
                            "slug": "learning",
                            "description": "",
                            "hide_description": null,
                            "image_path": "app/default/categories/fa-folder-default.png",
                            "icon_class": "fa-solid fa-graduation-cap",
                            "seo_title": "",
                            "seo_description": "",
                            "seo_keywords": "",
                            "lft": 134,
                            "rgt": 143,
                            "depth": 0,
                            "type": "classified",
                            "is_for_permanent": 0,
                            "active": 1,
                            "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png"
                        },
                        "122": {
                            "id": 122,
                            "parent_id": null,
                            "name": "Local Events",
                            "slug": "local-events",
                            "description": "",
                            "hide_description": null,
                            "image_path": "app/default/categories/fa-folder-default.png",
                            "icon_class": "fa-regular fa-calendar-days",
                            "seo_title": "",
                            "seo_description": "",
                            "seo_keywords": "",
                            "lft": 144,
                            "rgt": 158,
                            "depth": 0,
                            "type": "classified",
                            "is_for_permanent": 0,
                            "active": 1,
                            "image_url": "http://127.0.0.1:8000/storage/app/default/categories\\thumbnails\\70x70-fa-folder-default.png"
                        }
                    },
                    "countPostsPerCat": []
                },
                "options": {
                    "max_items": null,
                    "cat_display_type": "c_bigIcon_list",
                    "show_icon": "1",
                    "max_sub_cats": "3"
                },
                "lft": 2
            },
            "premium_listings": {
                "belongs_to": "home",
                "key": "premium_listings",
                "data": {
                    "premium": null
                },
                "options": {
                    "max_items": "20",
                    "items_in_carousel": "1"
                },
                "lft": 4
            },
            "locations": {
                "belongs_to": "home",
                "key": "locations",
                "data": {
                    "cities": [
                        {
                            "id": 44,
                            "country_code": "SA",
                            "name": "Riyadh",
                            "longitude": 46.72,
                            "latitude": 24.69,
                            "feature_class": "P",
                            "feature_code": "PPLC",
                            "subadmin1_code": "SA.10",
                            "subadmin2_code": null,
                            "population": 4205961,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2019-09-05T01:00:00.000000Z",
                            "updated_at": "2019-09-05T01:00:00.000000Z",
                            "slug": "riyadh"
                        },
                        {
                            "id": 136,
                            "country_code": "SA",
                            "name": "Riyadh",
                            "longitude": 46.72,
                            "latitude": 24.69,
                            "feature_class": "P",
                            "feature_code": "PPLC",
                            "subadmin1_code": "SA.10",
                            "subadmin2_code": null,
                            "population": 4205961,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2019-09-05T01:00:00.000000Z",
                            "updated_at": "2019-09-05T01:00:00.000000Z",
                            "slug": "riyadh"
                        },
                        {
                            "id": 29,
                            "country_code": "SA",
                            "name": "Jeddah",
                            "longitude": 39.19,
                            "latitude": 21.49,
                            "feature_class": "P",
                            "feature_code": "PPL",
                            "subadmin1_code": "SA.14",
                            "subadmin2_code": null,
                            "population": 2867446,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2022-01-21T01:00:00.000000Z",
                            "updated_at": "2022-01-21T01:00:00.000000Z",
                            "slug": "jeddah"
                        },
                        {
                            "id": 121,
                            "country_code": "SA",
                            "name": "Jeddah",
                            "longitude": 39.19,
                            "latitude": 21.49,
                            "feature_class": "P",
                            "feature_code": "PPL",
                            "subadmin1_code": "SA.14",
                            "subadmin2_code": null,
                            "population": 2867446,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2022-01-21T01:00:00.000000Z",
                            "updated_at": "2022-01-21T01:00:00.000000Z",
                            "slug": "jeddah"
                        },
                        {
                            "id": 25,
                            "country_code": "SA",
                            "name": "Mecca",
                            "longitude": 39.83,
                            "latitude": 21.43,
                            "feature_class": "P",
                            "feature_code": "PPLA",
                            "subadmin1_code": "SA.14",
                            "subadmin2_code": null,
                            "population": 1323624,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2020-05-28T01:00:00.000000Z",
                            "updated_at": "2020-05-28T01:00:00.000000Z",
                            "slug": "mecca"
                        },
                        {
                            "id": 117,
                            "country_code": "SA",
                            "name": "Mecca",
                            "longitude": 39.83,
                            "latitude": 21.43,
                            "feature_class": "P",
                            "feature_code": "PPLA",
                            "subadmin1_code": "SA.14",
                            "subadmin2_code": null,
                            "population": 1323624,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2020-05-28T01:00:00.000000Z",
                            "updated_at": "2020-05-28T01:00:00.000000Z",
                            "slug": "mecca"
                        },
                        {
                            "id": 61,
                            "country_code": "SA",
                            "name": "Medina",
                            "longitude": 39.61,
                            "latitude": 24.47,
                            "feature_class": "P",
                            "feature_code": "PPLA",
                            "subadmin1_code": "SA.05",
                            "subadmin2_code": null,
                            "population": 1300000,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2019-09-05T01:00:00.000000Z",
                            "updated_at": "2019-09-05T01:00:00.000000Z",
                            "slug": "medina"
                        },
                        {
                            "id": 153,
                            "country_code": "SA",
                            "name": "Medina",
                            "longitude": 39.61,
                            "latitude": 24.47,
                            "feature_class": "P",
                            "feature_code": "PPLA",
                            "subadmin1_code": "SA.05",
                            "subadmin2_code": null,
                            "population": 1300000,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2019-09-05T01:00:00.000000Z",
                            "updated_at": "2019-09-05T01:00:00.000000Z",
                            "slug": "medina"
                        },
                        {
                            "id": 104,
                            "country_code": "SA",
                            "name": "Sulţānah",
                            "longitude": 39.59,
                            "latitude": 24.49,
                            "feature_class": "P",
                            "feature_code": "PPL",
                            "subadmin1_code": "SA.05",
                            "subadmin2_code": null,
                            "population": 946697,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2012-01-16T01:00:00.000000Z",
                            "updated_at": "2012-01-16T01:00:00.000000Z",
                            "slug": "sultanah"
                        },
                        {
                            "id": 12,
                            "country_code": "SA",
                            "name": "Sulţānah",
                            "longitude": 39.59,
                            "latitude": 24.49,
                            "feature_class": "P",
                            "feature_code": "PPL",
                            "subadmin1_code": "SA.05",
                            "subadmin2_code": null,
                            "population": 946697,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2012-01-16T01:00:00.000000Z",
                            "updated_at": "2012-01-16T01:00:00.000000Z",
                            "slug": "sultanah"
                        },
                        {
                            "id": 81,
                            "country_code": "SA",
                            "name": "Dammam",
                            "longitude": 50.1,
                            "latitude": 26.43,
                            "feature_class": "P",
                            "feature_code": "PPLA",
                            "subadmin1_code": "SA.06",
                            "subadmin2_code": null,
                            "population": 768602,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2014-08-19T01:00:00.000000Z",
                            "updated_at": "2014-08-19T01:00:00.000000Z",
                            "slug": "dammam"
                        },
                        {
                            "id": 173,
                            "country_code": "SA",
                            "name": "Dammam",
                            "longitude": 50.1,
                            "latitude": 26.43,
                            "feature_class": "P",
                            "feature_code": "PPLA",
                            "subadmin1_code": "SA.06",
                            "subadmin2_code": null,
                            "population": 768602,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2014-08-19T01:00:00.000000Z",
                            "updated_at": "2014-08-19T01:00:00.000000Z",
                            "slug": "dammam"
                        },
                        {
                            "id": 132,
                            "country_code": "SA",
                            "name": "Ta’if",
                            "longitude": 40.42,
                            "latitude": 21.27,
                            "feature_class": "P",
                            "feature_code": "PPL",
                            "subadmin1_code": "SA.14",
                            "subadmin2_code": null,
                            "population": 530848,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2015-09-05T01:00:00.000000Z",
                            "updated_at": "2015-09-05T01:00:00.000000Z",
                            "slug": "ta’if"
                        },
                        {
                            "id": 40,
                            "country_code": "SA",
                            "name": "Ta’if",
                            "longitude": 40.42,
                            "latitude": 21.27,
                            "feature_class": "P",
                            "feature_code": "PPL",
                            "subadmin1_code": "SA.14",
                            "subadmin2_code": null,
                            "population": 530848,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2015-09-05T01:00:00.000000Z",
                            "updated_at": "2015-09-05T01:00:00.000000Z",
                            "slug": "ta’if"
                        },
                        {
                            "id": 101,
                            "country_code": "SA",
                            "name": "Tabuk",
                            "longitude": 36.57,
                            "latitude": 28.4,
                            "feature_class": "P",
                            "feature_code": "PPLA",
                            "subadmin1_code": "SA.19",
                            "subadmin2_code": null,
                            "population": 455450,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2015-09-12T01:00:00.000000Z",
                            "updated_at": "2015-09-12T01:00:00.000000Z",
                            "slug": "tabuk"
                        },
                        {
                            "id": 9,
                            "country_code": "SA",
                            "name": "Tabuk",
                            "longitude": 36.57,
                            "latitude": 28.4,
                            "feature_class": "P",
                            "feature_code": "PPLA",
                            "subadmin1_code": "SA.19",
                            "subadmin2_code": null,
                            "population": 455450,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2015-09-12T01:00:00.000000Z",
                            "updated_at": "2015-09-12T01:00:00.000000Z",
                            "slug": "tabuk"
                        },
                        {
                            "id": 155,
                            "country_code": "SA",
                            "name": "Al Kharj",
                            "longitude": 47.33,
                            "latitude": 24.16,
                            "feature_class": "P",
                            "feature_code": "PPL",
                            "subadmin1_code": "SA.10",
                            "subadmin2_code": null,
                            "population": 425300,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2017-09-13T01:00:00.000000Z",
                            "updated_at": "2017-09-13T01:00:00.000000Z",
                            "slug": "al-kharj"
                        },
                        {
                            "id": 63,
                            "country_code": "SA",
                            "name": "Al Kharj",
                            "longitude": 47.33,
                            "latitude": 24.16,
                            "feature_class": "P",
                            "feature_code": "PPL",
                            "subadmin1_code": "SA.10",
                            "subadmin2_code": null,
                            "population": 425300,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2017-09-13T01:00:00.000000Z",
                            "updated_at": "2017-09-13T01:00:00.000000Z",
                            "slug": "al-kharj"
                        },
                        {
                            "id": 34,
                            "country_code": "SA",
                            "name": "Buraydah",
                            "longitude": 43.97,
                            "latitude": 26.33,
                            "feature_class": "P",
                            "feature_code": "PPLA",
                            "subadmin1_code": "SA.08",
                            "subadmin2_code": null,
                            "population": 391336,
                            "time_zone": "Asia/Riyadh",
                            "active": 1,
                            "created_at": "2018-03-06T01:00:00.000000Z",
                            "updated_at": "2018-03-06T01:00:00.000000Z",
                            "slug": "buraydah"
                        },
                        {
                            "id": 0,
                            "name": "More cities &raquo;",
                            "subadmin0_code": 0
                        }
                    ],
                    "items_cols": 4
                },
                "options": {
                    "show_cities": "1",
                    "max_items": "19",
                    "show_listing_btn": "1",
                    "enable_map": "0",
                    "map_width": "300",
                    "map_height": "300"
                },
                "lft": 6
            },
            "latest_listings": {
                "belongs_to": "home",
                "key": "latest_listings",
                "data": {
                    "latest": null
                },
                "options": {
                    "max_items": "8",
                    "show_view_more_btn": "1"
                },
                "lft": 8
            },
            "stats": {
                "belongs_to": "home",
                "key": "stats",
                "data": {
                    "count": {
                        "posts": 0,
                        "users": 36,
                        "locations": 184
                    }
                },
                "options": {
                    "icon_count_listings": "bi bi-megaphone",
                    "icon_count_users": "bi bi-people",
                    "icon_count_locations": "bi bi-geo-alt",
                    "counter_up_delay": 10,
                    "counter_up_time": 2000
                },
                "lft": 10
            }
        }
    }
}
 

Request      

GET api/sections

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Get section

Get category by its unique slug or ID.

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/sections/1?parentCatSlug=automobiles" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/sections/1"
);

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

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/sections/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'parentCatSlug' => 'automobiles',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/sections/1'
params = {
  'parentCatSlug': 'automobiles',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (404):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Section not found",
    "result": null,
    "error": "Section not found"
}
 

Request      

GET api/sections/{method}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

method   integer   

Example: 1

key   string   

The key/method of the section. Example: getCategories

Query Parameters

parentCatSlug   string  optional  

The slug of the parent category to retrieve used when category's slug provided instead of ID. Example: automobiles

Languages

List languages

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/languages" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/languages"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/languages';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/languages'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "data": [
            {
                "code": "en",
                "locale": "en_US",
                "name": "English",
                "native": "English",
                "flag": "flag-icon-gb",
                "script": "Latn",
                "direction": "ltr",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 1,
                "parent_id": null,
                "lft": 2,
                "rgt": 3,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "en_US",
                "tag": "en",
                "primary": "en"
            },
            {
                "code": "fr",
                "locale": "fr_FR",
                "name": "French",
                "native": "Français",
                "flag": "flag-icon-fr",
                "script": "Latn",
                "direction": "ltr",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 4,
                "rgt": 5,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "fr_FR",
                "tag": "fr",
                "primary": "fr"
            },
            {
                "code": "es",
                "locale": "es_ES",
                "name": "Spanish",
                "native": "Español",
                "flag": "flag-icon-es",
                "script": "Latn",
                "direction": "ltr",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 6,
                "rgt": 7,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "es_ES",
                "tag": "es",
                "primary": "es"
            },
            {
                "code": "ar",
                "locale": "ar_SA",
                "name": "Arabic",
                "native": "العربية",
                "flag": "flag-icon-sa",
                "script": "Arab",
                "direction": "rtl",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 8,
                "rgt": 9,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "ar_SA",
                "tag": "ar",
                "primary": "ar"
            },
            {
                "code": "pt",
                "locale": "pt_PT",
                "name": "Portuguese",
                "native": "Português",
                "flag": "flag-icon-pt",
                "script": "Latn",
                "direction": "ltr",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 10,
                "rgt": 11,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "pt_PT",
                "tag": "pt",
                "primary": "pt"
            },
            {
                "code": "de",
                "locale": "de_DE",
                "name": "German",
                "native": "Deutsch",
                "flag": "flag-icon-de",
                "script": "Latn",
                "direction": "ltr",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 12,
                "rgt": 13,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "de_DE",
                "tag": "de",
                "primary": "de"
            },
            {
                "code": "it",
                "locale": "it_IT",
                "name": "Italian",
                "native": "Italiano",
                "flag": "flag-icon-it",
                "script": "Latn",
                "direction": "ltr",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 14,
                "rgt": 15,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "it_IT",
                "tag": "it",
                "primary": "it"
            },
            {
                "code": "tr",
                "locale": "tr_TR",
                "name": "Turkish",
                "native": "Türkçe",
                "flag": "flag-icon-tr",
                "script": "Latn",
                "direction": "ltr",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 16,
                "rgt": 17,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "tr_TR",
                "tag": "tr",
                "primary": "tr"
            },
            {
                "code": "ru",
                "locale": "ru_RU",
                "name": "Russian",
                "native": "Русский",
                "flag": "flag-icon-ru",
                "script": "Cyrl",
                "direction": "ltr",
                "russian_pluralization": 1,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 18,
                "rgt": 19,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "ru_RU",
                "tag": "ru",
                "primary": "ru"
            },
            {
                "code": "hi",
                "locale": "hi_IN",
                "name": "Hindi",
                "native": "हिन्दी",
                "flag": "flag-icon-in",
                "script": "Deva",
                "direction": "ltr",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 20,
                "rgt": 21,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "hi_IN",
                "tag": "hi",
                "primary": "hi"
            },
            {
                "code": "bn",
                "locale": "bn_BD",
                "name": "Bengali",
                "native": "বাংলা",
                "flag": "flag-icon-bd",
                "script": "Beng",
                "direction": "ltr",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 22,
                "rgt": 23,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "bn_BD",
                "tag": "bn",
                "primary": "bn"
            },
            {
                "code": "zh",
                "locale": "zh_CN",
                "name": "Simplified Chinese",
                "native": "简体中文",
                "flag": "flag-icon-cn",
                "script": "Hans",
                "direction": "ltr",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 24,
                "rgt": 25,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "zh_CN",
                "tag": "zh",
                "primary": "zh"
            },
            {
                "code": "ja",
                "locale": "ja_JP",
                "name": "Japanese",
                "native": "日本語",
                "flag": "flag-icon-jp",
                "script": "Jpan",
                "direction": "ltr",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 26,
                "rgt": 27,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "ja_JP",
                "tag": "ja",
                "primary": "ja"
            },
            {
                "code": "he",
                "locale": "he_IL",
                "name": "Hebrew",
                "native": "עִברִית",
                "flag": "flag-icon-il",
                "script": "Hebr",
                "direction": "rtl",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 28,
                "rgt": 29,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "he_IL",
                "tag": "he",
                "primary": "he"
            },
            {
                "code": "th",
                "locale": "th_TH",
                "name": "Thai",
                "native": "ไทย",
                "flag": "flag-icon-th",
                "script": "Thai",
                "direction": "ltr",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 30,
                "rgt": 31,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "th_TH",
                "tag": "th",
                "primary": "th"
            },
            {
                "code": "ro",
                "locale": "ro_RO",
                "name": "Romanian",
                "native": "Română",
                "flag": "flag-icon-ro",
                "script": "Latn",
                "direction": "ltr",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 32,
                "rgt": 33,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "ro_RO",
                "tag": "ro",
                "primary": "ro"
            },
            {
                "code": "ka",
                "locale": "ka_GE",
                "name": "Georgian",
                "native": "ქართული",
                "flag": "flag-icon-ge",
                "script": "Geor",
                "direction": "ltr",
                "russian_pluralization": 0,
                "date_format": null,
                "datetime_format": null,
                "active": 1,
                "default": 0,
                "parent_id": null,
                "lft": 34,
                "rgt": 35,
                "depth": 1,
                "created_at": "2026-05-20 18:55:00",
                "updated_at": "2026-05-20 18:55:00",
                "iso_locale": "ka_GE",
                "tag": "ka",
                "primary": "ka"
            }
        ]
    }
}
 

Request      

GET api/languages

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Get language

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/languages/en" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/languages/en"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/languages/en';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/languages/en'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "code": "en",
        "locale": "en_US",
        "name": "English",
        "native": "English",
        "flag": "flag-icon-gb",
        "script": "Latn",
        "direction": "ltr",
        "russian_pluralization": 0,
        "date_format": null,
        "datetime_format": null,
        "active": 1,
        "default": 1,
        "parent_id": null,
        "lft": 2,
        "rgt": 3,
        "depth": 1,
        "created_at": "2026-05-20 18:55:00",
        "updated_at": "2026-05-20 18:55:00",
        "iso_locale": "en_US",
        "tag": "en",
        "primary": "en"
    }
}
 

Request      

GET api/languages/{code}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

code   string   

The language's code. Example: en

Listings

List listing types

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/postTypes" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/postTypes"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/postTypes';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/postTypes'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "1": {
            "id": 1,
            "name": "INDIVIDUAL",
            "label": "Individual"
        },
        "2": {
            "id": 2,
            "name": "PROFESSIONAL",
            "label": "Professional"
        }
    }
}
 

Request      

GET api/postTypes

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Get listing type

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/postTypes/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/postTypes/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/postTypes/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/postTypes/1'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "id": 1,
        "name": "INDIVIDUAL",
        "label": "Individual"
    }
}
 

Request      

GET api/postTypes/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The listing type's ID. Example: 1

List report types

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/reportTypes" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/reportTypes"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/reportTypes';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/reportTypes'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "data": [
            {
                "id": 5,
                "name": "Other"
            },
            {
                "id": 4,
                "name": "Wrong category"
            },
            {
                "id": 3,
                "name": "Spam"
            },
            {
                "id": 2,
                "name": "Duplicate"
            },
            {
                "id": 1,
                "name": "Fraud"
            }
        ]
    }
}
 

Request      

GET api/reportTypes

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Get report type

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/reportTypes/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/reportTypes/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/reportTypes/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/reportTypes/1'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "id": 1,
        "name": "Fraud"
    }
}
 

Request      

GET api/reportTypes/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The report type's ID. Example: 1

List listings

Note: The main picture of the listings is fetched via a 'picture' attribute (added as fake column), that provide default picture as image placeholder when the listing has no pictures. In addition, for performance reasons, default picture is also provided when the 'pictures' table is not embed in the endpoint. So you need to embed the picture table like: /api/posts?embed=pictures to retrieve right main picture data.

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/posts?op=&postId=&distance=&belongLoggedUser=1&pendingApproval=1&archived=&embed=&sort=created_at&perPage=2" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/posts"
);

const params = {
    "op": "",
    "postId": "",
    "distance": "",
    "belongLoggedUser": "1",
    "pendingApproval": "1",
    "archived": "0",
    "embed": "",
    "sort": "created_at",
    "perPage": "2",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/posts';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'op' => '',
            'postId' => '',
            'distance' => '',
            'belongLoggedUser' => '1',
            'pendingApproval' => '1',
            'archived' => '0',
            'embed' => '',
            'sort' => 'created_at',
            'perPage' => '2',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/posts'
params = {
  'op': '',
  'postId': '',
  'distance': '',
  'belongLoggedUser': '1',
  'pendingApproval': '1',
  'archived': '0',
  'embed': '',
  'sort': 'created_at',
  'perPage': '2',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthorized",
    "result": null
}
 

Request      

GET api/posts

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Query Parameters

op   string  optional  

Type of listings list (optional) - Possible value: search,premium,latest,free,premiumFirst,similar.

postId   integer  optional  

Base Listing's ID to get similar listings (optional) - Mandatory to get similar listings (when op=similar).

distance   integer  optional  

Distance to get similar listings (optional) - Also optional when the type of similar listings is based on the current listing's category. Mandatory when the type of similar listings is based on the current listing's location. So, its usage is limited to get similar listings (when op=similar) based on the current listing's location.

belongLoggedUser   boolean  optional  

Force users to be logged to get data that belongs to him. Authentication token needs to be sent in the header, and the "op" parameter needs to be null or unset - Possible value: 0 or 1. Example: true

pendingApproval   boolean  optional  

To list a user's listings in pending approval. Authentication token needs to be sent in the header, and the "op" parameter needs to be null or unset - Possible value: 0 or 1. Example: true

archived   boolean  optional  

To list a user's archived listings. Authentication token needs to be sent in the header, and the "op" parameter need be null or unset - Possible value: 0 or 1. Example: false

embed   string  optional  

Comma-separated list of the post relationships for Eager Loading - Possible values: user,category,parent,postType,city,currency,savedByLoggedUser,pictures,payment,package.

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: created_at. Example: created_at

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

Get listing

Note: The main picture of the listing is fetched via a 'picture' attribute (added as fake column), that provide default picture as image placeholder when the listing has no pictures. In addition, for performance reasons, default picture is also provided when the 'pictures' table is not embed in the endpoint. So you need to embed the picture table like: /api/posts/1?embed=pictures to retrieve right main picture data.

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/posts/2?unactivatedIncluded=1&belongLoggedUser=&noCache=&embed=user%2CpostType&detailed=" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/posts/2"
);

const params = {
    "unactivatedIncluded": "1",
    "belongLoggedUser": "0",
    "noCache": "0",
    "embed": "user,postType",
    "detailed": "0",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/posts/2';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'unactivatedIncluded' => '1',
            'belongLoggedUser' => '0',
            'noCache' => '0',
            'embed' => 'user,postType',
            'detailed' => '0',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/posts/2'
params = {
  'unactivatedIncluded': '1',
  'belongLoggedUser': '0',
  'noCache': '0',
  'embed': 'user,postType',
  'detailed': '0',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (404):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Listing not found",
    "result": null,
    "error": "Listing not found"
}
 

Request      

GET api/posts/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The post/listing's ID. Example: 2

Query Parameters

unactivatedIncluded   boolean  optional  

Include or not unactivated entries - Possible value: 0 or 1. Example: true

belongLoggedUser   boolean  optional  

Force users to be logged to get data that belongs to him - Possible value: 0 or 1. Example: false

noCache   boolean  optional  

Disable the cache for this request - Possible value: 0 or 1. Example: false

embed   string  optional  

Comma-separated list of the post relationships for Eager Loading - Possible values: user,category,parent,postType,city,currency,savedByLoggedUser,pictures,payment,package,fieldsValues. Example: user,postType

detailed   boolean  optional  

Allow getting the listing's details with all its relationships (No need to set the 'embed' parameter). Example: false

Store listing

requires authentication

For both types of listing's creation (Single step or Multi steps). Note: The field 'admin_code' is only available when the listing's country's 'admin_type' column is set to 1 or 2.

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/posts" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --form "category_id=1"\
    --form "title=John Doe"\
    --form "description=Beatae placeat atque tempore consequatur animi magni omnis."\
    --form "contact_name=John Doe"\
    --form "auth_field=email"\
    --form "phone=+17656766467"\
    --form "phone_country="\
    --form "city_id=12"\
    --form "accept_terms="\
    --form "email=john.doe@domain.tld"\
    --form "country_code=US"\
    --form "post_type_id=1"\
    --form "admin_code=0"\
    --form "price=5000"\
    --form "negotiable="\
    --form "phone_hidden="\
    --form "create_from_ip=127.0.0.1"\
    --form "accept_marketing_offers=1"\
    --form "is_permanent=1"\
    --form "tags=car,automotive,tesla,cyber,truck"\
    --form "package_id=2"\
    --form "payment_method_id=5"\
    --form "captcha_key=ullam"\
    --form "pictures[]=@C:\Users\Micros\AppData\Local\Temp\phpDB49.tmp" 
const url = new URL(
    "http://127.0.0.1:8000/api/posts"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

const body = new FormData();
body.append('category_id', '1');
body.append('title', 'John Doe');
body.append('description', 'Beatae placeat atque tempore consequatur animi magni omnis.');
body.append('contact_name', 'John Doe');
body.append('auth_field', 'email');
body.append('phone', '+17656766467');
body.append('phone_country', '');
body.append('city_id', '12');
body.append('accept_terms', '');
body.append('email', 'john.doe@domain.tld');
body.append('country_code', 'US');
body.append('post_type_id', '1');
body.append('admin_code', '0');
body.append('price', '5000');
body.append('negotiable', '');
body.append('phone_hidden', '');
body.append('create_from_ip', '127.0.0.1');
body.append('accept_marketing_offers', '1');
body.append('is_permanent', '1');
body.append('tags', 'car,automotive,tesla,cyber,truck');
body.append('package_id', '2');
body.append('payment_method_id', '5');
body.append('captcha_key', 'ullam');
body.append('pictures[]', document.querySelector('input[name="pictures[]"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/posts';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'multipart/form-data',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'multipart' => [
            [
                'name' => 'category_id',
                'contents' => '1'
            ],
            [
                'name' => 'title',
                'contents' => 'John Doe'
            ],
            [
                'name' => 'description',
                'contents' => 'Beatae placeat atque tempore consequatur animi magni omnis.'
            ],
            [
                'name' => 'contact_name',
                'contents' => 'John Doe'
            ],
            [
                'name' => 'auth_field',
                'contents' => 'email'
            ],
            [
                'name' => 'phone',
                'contents' => '+17656766467'
            ],
            [
                'name' => 'phone_country',
                'contents' => ''
            ],
            [
                'name' => 'city_id',
                'contents' => '12'
            ],
            [
                'name' => 'accept_terms',
                'contents' => ''
            ],
            [
                'name' => 'email',
                'contents' => 'john.doe@domain.tld'
            ],
            [
                'name' => 'country_code',
                'contents' => 'US'
            ],
            [
                'name' => 'post_type_id',
                'contents' => '1'
            ],
            [
                'name' => 'admin_code',
                'contents' => '0'
            ],
            [
                'name' => 'price',
                'contents' => '5000'
            ],
            [
                'name' => 'negotiable',
                'contents' => ''
            ],
            [
                'name' => 'phone_hidden',
                'contents' => ''
            ],
            [
                'name' => 'create_from_ip',
                'contents' => '127.0.0.1'
            ],
            [
                'name' => 'accept_marketing_offers',
                'contents' => '1'
            ],
            [
                'name' => 'is_permanent',
                'contents' => '1'
            ],
            [
                'name' => 'tags',
                'contents' => 'car,automotive,tesla,cyber,truck'
            ],
            [
                'name' => 'package_id',
                'contents' => '2'
            ],
            [
                'name' => 'payment_method_id',
                'contents' => '5'
            ],
            [
                'name' => 'captcha_key',
                'contents' => 'ullam'
            ],
            [
                'name' => 'pictures[]',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\phpDB49.tmp', 'r')
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/posts'
files = {
  'category_id': (None, '1'),
  'title': (None, 'John Doe'),
  'description': (None, 'Beatae placeat atque tempore consequatur animi magni omnis.'),
  'contact_name': (None, 'John Doe'),
  'auth_field': (None, 'email'),
  'phone': (None, '+17656766467'),
  'phone_country': (None, ''),
  'city_id': (None, '12'),
  'accept_terms': (None, ''),
  'email': (None, 'john.doe@domain.tld'),
  'country_code': (None, 'US'),
  'post_type_id': (None, '1'),
  'admin_code': (None, '0'),
  'price': (None, '5000'),
  'negotiable': (None, ''),
  'phone_hidden': (None, ''),
  'create_from_ip': (None, '127.0.0.1'),
  'accept_marketing_offers': (None, '1'),
  'is_permanent': (None, '1'),
  'tags': (None, 'car,automotive,tesla,cyber,truck'),
  'package_id': (None, '2'),
  'payment_method_id': (None, '5'),
  'captcha_key': (None, 'ullam'),
  'pictures[]': open('C:\Users\Micros\AppData\Local\Temp\phpDB49.tmp', 'rb')}
payload = {
    "category_id": 1,
    "title": "John Doe",
    "description": "Beatae placeat atque tempore consequatur animi magni omnis.",
    "contact_name": "John Doe",
    "auth_field": "email",
    "phone": "+17656766467",
    "phone_country": null,
    "city_id": 12,
    "accept_terms": false,
    "email": "john.doe@domain.tld",
    "country_code": "US",
    "post_type_id": 1,
    "admin_code": "0",
    "price": 5000,
    "negotiable": false,
    "phone_hidden": false,
    "create_from_ip": "127.0.0.1",
    "accept_marketing_offers": true,
    "is_permanent": true,
    "tags": "car,automotive,tesla,cyber,truck",
    "package_id": 2,
    "payment_method_id": 5,
    "captcha_key": "ullam"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'multipart/form-data',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, files=files)
response.json()

Request      

POST api/posts

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: multipart/form-data

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

category_id   integer   

The category's ID. Example: 1

title   string   

The listing's title. Example: John Doe

description   string   

The listing's description. Example: Beatae placeat atque tempore consequatur animi magni omnis.

contact_name   string   

The listing's author name. Example: John Doe

auth_field   string   

The user's auth field ('email' or 'phone'). Example: email

phone   string  optional  

The listing's author mobile number (Required when 'auth_field' value is 'phone'). Example: +17656766467

phone_country   string   

The user's phone number's country code (Required when the 'phone' field is filled).

city_id   integer   

The city's ID. Example: 12

accept_terms   boolean   

Accept the website terms and conditions. Example: false

pictures   file[]   

The listing's pictures.

email   string  optional  

The listing's author email address (Required when 'auth_field' value is 'email'). Example: john.doe@domain.tld

country_code   string   

The code of the user's country. Example: US

post_type_id   integer  optional  

The listing type's ID. Example: 1

admin_code   string  optional  

The administrative division's code. Example: 0

price   integer   

The price. Example: 5000

negotiable   boolean  optional  

Negotiable price or no. Example: false

phone_hidden   boolean  optional  

Mobile phone number will be hidden in public or no. Example: false

create_from_ip   string  optional  

The listing's author IP address. Example: 127.0.0.1

accept_marketing_offers   boolean  optional  

Accept to receive marketing offers or no. Example: true

is_permanent   boolean  optional  

Is it permanent post or no. Example: true

tags   string  optional  

Comma-separated tags list. Example: car,automotive,tesla,cyber,truck

package_id   integer   

The package's ID. Example: 2

payment_method_id   integer  optional  

The payment method's ID (required when the selected package's price is > 0). Example: 5

captcha_key   string  optional  

Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel). Example: ullam

Update listing

requires authentication

Note: The fields 'pictures', 'package_id' and 'payment_method_id' are only available with the single step listing edition. The field 'admin_code' is only available when the listing's country's 'admin_type' column is set to 1 or 2.

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/posts/16" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --form "category_id=1"\
    --form "title=John Doe"\
    --form "description=Beatae placeat atque tempore consequatur animi magni omnis."\
    --form "contact_name=John Doe"\
    --form "auth_field=email"\
    --form "phone=+17656766467"\
    --form "phone_country="\
    --form "city_id=1"\
    --form "accept_terms="\
    --form "email=john.doe@domain.tld"\
    --form "country_code=US"\
    --form "post_type_id=1"\
    --form "admin_code=0"\
    --form "price=5000"\
    --form "negotiable="\
    --form "phone_hidden="\
    --form "latest_update_ip=127.0.0.1"\
    --form "accept_marketing_offers=1"\
    --form "is_permanent="\
    --form "tags=car,automotive,tesla,cyber,truck"\
    --form "package_id=2"\
    --form "payment_method_id=5"\
    --form "pictures[]=@C:\Users\Micros\AppData\Local\Temp\phpDBA8.tmp" 
const url = new URL(
    "http://127.0.0.1:8000/api/posts/16"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

const body = new FormData();
body.append('category_id', '1');
body.append('title', 'John Doe');
body.append('description', 'Beatae placeat atque tempore consequatur animi magni omnis.');
body.append('contact_name', 'John Doe');
body.append('auth_field', 'email');
body.append('phone', '+17656766467');
body.append('phone_country', '');
body.append('city_id', '1');
body.append('accept_terms', '');
body.append('email', 'john.doe@domain.tld');
body.append('country_code', 'US');
body.append('post_type_id', '1');
body.append('admin_code', '0');
body.append('price', '5000');
body.append('negotiable', '');
body.append('phone_hidden', '');
body.append('latest_update_ip', '127.0.0.1');
body.append('accept_marketing_offers', '1');
body.append('is_permanent', '');
body.append('tags', 'car,automotive,tesla,cyber,truck');
body.append('package_id', '2');
body.append('payment_method_id', '5');
body.append('pictures[]', document.querySelector('input[name="pictures[]"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/posts/16';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'multipart/form-data',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'multipart' => [
            [
                'name' => 'category_id',
                'contents' => '1'
            ],
            [
                'name' => 'title',
                'contents' => 'John Doe'
            ],
            [
                'name' => 'description',
                'contents' => 'Beatae placeat atque tempore consequatur animi magni omnis.'
            ],
            [
                'name' => 'contact_name',
                'contents' => 'John Doe'
            ],
            [
                'name' => 'auth_field',
                'contents' => 'email'
            ],
            [
                'name' => 'phone',
                'contents' => '+17656766467'
            ],
            [
                'name' => 'phone_country',
                'contents' => ''
            ],
            [
                'name' => 'city_id',
                'contents' => '1'
            ],
            [
                'name' => 'accept_terms',
                'contents' => ''
            ],
            [
                'name' => 'email',
                'contents' => 'john.doe@domain.tld'
            ],
            [
                'name' => 'country_code',
                'contents' => 'US'
            ],
            [
                'name' => 'post_type_id',
                'contents' => '1'
            ],
            [
                'name' => 'admin_code',
                'contents' => '0'
            ],
            [
                'name' => 'price',
                'contents' => '5000'
            ],
            [
                'name' => 'negotiable',
                'contents' => ''
            ],
            [
                'name' => 'phone_hidden',
                'contents' => ''
            ],
            [
                'name' => 'latest_update_ip',
                'contents' => '127.0.0.1'
            ],
            [
                'name' => 'accept_marketing_offers',
                'contents' => '1'
            ],
            [
                'name' => 'is_permanent',
                'contents' => ''
            ],
            [
                'name' => 'tags',
                'contents' => 'car,automotive,tesla,cyber,truck'
            ],
            [
                'name' => 'package_id',
                'contents' => '2'
            ],
            [
                'name' => 'payment_method_id',
                'contents' => '5'
            ],
            [
                'name' => 'pictures[]',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\phpDBA8.tmp', 'r')
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/posts/16'
files = {
  'category_id': (None, '1'),
  'title': (None, 'John Doe'),
  'description': (None, 'Beatae placeat atque tempore consequatur animi magni omnis.'),
  'contact_name': (None, 'John Doe'),
  'auth_field': (None, 'email'),
  'phone': (None, '+17656766467'),
  'phone_country': (None, ''),
  'city_id': (None, '1'),
  'accept_terms': (None, ''),
  'email': (None, 'john.doe@domain.tld'),
  'country_code': (None, 'US'),
  'post_type_id': (None, '1'),
  'admin_code': (None, '0'),
  'price': (None, '5000'),
  'negotiable': (None, ''),
  'phone_hidden': (None, ''),
  'latest_update_ip': (None, '127.0.0.1'),
  'accept_marketing_offers': (None, '1'),
  'is_permanent': (None, ''),
  'tags': (None, 'car,automotive,tesla,cyber,truck'),
  'package_id': (None, '2'),
  'payment_method_id': (None, '5'),
  'pictures[]': open('C:\Users\Micros\AppData\Local\Temp\phpDBA8.tmp', 'rb')}
payload = {
    "category_id": 1,
    "title": "John Doe",
    "description": "Beatae placeat atque tempore consequatur animi magni omnis.",
    "contact_name": "John Doe",
    "auth_field": "email",
    "phone": "+17656766467",
    "phone_country": null,
    "city_id": 1,
    "accept_terms": false,
    "email": "john.doe@domain.tld",
    "country_code": "US",
    "post_type_id": 1,
    "admin_code": "0",
    "price": 5000,
    "negotiable": false,
    "phone_hidden": false,
    "latest_update_ip": "127.0.0.1",
    "accept_marketing_offers": true,
    "is_permanent": false,
    "tags": "car,automotive,tesla,cyber,truck",
    "package_id": 2,
    "payment_method_id": 5
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'multipart/form-data',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, files=files)
response.json()

Request      

PUT api/posts/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: multipart/form-data

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The post/listing's ID. Example: 16

Body Parameters

category_id   integer   

The category's ID. Example: 1

title   string   

The listing's title. Example: John Doe

description   string   

The listing's description. Example: Beatae placeat atque tempore consequatur animi magni omnis.

contact_name   string   

The listing's author name. Example: John Doe

auth_field   string   

The user's auth field ('email' or 'phone'). Example: email

phone   string  optional  

The listing's author mobile number (Required when 'auth_field' value is 'phone'). Example: +17656766467

phone_country   string   

The user's phone number's country code (Required when the 'phone' field is filled).

city_id   integer   

The city's ID. Example: 1

accept_terms   boolean   

Accept the website terms and conditions. Example: false

email   string  optional  

The listing's author email address (Required when 'auth_field' value is 'email'). Example: john.doe@domain.tld

country_code   string   

The code of the user's country. Example: US

post_type_id   integer  optional  

The listing type's ID. Example: 1

admin_code   string  optional  

The administrative division's code. Example: 0

price   integer   

The price. Example: 5000

negotiable   boolean  optional  

Negotiable price or no. Example: false

phone_hidden   boolean  optional  

Mobile phone number will be hidden in public or no. Example: false

latest_update_ip   string  optional  

The listing's author IP address. Example: 127.0.0.1

accept_marketing_offers   boolean  optional  

Accept to receive marketing offers or no. Example: true

is_permanent   boolean  optional  

Is it permanent post or no. Example: false

tags   string  optional  

Comma-separated tags list. Example: car,automotive,tesla,cyber,truck

pictures   file[]   

The listing's pictures.

package_id   integer   

The package's ID. Example: 2

payment_method_id   integer  optional  

The payment method's ID (Required when the selected package's price is > 0). Example: 5

Delete listing(s)

requires authentication

Example request:
curl --request DELETE \
    "http://127.0.0.1:8000/api/posts/111111,222222,333333" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/posts/111111,222222,333333"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/posts/111111,222222,333333';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/posts/111111,222222,333333'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('DELETE', url, headers=headers)
response.json()

Request      

DELETE api/posts/{ids}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

ids   string   

The ID or comma-separated IDs list of listing(s). Example: 111111,222222,333333

Packages

List packages

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/packages/promotion?embed=&sort=-lft" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/packages/promotion"
);

const params = {
    "embed": "",
    "sort": "-lft",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/packages/promotion';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
            'sort' => '-lft',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/packages/promotion'
params = {
  'embed': '',
  'sort': '-lft',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": "No packages found",
    "result": {
        "data": []
    }
}
 

Request      

GET api/packages/promotion

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Query Parameters

embed   string  optional  

Comma-separated list of the package relationships for Eager Loading - Possible values: currency.

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: lft. Example: -lft

List packages

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/packages/subscription?embed=&sort=-lft" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/packages/subscription"
);

const params = {
    "embed": "",
    "sort": "-lft",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/packages/subscription';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
            'sort' => '-lft',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/packages/subscription'
params = {
  'embed': '',
  'sort': '-lft',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": "No packages found",
    "result": {
        "data": []
    }
}
 

Request      

GET api/packages/subscription

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Query Parameters

embed   string  optional  

Comma-separated list of the package relationships for Eager Loading - Possible values: currency.

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: lft. Example: -lft

Get package

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/packages/2?embed=currency" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/packages/2"
);

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

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/packages/2';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => 'currency',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/packages/2'
params = {
  'embed': 'currency',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (404):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Package not found",
    "result": null,
    "error": "Package not found"
}
 

Request      

GET api/packages/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The package's ID. Example: 2

Query Parameters

embed   string  optional  

Comma-separated list of the package relationships for Eager Loading - Possible values: currency. Example: currency

Pages

List pages

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/pages?excludedFromFooter=&sort=-lft&perPage=2" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/pages"
);

const params = {
    "excludedFromFooter": "0",
    "sort": "-lft",
    "perPage": "2",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/pages';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'excludedFromFooter' => '0',
            'sort' => '-lft',
            'perPage' => '2',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/pages'
params = {
  'excludedFromFooter': '0',
  'sort': '-lft',
  'perPage': '2',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "data": [
            {
                "id": 4,
                "parent_id": null,
                "type": "standard",
                "name": "FAQ",
                "slug": "faq",
                "image_path": null,
                "title": "Frequently Asked Questions",
                "content": "<p><b>How do I place an ad?</b></p><p>It's very easy to place an ad: click on the button \"Post free Ads\" above right.</p><p><b>What does it cost to advertise?</b></p><p>The publication is 100% free throughout the website.</p><p><b>If I post an listing, will I also get more spam e-mails?</b></p><p>Absolutely not because your email address is not visible on the website.</p><p><b>How long will my listing remain on the website?</b></p><p>In general, an listing is automatically deactivated from the website after 3 months. You will receive an email a week before D-Day and another on the day of deactivation. You have the ability to put them online in the following month by logging into your account on the site. After this delay, your listing will be automatically removed permanently from the website.</p><p><b>I sold my item. How do I delete my ad?</b></p><p>Once your product is sold or leased, log in to your account to remove your listing.</p>",
                "external_link": null,
                "name_color": null,
                "title_color": null,
                "target_blank": 0,
                "seo_title": "",
                "seo_description": "",
                "seo_keywords": "",
                "excluded_from_footer": 0,
                "active": 1,
                "lft": 2,
                "rgt": 3,
                "depth": 1,
                "image_url": null
            },
            {
                "id": 3,
                "parent_id": null,
                "type": "standard",
                "name": "Anti-Scam",
                "slug": "anti-scam",
                "image_path": null,
                "title": "Anti-Scam",
                "content": "<p><b>Protect yourself against Internet fraud!</b></p><p>The vast majority of listings are posted by honest people and trust. So you can do excellent business. Despite this, it is important to follow a few common sense rules following to prevent any attempt to scam.</p><p><b>Our advices</b></p><ul><li>Doing business with people you can meet in person.</li><li>Never send money by Western Union, MoneyGram or other anonymous payment systems.</li><li>Never send money or products abroad.</li><li>Do not accept checks.</li><li>Ask about the person you're dealing with another confirming source name, address and telephone number.</li><li>Keep copies of all correspondence (emails, listings, letters, etc.) and details of the person.</li><li>If a deal seems too good to be true, there is every chance that this is the case. Refrain.</li></ul><p><b>Recognize attempted scam</b></p><ul><li>The majority of scams have one or more of these characteristics:</li><li>The person is abroad or traveling abroad.</li><li>The person refuses to meet you in person.</li><li>Payment is made through Western Union, Money Gram or check.</li><li>The messages are in broken language (English or French or ...).</li><li>The texts seem to be copied and pasted.</li><li>The deal seems to be too good to be true.</li></ul>",
                "external_link": null,
                "name_color": null,
                "title_color": null,
                "target_blank": 0,
                "seo_title": "",
                "seo_description": "",
                "seo_keywords": "",
                "excluded_from_footer": 0,
                "active": 1,
                "lft": 4,
                "rgt": 5,
                "depth": 1,
                "image_url": null
            }
        ],
        "links": {
            "first": "http://127.0.0.1:8000/api/pages?page=1",
            "last": "http://127.0.0.1:8000/api/pages?page=2",
            "prev": null,
            "next": "http://127.0.0.1:8000/api/pages?page=2"
        },
        "meta": {
            "current_page": 1,
            "from": 1,
            "last_page": 2,
            "links": [
                {
                    "url": null,
                    "label": "&laquo; Previous",
                    "active": false
                },
                {
                    "url": "http://127.0.0.1:8000/api/pages?page=1",
                    "label": "1",
                    "active": true
                },
                {
                    "url": "http://127.0.0.1:8000/api/pages?page=2",
                    "label": "2",
                    "active": false
                },
                {
                    "url": "http://127.0.0.1:8000/api/pages?page=2",
                    "label": "Next &raquo;",
                    "active": false
                }
            ],
            "path": "http://127.0.0.1:8000/api/pages",
            "per_page": 2,
            "to": 2,
            "total": 4
        }
    }
}
 

Request      

GET api/pages

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Query Parameters

excludedFromFooter   boolean  optional  

Select or unselect pages that can list in footer. Example: false

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: lft, created_at. Example: -lft

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

Get page

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/pages/terms" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/pages/terms"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/pages/terms';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/pages/terms'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "id": 1,
        "parent_id": null,
        "type": "terms",
        "name": "Terms",
        "slug": "terms",
        "image_path": null,
        "title": "Terms & Conditions",
        "content": "<h4><b>Definitions</b></h4><p>Each of the terms mentioned below have in these Conditions of Sale Ecosystem Service (hereinafter the \"Conditions\") the following meanings:</p><ol><li>Announcement&nbsp;: refers to all the elements and data (visual, textual, sound, photographs, drawings), presented by an Advertiser editorial under his sole responsibility, in order to buy, rent or sell a product or service and broadcast on the Website and Mobile Site.</li><li>Advertiser&nbsp;: means any natural or legal person, a major, established in France, holds an account and having submitted an announcement, from it, on the Website. Any Advertiser must be connected to the Personal Account for deposit and or manage its listings. Add first deposit automatically entails the establishment of a Personal Account to the Advertiser.</li><li>Personal Account&nbsp;: refers to the free space than any Advertiser must create and which it should connect from the Website to disseminate, manage and view its listings.</li><li>Ecosystem&nbsp;: means the company that publishes and operates the Website and Mobile Site {YourCompany}, registered at the Trade and Companies Register of {YourCity} under the number {YourCompany Registration Number} whose registered office is at {YourCompany Address}.</li><li>Customer Service&nbsp;: Ecosystem means the department to which the Advertiser may obtain further information. This service can be contacted via email by clicking the link on the Website and Mobile Site.</li><li>Ecosystem Service&nbsp;: Ecosystem means the services made available to Users and Advertisers on the Website and Mobile Site.</li><li>Website&nbsp;: means the website operated by Ecosystem accessed mainly from the URL <a href=\"https://Ecosystem.com\">https://Ecosystem.com</a> and allowing Users and Advertisers to access the Service via internet Ecosystem.</li><li>Mobile Site&nbsp;: is the mobile site operated by Ecosystem accessible from the URL <a href=\"https://Ecosystem.com\">https://Ecosystem.com</a> and allowing Users and Advertisers to access via their mobile phone service {YourSiteName}.</li><li>User&nbsp;: any visitor with access to Ecosystem Service via the Website and Mobile Site and Consultant Service Ecosystem accessible from different media.</li></ol><h4><b>Subject</b></h4><p>These Terms and Conditions Of Use establish the contractual conditions applicable to any subscription by an Advertiser connected to its Personal Account from the Website and Mobile Site.<br></p><h4><b>Acceptance</b></h4><p>Any use of the website by an Advertiser is full acceptance of the current Terms.<br></p><h4><b>Responsibility</b></h4><p>Responsibility for Ecosystem can not be held liable for non-performance or improper performance of due control, either because of the Advertiser, or a case of major force.<br></p><h4><b>Modification of these terms</b></h4><p>Ecosystem reserves the right, at any time, to modify all or part of the Terms and Conditions.</p><p>Advertisers are advised to consult the Terms to be aware of the changes.</p><h4><b>Miscellaneous</b></h4><p>If part of the Terms should be illegal, invalid or unenforceable for any reason whatsoever, the provisions in question would be deemed unwritten, without questioning the validity of the remaining provisions will continue to apply between Advertisers and Ecosystem.</p><p>Any complaints should be addressed to Customer Service Ecosystem.</p>",
        "external_link": null,
        "name_color": null,
        "title_color": null,
        "target_blank": 0,
        "seo_title": "",
        "seo_description": "",
        "seo_keywords": "",
        "excluded_from_footer": 0,
        "active": 1,
        "lft": 6,
        "rgt": 7,
        "depth": 1,
        "image_url": null
    }
}
 

Request      

GET api/pages/{slugOrId}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

slugOrId   string   

The slug or ID of the page. Example: terms

Payment Methods

List payment methods

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/paymentMethods?countryCode=US&sort=-lft" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/paymentMethods"
);

const params = {
    "countryCode": "US",
    "sort": "-lft",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/paymentMethods';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'countryCode' => 'US',
            'sort' => '-lft',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/paymentMethods'
params = {
  'countryCode': 'US',
  'sort': '-lft',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": "No payment methods found",
    "result": {
        "data": []
    }
}
 

Request      

GET api/paymentMethods

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Query Parameters

countryCode   string  optional  

Country code. Select only the payment methods related to a country. Example: US

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: lft. Example: -lft

Get payment method

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/paymentMethods/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/paymentMethods/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/paymentMethods/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/paymentMethods/1'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (404):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Payment method not found",
    "result": null,
    "error": "Payment method not found"
}
 

Request      

GET api/paymentMethods/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

Can be the ID (int) or name (string) of the payment method. Example: 1

Payments

List payments

requires authentication

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/payments/promotion?embed=&valid=&active=&sort=created_at&perPage=2" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/payments/promotion"
);

const params = {
    "embed": "",
    "valid": "0",
    "active": "0",
    "sort": "created_at",
    "perPage": "2",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/payments/promotion';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
            'valid' => '0',
            'active' => '0',
            'sort' => 'created_at',
            'perPage' => '2',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/payments/promotion'
params = {
  'embed': '',
  'valid': '0',
  'active': '0',
  'sort': 'created_at',
  'perPage': '2',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/payments/promotion

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Query Parameters

embed   string  optional  

Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.

valid   boolean  optional  

Allow getting the valid payment list. Possible value: 0 or 1. Example: false

active   boolean  optional  

Allow getting the active payment list. Possible value: 0 or 1. Example: false

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: created_at. Example: created_at

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

List payments

requires authentication

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/payments/subscription?embed=&valid=&active=&sort=created_at&perPage=2" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/payments/subscription"
);

const params = {
    "embed": "",
    "valid": "0",
    "active": "0",
    "sort": "created_at",
    "perPage": "2",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/payments/subscription';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
            'valid' => '0',
            'active' => '0',
            'sort' => 'created_at',
            'perPage' => '2',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/payments/subscription'
params = {
  'embed': '',
  'valid': '0',
  'active': '0',
  'sort': 'created_at',
  'perPage': '2',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/payments/subscription

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Query Parameters

embed   string  optional  

Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.

valid   boolean  optional  

Allow getting the valid payment list. Possible value: 0 or 1. Example: false

active   boolean  optional  

Allow getting the active payment list. Possible value: 0 or 1. Example: false

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: created_at. Example: created_at

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

List payments

requires authentication

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/payments/subscription/users/1/payments?embed=&valid=&active=&sort=created_at&perPage=2" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/payments/subscription/users/1/payments"
);

const params = {
    "embed": "",
    "valid": "0",
    "active": "0",
    "sort": "created_at",
    "perPage": "2",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/payments/subscription/users/1/payments';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
            'valid' => '0',
            'active' => '0',
            'sort' => 'created_at',
            'perPage' => '2',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/payments/subscription/users/1/payments'
params = {
  'embed': '',
  'valid': '0',
  'active': '0',
  'sort': 'created_at',
  'perPage': '2',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/payments/subscription/users/{userId}/payments

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

userId   integer   

Example: 1

Query Parameters

embed   string  optional  

Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.

valid   boolean  optional  

Allow getting the valid payment list. Possible value: 0 or 1. Example: false

active   boolean  optional  

Allow getting the active payment list. Possible value: 0 or 1. Example: false

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: created_at. Example: created_at

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

Get payment

requires authentication

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/payments/2?embed=" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/payments/2"
);

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

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/payments/2';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/payments/2'
params = {
  'embed': '',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/payments/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The payment's ID. Example: 2

Query Parameters

embed   string  optional  

Comma-separated list of the payment relationships for Eager Loading - Possible values: payable,paymentMethod,package,currency.

Store payment

requires authentication

Note: This endpoint is only available for the multi steps form edition.

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/payments?package=13" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"country_code\": \"US\",
    \"payable_id\": 2,
    \"payable_type\": \"Post\",
    \"package_id\": 18,
    \"payment_method_id\": 5
}"
const url = new URL(
    "http://127.0.0.1:8000/api/payments"
);

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

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "country_code": "US",
    "payable_id": 2,
    "payable_type": "Post",
    "package_id": 18,
    "payment_method_id": 5
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/payments';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'package' => '13',
        ],
        'json' => [
            'country_code' => 'US',
            'payable_id' => 2,
            'payable_type' => 'Post',
            'package_id' => 18,
            'payment_method_id' => 5,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/payments'
payload = {
    "country_code": "US",
    "payable_id": 2,
    "payable_type": "Post",
    "package_id": 18,
    "payment_method_id": 5
}
params = {
  'package': '13',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload, params=params)
response.json()

Request      

POST api/payments

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Query Parameters

package   integer  optional  

Selected package ID. Example: 13

Body Parameters

country_code   string   

The code of the user's country. Example: US

payable_id   integer   

The payable's ID (ID of the listing or user). Example: 2

payable_type   string   

The payable model's name - Possible values: Post,User. Example: Post

package_id   integer   

The package's ID (Auto filled when the query parameter 'package' is set). Example: 18

payment_method_id   integer  optional  

The payment method's ID (required when the selected package's price is > 0). Example: 5

Pictures

Get picture

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/pictures/298?embed=" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/pictures/298"
);

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

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/pictures/298';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/pictures/298'
params = {
  'embed': '',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (404):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Picture not found",
    "result": null,
    "error": "Picture not found"
}
 

Request      

GET api/pictures/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The picture's ID. Example: 298

Query Parameters

embed   string  optional  

The list of the picture relationships separated by comma for Eager Loading.

Store picture

requires authentication

Note: This endpoint is only available for the multi steps post edition.

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/pictures" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --form "country_code=US"\
    --form "count_packages=3"\
    --form "count_payment_methods=1"\
    --form "post_id=2"\
    --form "pictures[]=@C:\Users\Micros\AppData\Local\Temp\phpE108.tmp" 
const url = new URL(
    "http://127.0.0.1:8000/api/pictures"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

const body = new FormData();
body.append('country_code', 'US');
body.append('count_packages', '3');
body.append('count_payment_methods', '1');
body.append('post_id', '2');
body.append('pictures[]', document.querySelector('input[name="pictures[]"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/pictures';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'multipart/form-data',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'multipart' => [
            [
                'name' => 'country_code',
                'contents' => 'US'
            ],
            [
                'name' => 'count_packages',
                'contents' => '3'
            ],
            [
                'name' => 'count_payment_methods',
                'contents' => '1'
            ],
            [
                'name' => 'post_id',
                'contents' => '2'
            ],
            [
                'name' => 'pictures[]',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\phpE108.tmp', 'r')
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/pictures'
files = {
  'country_code': (None, 'US'),
  'count_packages': (None, '3'),
  'count_payment_methods': (None, '1'),
  'post_id': (None, '2'),
  'pictures[]': open('C:\Users\Micros\AppData\Local\Temp\phpE108.tmp', 'rb')}
payload = {
    "country_code": "US",
    "count_packages": 3,
    "count_payment_methods": 1,
    "post_id": 2
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'multipart/form-data',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, files=files)
response.json()

Request      

POST api/pictures

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: multipart/form-data

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

country_code   string   

The code of the user's country. Example: US

count_packages   integer   

The number of available packages. Example: 3

count_payment_methods   integer   

The number of available payment methods. Example: 1

post_id   integer   

The post's ID. Example: 2

pictures   file[]  optional  

The files to upload.

Delete picture

requires authentication

Note: This endpoint is only available for the multi steps form edition. For newly created listings, the post's ID needs to be added in the request input with the key 'new_post_id'. The 'new_post_id' and 'new_post_tmp_token' fields need to be removed or unset during the listing edition steps.

Example request:
curl --request DELETE \
    "http://127.0.0.1:8000/api/pictures/999999999" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"post_id\": 2
}"
const url = new URL(
    "http://127.0.0.1:8000/api/pictures/999999999"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "post_id": 2
};

fetch(url, {
    method: "DELETE",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/pictures/999999999';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'post_id' => 2,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/pictures/999999999'
payload = {
    "post_id": 2
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('DELETE', url, headers=headers, json=payload)
response.json()

Request      

DELETE api/pictures/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The picture's ID. Example: 999999999

Body Parameters

post_id   integer   

The post's ID. Example: 2

Reorder pictures

requires authentication

Note: This endpoint is only available for the multi steps form edition.

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/pictures/reorder" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "X-Action: bulk" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"post_id\": 2,
    \"body\": \"corporis\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/pictures/reorder"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "X-Action": "bulk",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "post_id": 2,
    "body": "corporis"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/pictures/reorder';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'X-Action' => 'bulk',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'post_id' => 2,
            'body' => 'corporis',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/pictures/reorder'
payload = {
    "post_id": 2,
    "body": "corporis"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'X-Action': 'bulk',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/pictures/reorder

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

X-Action      

Example: bulk

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

post_id   integer   

The post's ID. Example: 2

body   string   

Encoded json of the new pictures' positions array [['id' => 2, 'position' => 1], ['id' => 1, 'position' => 2], ...] Example: corporis

List pictures

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/posts/98/pictures?embed=&postId=1&latest=&sort=-position&perPage=2" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/posts/98/pictures"
);

const params = {
    "embed": "",
    "postId": "1",
    "latest": "0",
    "sort": "-position",
    "perPage": "2",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/posts/98/pictures';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
            'postId' => '1',
            'latest' => '0',
            'sort' => '-position',
            'perPage' => '2',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/posts/98/pictures'
params = {
  'embed': '',
  'postId': '1',
  'latest': '0',
  'sort': '-position',
  'perPage': '2',
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": "No pictures found",
    "result": {
        "data": [],
        "links": {
            "first": "http://127.0.0.1:8000/api/posts/98/pictures?page=1",
            "last": "http://127.0.0.1:8000/api/posts/98/pictures?page=1",
            "prev": null,
            "next": null
        },
        "meta": {
            "current_page": 1,
            "from": null,
            "last_page": 1,
            "links": [
                {
                    "url": null,
                    "label": "&laquo; Previous",
                    "active": false
                },
                {
                    "url": "http://127.0.0.1:8000/api/posts/98/pictures?page=1",
                    "label": "1",
                    "active": true
                },
                {
                    "url": null,
                    "label": "Next &raquo;",
                    "active": false
                }
            ],
            "path": "http://127.0.0.1:8000/api/posts/98/pictures",
            "per_page": 10,
            "to": null,
            "total": 0
        }
    }
}
 

Request      

GET api/posts/{postId}/pictures

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

postId   integer   

Example: 98

Query Parameters

embed   string  optional  

The list of the picture relationships separated by comma for Eager Loading. Possible values: post.

postId   integer  optional  

List of pictures related to a listing (using the listing ID). Example: 1

latest   boolean  optional  

Get only the first picture after ordering (as object instead of collection). Possible value: 0 or 1. Example: false

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: position, created_at. Example: -position

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

Saved Posts

Store/Delete saved listing

requires authentication

Save a post/listing in favorite, or remove it from favorite.

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/savedPosts" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"post_id\": 2
}"
const url = new URL(
    "http://127.0.0.1:8000/api/savedPosts"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "post_id": 2
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/savedPosts';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'post_id' => 2,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/savedPosts'
payload = {
    "post_id": 2
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/savedPosts

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

post_id   integer   

The post/listing's ID. Example: 2

List saved listings

requires authentication

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/savedPosts?country_code=US&embed=&sort=created_at&perPage=2" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/savedPosts"
);

const params = {
    "country_code": "US",
    "embed": "",
    "sort": "created_at",
    "perPage": "2",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/savedPosts';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'country_code' => 'US',
            'embed' => '',
            'sort' => 'created_at',
            'perPage' => '2',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/savedPosts'
params = {
  'country_code': 'US',
  'embed': '',
  'sort': 'created_at',
  'perPage': '2',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/savedPosts

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Query Parameters

country_code   string   

The code of the user's country. Example: US

embed   string  optional  

The Comma-separated list of the category relationships for Eager Loading - Possible values: post,city,pictures,user.

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: created_at. Example: created_at

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

Delete saved listing(s)

requires authentication

Example request:
curl --request DELETE \
    "http://127.0.0.1:8000/api/savedPosts/1,2,3" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/savedPosts/1,2,3"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/savedPosts/1,2,3';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/savedPosts/1,2,3'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('DELETE', url, headers=headers)
response.json()

Request      

DELETE api/savedPosts/{ids}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

ids   string   

The ID or comma-separated IDs list of saved post/listing(s). Example: 1,2,3

Saved Searches

Store/Delete saved search

requires authentication

Save a search result in favorite, or remove it from favorite.

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/savedSearches" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"url\": \"https:\\/\\/demo.Ecosystem.com\\/search\\/?q=test&l=\",
    \"count_posts\": 29
}"
const url = new URL(
    "http://127.0.0.1:8000/api/savedSearches"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "url": "https:\/\/demo.Ecosystem.com\/search\/?q=test&l=",
    "count_posts": 29
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/savedSearches';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'url' => 'https://demo.Ecosystem.com/search/?q=test&l=',
            'count_posts' => 29,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/savedSearches'
payload = {
    "url": "https:\/\/demo.Ecosystem.com\/search\/?q=test&l=",
    "count_posts": 29
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/savedSearches

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

url   string   

Search URL to save. Example: https://demo.Ecosystem.com/search/?q=test&l=

count_posts   integer   

The number of posts found for the URL. Example: 29

List saved searches

requires authentication

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/savedSearches?embed=&sort=created_at&perPage=2" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/savedSearches"
);

const params = {
    "embed": "",
    "sort": "created_at",
    "perPage": "2",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/savedSearches';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
            'sort' => 'created_at',
            'perPage' => '2',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/savedSearches'
params = {
  'embed': '',
  'sort': 'created_at',
  'perPage': '2',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/savedSearches

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Query Parameters

embed   string  optional  

The Comma-separated list of the category relationships for Eager Loading - Possible values: user,country.

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: created_at. Example: created_at

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

Get saved search

requires authentication

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/savedSearches/1?embed=" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/savedSearches/1"
);

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

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/savedSearches/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/savedSearches/1'
params = {
  'embed': '',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/savedSearches/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The ID of the saved search. Example: 1

Query Parameters

embed   string  optional  

The Comma-separated list of the category relationships for Eager Loading - Possible values: user,country,pictures,postType,category,city,country.

Delete saved search(es)

requires authentication

Example request:
curl --request DELETE \
    "http://127.0.0.1:8000/api/savedSearches/1,2,3" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/savedSearches/1,2,3"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/savedSearches/1,2,3';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/savedSearches/1,2,3'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('DELETE', url, headers=headers)
response.json()

Request      

DELETE api/savedSearches/{ids}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

ids   string   

The ID or comma-separated IDs list of saved search(es). Example: 1,2,3

Settings

List settings

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/settings" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/settings"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/settings';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/settings'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "app": {
            "name": "SHAREK FORSA",
            "logo": "app/logo/logo-6a0e625eb9d1a-403997822459.png",
            "logo_dark": "app/default/logo-dark.png",
            "logo_light": "app/default/logo-light.png",
            "favicon": "app/default/ico/favicon.png",
            "date_format": "YYYY-MM-DD",
            "datetime_format": "YYYY-MM-DD HH:mm",
            "date_from_now_modifier": "DIFF_RELATIVE_TO_NOW",
            "date_from_now_short": "0",
            "vector_charts_type": "morris_bar",
            "vector_charts_limit": "7",
            "show_countries_charts": "1",
            "countries_charts_limit": "5",
            "latest_entries_limit": "5",
            "general_settings_as_submenu_in_sidebar": "1",
            "dark_theme_enabled": "0",
            "system_theme_enabled": "0",
            "php_specific_date_format": "0",
            "logo_url": "http://127.0.0.1:8000/storage/app/logo\\thumbnails\\1500x1500-logo-6a0e625eb9d1a-403997822459.png",
            "logo_dark_url": "http://127.0.0.1:8000/storage/app/logo\\thumbnails\\1500x1500-logo-6a0e625eb9d1a-403997822459.png",
            "logo_light_url": "http://127.0.0.1:8000/storage/app/logo\\thumbnails\\1500x1500-logo-6a0e625eb9d1a-403997822459.png",
            "favicon_url": "http://127.0.0.1:8000/storage/app/default/ico/favicon.png"
        },
        "style": {
            "skin": "blueIzis",
            "page_width": "1200",
            "header_full_width": "0",
            "dark_header": "0",
            "header_shadow": "0",
            "header_background_class": "bg-body-tertiary",
            "header_animation": "1",
            "header_fixed_top": "1",
            "header_height_offset": "200",
            "fixed_dark_header": "0",
            "fixed_header_shadow": "1",
            "header_highlighted_btn_link": "listingCreationLink",
            "header_highlighted_btn_class": "btn-highlight",
            "logo_width": 216,
            "logo_height": 40,
            "logo_aspect_ratio": "1",
            "dark_footer": "1",
            "high_spacing_footer": "1",
            "footer_full_width": "0",
            "admin_logo_bg": "skin3",
            "admin_navbar_bg": "skin6",
            "admin_sidebar_type": "full",
            "admin_sidebar_bg": "skin5",
            "admin_sidebar_position": "1",
            "admin_header_position": "1",
            "admin_boxed_layout": "0",
            "admin_dark_theme": "0",
            "body_background_image_animation": "0",
            "header_highlighted_btn_outline": "0"
        },
        "listing_form": {
            "publication_form_type": "multi-steps-form",
            "city_selection": "modal",
            "picture_mandatory": "1",
            "listings_limit": "50",
            "pictures_limit": "5",
            "title_min_length": "2",
            "title_max_length": "150",
            "description_min_length": "5",
            "description_max_length": "6000",
            "tags_limit": "15",
            "tags_min_length": "2",
            "tags_max_length": "30",
            "guest_can_submit_listings": "0",
            "permanent_listings_enabled": "0",
            "default_package_type": "promotion",
            "utf8mb4_enabled": "0",
            "allow_emojis": "0",
            "cat_display_type": "c_bigIcon_list",
            "wysiwyg_editor": "tinymce",
            "auto_registration": "0"
        },
        "listings_list": {
            "display_browse_listings_link": "0",
            "display_mode": "grid-view",
            "show_left_sidebar": "1",
            "left_sidebar_offcanvas": "md",
            "min_price": "0",
            "max_price": "10000",
            "price_slider_step": "50",
            "show_category_icon": "7",
            "enable_cities_autocompletion": "1",
            "enable_diacritics": "0",
            "cities_extended_searches": "1",
            "distance_calculation_formula": "ST_Distance_Sphere",
            "search_distance_max": "500",
            "search_distance_default": "50",
            "search_distance_interval": "100",
            "premium_first": "0",
            "premium_first_category": "1",
            "premium_first_location": "1",
            "free_listings_in_premium": "0"
        },
        "listing_page": {
            "guest_can_contact_authors": "0",
            "pictures_slider": "swiper-horizontal",
            "similar_listings": "1",
            "similar_listings_in_carousel": "1"
        },
        "mail": {
            "sendmail_path": "/usr/sbin/sendmail -bs -i"
        },
        "sms": {
            "enable_phone_as_auth_field": "0",
            "default_auth_field": "email",
            "phone_of_countries": "local",
            "phone_validator": "isPossiblePhoneNumber",
            "phone_placeholder_type": "auto-0",
            "phone_verification": "1",
            "driver": null
        },
        "upload": {
            "file_types": "pdf,doc,docx,rtf,rtx,ppt,pptx,odt,odp,wps,jpg,jpeg,gif,png,avif,bmp,webp",
            "min_file_size": 0,
            "max_file_size": 2500,
            "image_types": "jpg,jpeg,gif,png,avif,bmp,webp",
            "image_quality": "90",
            "client_image_types": "jpg,png",
            "min_image_size": 0,
            "max_image_size": 2500,
            "img_resize_default_method": "resize",
            "img_resize_default_width": 1500,
            "img_resize_default_height": 1500,
            "img_resize_default_ratio": "1",
            "img_resize_default_upsize": "0",
            "img_resize_default_position": "center",
            "img_resize_default_bgColor": "ffffff",
            "img_resize_logo_method": "resize",
            "img_resize_logo_width": 485,
            "img_resize_logo_height": 90,
            "img_resize_logo_ratio": "1",
            "img_resize_logo_upsize": "0",
            "img_resize_logo_position": "center",
            "img_resize_logo_bgColor": "rgba(0, 0, 0, 0)",
            "img_resize_logo_max_method": "resize",
            "img_resize_logo_max_width": 430,
            "img_resize_logo_max_height": 80,
            "img_resize_logo_max_ratio": "1",
            "img_resize_logo_max_upsize": "0",
            "img_resize_logo_max_position": "center",
            "img_resize_logo_max_bgColor": "rgba(0, 0, 0, 0)",
            "img_resize_favicon_method": "resize",
            "img_resize_favicon_width": 32,
            "img_resize_favicon_height": 32,
            "img_resize_favicon_ratio": "1",
            "img_resize_favicon_upsize": "0",
            "img_resize_favicon_position": "center",
            "img_resize_favicon_bgColor": "rgba(0, 0, 0, 0)",
            "img_resize_cat_method": "resize",
            "img_resize_cat_width": 70,
            "img_resize_cat_height": 70,
            "img_resize_cat_ratio": "1",
            "img_resize_cat_upsize": "0",
            "img_resize_cat_position": "center",
            "img_resize_cat_bgColor": "rgba(0, 0, 0, 0)",
            "img_resize_bg_header_method": "resize",
            "img_resize_bg_header_width": 2000,
            "img_resize_bg_header_height": 1000,
            "img_resize_bg_header_ratio": "1",
            "img_resize_bg_header_upsize": "0",
            "img_resize_bg_header_position": "center",
            "img_resize_bg_header_bgColor": "ffffff",
            "img_resize_bg_body_method": "resize",
            "img_resize_bg_body_width": 2500,
            "img_resize_bg_body_height": 2500,
            "img_resize_bg_body_ratio": "1",
            "img_resize_bg_body_upsize": "0",
            "img_resize_bg_body_position": "center",
            "img_resize_bg_body_bgColor": "ffffff",
            "img_resize_picture_sm_method": "resizeCanvas",
            "img_resize_picture_sm_width": 120,
            "img_resize_picture_sm_height": 90,
            "img_resize_picture_sm_ratio": "1",
            "img_resize_picture_sm_upsize": "0",
            "img_resize_picture_sm_position": "center",
            "img_resize_picture_sm_bgColor": "ffffff",
            "img_resize_picture_md_method": "fit",
            "img_resize_picture_md_width": 320,
            "img_resize_picture_md_height": 240,
            "img_resize_picture_md_ratio": "1",
            "img_resize_picture_md_upsize": "0",
            "img_resize_picture_md_position": "center",
            "img_resize_picture_md_bgColor": "ffffff",
            "img_resize_picture_lg_method": "resize",
            "img_resize_picture_lg_width": 816,
            "img_resize_picture_lg_height": 460,
            "img_resize_picture_lg_ratio": "1",
            "img_resize_picture_lg_upsize": "0",
            "img_resize_picture_lg_position": "center",
            "img_resize_picture_lg_bgColor": "ffffff",
            "img_resize_avatar_method": "resize",
            "img_resize_avatar_width": 800,
            "img_resize_avatar_height": 800,
            "img_resize_avatar_ratio": "1",
            "img_resize_avatar_upsize": "0",
            "img_resize_avatar_position": "center",
            "img_resize_avatar_bgColor": "ffffff",
            "img_resize_company_logo_method": "resize",
            "img_resize_company_logo_width": 800,
            "img_resize_company_logo_height": 800,
            "img_resize_company_logo_ratio": "1",
            "img_resize_company_logo_upsize": "0",
            "img_resize_company_logo_position": "center",
            "img_resize_company_logo_bgColor": "rgba(0, 0, 0, 0)"
        },
        "localization": {
            "geoip_driver": "ipapi",
            "country_flag_shape": "circle",
            "show_country_flag": "in_next_logo",
            "auto_detect_language": "disabled",
            "show_languages_flags": "0",
            "default_country_code": "SA"
        },
        "security": {
            "honeypot_enabled": "1",
            "honeypot_name_field_name": "entity_field",
            "honeypot_valid_from_field_name": "valid_field",
            "honeypot_amount_of_seconds": "3",
            "honeypot_respond_to_spam_with": "blank_page",
            "captcha_delay": "1000",
            "recaptcha_version": "v2"
        },
        "auth": {
            "open_login_in_modal": "1",
            "login_max_attempts": "5",
            "login_decay_minutes": "15",
            "password_min_length": "6",
            "password_max_length": "30",
            "password_letters_required": "0",
            "password_mixedCase_required": "0",
            "password_numbers_required": "0",
            "password_symbols_required": "0",
            "password_uncompromised_required": "0",
            "password_uncompromised_threshold": "0",
            "email_validator_rfc": "1",
            "email_validator_strict": "0",
            "email_validator_dns": "0",
            "email_validator_spoof": "0",
            "email_validator_filter": "0",
            "otp_length": 4,
            "otp_expire_time_seconds": 300,
            "otp_cooldown_seconds": 60,
            "otp_max_attempts": 3,
            "otp_decay_minutes": 60,
            "max_login_lockout_attempts": 0,
            "max_resend_lockout_attempts": 15,
            "lockout_duration_minutes": 1440,
            "hero_image_path": "app/default/auth/login-bg-blurred.jpg",
            "hero_image_url": "http://127.0.0.1:8000/storage/app/default/auth\\thumbnails\\2500x2500-login-bg-blurred.jpg"
        },
        "social_auth": {
            "button_type": "loginWithDefault"
        },
        "social_link": {
            "facebook_page_url": "#",
            "twitter_url": "#",
            "linkedin_url": "#",
            "pinterest_url": "#",
            "instagram_url": "#",
            "tiktok_url": "#",
            "youtube_url": "#",
            "vimeo_url": "#",
            "vk_url": "#"
        },
        "social_share": {
            "facebook": "1",
            "twitter": "1",
            "linkedin": "1",
            "whatsapp": "1",
            "telegram": "1",
            "snapchat": "0",
            "messenger": "0",
            "pinterest": "0",
            "vk": "0",
            "tumblr": "0",
            "og_image_width": "1200",
            "og_image_height": "630"
        },
        "optimization": {
            "cache_driver": "file",
            "cache_expiration": "86400",
            "memcached_servers_1_host": "127.0.0.1",
            "memcached_servers_1_port": "11211",
            "redis_client": "predis",
            "redis_cluster": "predis",
            "redis_host": "127.0.0.1",
            "redis_port": "6379",
            "redis_database": "0",
            "queue_driver": "sync",
            "lazy_loading_activation": "0",
            "minify_html_activation": "0"
        },
        "seo": {
            "robots_txt": "User-agent: *\nAllow: /\n\nUser-agent: *\nDisallow: //admin/\nDisallow: /assets/\nDisallow: /css/\nDisallow: /js/\nDisallow: /vendor/\nDisallow: /main.php\nDisallow: /index.php\nDisallow: /mix-manifest.json\nDisallow: /*?display=*\nDisallow: /locale/en\nDisallow: /locale/fr\nDisallow: /locale/es\nDisallow: /locale/ar\nDisallow: /locale/pt\nDisallow: /locale/de\nDisallow: /locale/it\nDisallow: /locale/tr\nDisallow: /locale/ru\nDisallow: /locale/hi\nDisallow: /locale/bn\nDisallow: /locale/zh\nDisallow: /locale/ja\nDisallow: /locale/he\nDisallow: /locale/th\nDisallow: /locale/ro\nDisallow: /locale/ka\nDisallow: /auth/connect/facebook\nDisallow: /auth/connect/linkedin\nDisallow: /auth/connect/twitter\nDisallow: /auth/connect/google\n\nSitemap: http://127.0.0.1:8000/ecosystem-sitemap.xml\n",
            "robots_txt_sm_indexes": "1",
            "listing_hashed_id_enabled": "0",
            "listing_hashed_id_seo_redirection": "1"
        },
        "pagination": {
            "per_page": 10,
            "categories_per_page": 12,
            "cities_per_page": 40,
            "payments_per_page": 10,
            "posts_per_page": 12,
            "saved_posts_per_page": 10,
            "saved_search_per_page": 20,
            "subadmin1_per_page": 39,
            "subadmin2_per_page": 38,
            "subscriptions_per_page": 10,
            "threads_per_page": 20,
            "threads_messages_per_page": 10,
            "similar_posts_limit": 4,
            "categories_limit": 50,
            "cities_limit": 50,
            "auto_complete_cities_limit": 25,
            "subadmin1_select_limit": 200,
            "subadmin2_select_limit": 5000,
            "cities_select_limit": 25
        },
        "other": {
            "account_closure_enabled": "1",
            "cookie_consent_enabled": "0",
            "show_tips_messages": "1",
            "timer_new_messages_checking": 60000,
            "wysiwyg_editor": "tinymce",
            "carousel_slide_by_page": "0",
            "carousel_mouse_drag": "0",
            "carousel_loop": "1",
            "carousel_rewind": "0",
            "carousel_autoplay": "1",
            "carousel_autoplay_timeout": "1500",
            "carousel_autoplay_hover_pause": "1",
            "carousel_nav": "1",
            "carousel_nav_position": "bottom",
            "carousel_controls": "0",
            "carousel_ctrl_position": "top-end",
            "cookie_expiration": 1440
        },
        "cron": {
            "unactivated_listings_expiration": "30",
            "activated_listings_expiration": "30",
            "archived_listings_expiration": "7",
            "manually_archived_listings_expiration": "90"
        },
        "footer": {
            "hide_payment_plugins_logos": "1"
        },
        "backup": {
            "disable_notifications": "1",
            "keep_all_backups_for_days": "7",
            "keep_daily_backups_for_days": "16",
            "keep_weekly_backups_for_weeks": "8",
            "keep_monthly_backups_for_months": "4",
            "keep_yearly_backups_for_years": "2",
            "maximum_storage_in_megabytes": "5000"
        }
    }
}
 

Request      

GET api/settings

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Get setting

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/settings/app" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/settings/app"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/settings/app';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/settings/app'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "name": "SHAREK FORSA",
        "logo": "app/logo/logo-6a0e625eb9d1a-403997822459.png",
        "logo_dark": "app/default/logo-dark.png",
        "logo_light": "app/default/logo-light.png",
        "favicon": "app/default/ico/favicon.png",
        "date_format": "YYYY-MM-DD",
        "datetime_format": "YYYY-MM-DD HH:mm",
        "date_from_now_modifier": "DIFF_RELATIVE_TO_NOW",
        "date_from_now_short": "0",
        "vector_charts_type": "morris_bar",
        "vector_charts_limit": "7",
        "show_countries_charts": "1",
        "countries_charts_limit": "5",
        "latest_entries_limit": "5",
        "general_settings_as_submenu_in_sidebar": "1",
        "dark_theme_enabled": "0",
        "system_theme_enabled": "0",
        "php_specific_date_format": "0",
        "logo_url": "http://127.0.0.1:8000/storage/app/logo\\thumbnails\\1500x1500-logo-6a0e625eb9d1a-403997822459.png",
        "logo_dark_url": "http://127.0.0.1:8000/storage/app/logo\\thumbnails\\1500x1500-logo-6a0e625eb9d1a-403997822459.png",
        "logo_light_url": "http://127.0.0.1:8000/storage/app/logo\\thumbnails\\1500x1500-logo-6a0e625eb9d1a-403997822459.png",
        "favicon_url": "http://127.0.0.1:8000/storage/app/default/ico/favicon.png"
    }
}
 

Request      

GET api/settings/{key}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

key   string   

The setting's key. Example: app

Social Auth

Get target URL

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/auth/connect/" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/auth/connect/"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/auth/connect/';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/auth/connect/'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
vary: Origin
 

{
    "success": false,
    "message": "API endpoint not found."
}
 

Request      

GET api/auth/connect/{provider}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

provider   string   

The provider's name - Possible values: facebook, linkedin, or google.

Get user info

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/auth/connect//callback" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/auth/connect//callback"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/auth/connect//callback';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/auth/connect//callback'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
vary: Origin
 

{
    "success": false,
    "message": "API endpoint not found."
}
 

Request      

GET api/auth/connect/{provider}/callback

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

provider   string   

The provider's name - Possible values: facebook, linkedin, or google.

Threads

Store thread

Start a conversation. Creation of a new thread.

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/threads" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --form "name=John Doe"\
    --form "auth_field=email"\
    --form "email=john.doe@domain.tld"\
    --form "phone=ut"\
    --form "phone_country="\
    --form "body=Modi temporibus voluptas expedita voluptatibus voluptas veniam."\
    --form "post_id=2"\
    --form "captcha_key=doloremque"\
    --form "file_path=@C:\Users\Micros\AppData\Local\Temp\phpA851.tmp" 
const url = new URL(
    "http://127.0.0.1:8000/api/threads"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

const body = new FormData();
body.append('name', 'John Doe');
body.append('auth_field', 'email');
body.append('email', 'john.doe@domain.tld');
body.append('phone', 'ut');
body.append('phone_country', '');
body.append('body', 'Modi temporibus voluptas expedita voluptatibus voluptas veniam.');
body.append('post_id', '2');
body.append('captcha_key', 'doloremque');
body.append('file_path', document.querySelector('input[name="file_path"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/threads';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'multipart/form-data',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'multipart' => [
            [
                'name' => 'name',
                'contents' => 'John Doe'
            ],
            [
                'name' => 'auth_field',
                'contents' => 'email'
            ],
            [
                'name' => 'email',
                'contents' => 'john.doe@domain.tld'
            ],
            [
                'name' => 'phone',
                'contents' => 'ut'
            ],
            [
                'name' => 'phone_country',
                'contents' => ''
            ],
            [
                'name' => 'body',
                'contents' => 'Modi temporibus voluptas expedita voluptatibus voluptas veniam.'
            ],
            [
                'name' => 'post_id',
                'contents' => '2'
            ],
            [
                'name' => 'captcha_key',
                'contents' => 'doloremque'
            ],
            [
                'name' => 'file_path',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\phpA851.tmp', 'r')
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/threads'
files = {
  'name': (None, 'John Doe'),
  'auth_field': (None, 'email'),
  'email': (None, 'john.doe@domain.tld'),
  'phone': (None, 'ut'),
  'phone_country': (None, ''),
  'body': (None, 'Modi temporibus voluptas expedita voluptatibus voluptas veniam.'),
  'post_id': (None, '2'),
  'captcha_key': (None, 'doloremque'),
  'file_path': open('C:\Users\Micros\AppData\Local\Temp\phpA851.tmp', 'rb')}
payload = {
    "name": "John Doe",
    "auth_field": "email",
    "email": "john.doe@domain.tld",
    "phone": "ut",
    "phone_country": null,
    "body": "Modi temporibus voluptas expedita voluptatibus voluptas veniam.",
    "post_id": 2,
    "captcha_key": "doloremque"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'multipart/form-data',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, files=files)
response.json()

Request      

POST api/threads

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: multipart/form-data

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

name   string   

The thread's creator name. Example: John Doe

auth_field   string   

The user's auth field ('email' or 'phone'). Example: email

email   string  optional  

The thread's creator email address (Required when 'auth_field' value is 'email'). Example: john.doe@domain.tld

phone   string  optional  

The thread's creator mobile phone number (Required when 'auth_field' value is 'phone'). Example: ut

phone_country   string   

The user's phone number's country code (Required when the 'phone' field is filled).

body   string   

The name of the user. Example: Modi temporibus voluptas expedita voluptatibus voluptas veniam.

post_id   integer   

The related post ID. Example: 2

file_path   file  optional  

The thread attached file. Example: C:\Users\Micros\AppData\Local\Temp\phpA851.tmp

captcha_key   string  optional  

Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel). Example: doloremque

List threads

requires authentication

Get all logged user's threads. Filters:

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/threads?filter=unread&embed=&perPage=2" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/threads"
);

const params = {
    "filter": "unread",
    "embed": "",
    "perPage": "2",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/threads';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'filter' => 'unread',
            'embed' => '',
            'perPage' => '2',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/threads'
params = {
  'filter': 'unread',
  'embed': '',
  'perPage': '2',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/threads

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Query Parameters

filter   string  optional  

Filter for the list - Possible value: unread, started or important. Example: unread

embed   string  optional  

Comma-separated list of the post relationships for Eager Loading - Possible values: post.

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

Get thread

requires authentication

Get a thread (owned by the logged user) details

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/threads/8?embed=" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/threads/8"
);

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

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/threads/8';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/threads/8'
params = {
  'embed': '',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/threads/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The thread's ID. Example: 8

Query Parameters

embed   string  optional  

Comma-separated list of the post relationships for Eager Loading - Possible values: user,post,messages,participants.

Update thread

requires authentication

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/threads/111111" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --form "body=Modi temporibus voluptas expedita voluptatibus voluptas veniam."\
    --form "file_path=@C:\Users\Micros\AppData\Local\Temp\phpAB4F.tmp" 
const url = new URL(
    "http://127.0.0.1:8000/api/threads/111111"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

const body = new FormData();
body.append('body', 'Modi temporibus voluptas expedita voluptatibus voluptas veniam.');
body.append('file_path', document.querySelector('input[name="file_path"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/threads/111111';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'multipart/form-data',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'multipart' => [
            [
                'name' => 'body',
                'contents' => 'Modi temporibus voluptas expedita voluptatibus voluptas veniam.'
            ],
            [
                'name' => 'file_path',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\phpAB4F.tmp', 'r')
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/threads/111111'
files = {
  'body': (None, 'Modi temporibus voluptas expedita voluptatibus voluptas veniam.'),
  'file_path': open('C:\Users\Micros\AppData\Local\Temp\phpAB4F.tmp', 'rb')}
payload = {
    "body": "Modi temporibus voluptas expedita voluptatibus voluptas veniam."
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'multipart/form-data',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, files=files)
response.json()

Request      

PUT api/threads/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: multipart/form-data

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The thread's ID. Example: 111111

Body Parameters

body   string   

The name of the user. Example: Modi temporibus voluptas expedita voluptatibus voluptas veniam.

file_path   file  optional  

The thread attached file. Example: C:\Users\Micros\AppData\Local\Temp\phpAB4F.tmp

Delete thread(s)

requires authentication

Example request:
curl --request DELETE \
    "http://127.0.0.1:8000/api/threads/111111,222222,333333" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/threads/111111,222222,333333"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/threads/111111,222222,333333';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/threads/111111,222222,333333'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('DELETE', url, headers=headers)
response.json()

Request      

DELETE api/threads/{ids}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

ids   string   

The ID or comma-separated IDs list of thread(s). Example: 111111,222222,333333

Bulk updates

requires authentication

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/threads/bulkUpdate/111111,222222,333333?type=incidunt" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/threads/bulkUpdate/111111,222222,333333"
);

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

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/threads/bulkUpdate/111111,222222,333333';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'type' => 'incidunt',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/threads/bulkUpdate/111111,222222,333333'
params = {
  'type': 'incidunt',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, params=params)
response.json()

Request      

POST api/threads/bulkUpdate/{ids?}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

ids   string   

The ID or comma-separated IDs list of thread(s).. Example: 111111,222222,333333

Query Parameters

type   string   

The type of action to execute (markAsRead, markAsUnread, markAsImportant, markAsNotImportant or markAllAsRead). Example: incidunt

List messages

requires authentication

Get all thread's messages

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/threads/293/messages?embed=&sort=created_at&perPage=2" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/threads/293/messages"
);

const params = {
    "embed": "",
    "sort": "created_at",
    "perPage": "2",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/threads/293/messages';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
            'sort' => 'created_at',
            'perPage' => '2',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/threads/293/messages'
params = {
  'embed': '',
  'sort': 'created_at',
  'perPage': '2',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/threads/{threadId}/messages

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

threadId   integer   

The thread's ID. Example: 293

Query Parameters

embed   string  optional  

Comma-separated list of the post relationships for Eager Loading - Possible values: user.

sort   string  optional  

The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: created_at. Example: created_at

perPage   integer  optional  

Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2

Get message

requires authentication

Get a thread's message (owned by the logged user) details

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/threads/293/messages/3545?embed=" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/threads/293/messages/3545"
);

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

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/threads/293/messages/3545';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/threads/293/messages/3545'
params = {
  'embed': '',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/threads/{threadId}/messages/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

threadId   integer   

The thread's ID. Example: 293

id   integer   

The thread's message's ID. Example: 3545

Query Parameters

embed   string  optional  

Comma-separated list of the post relationships for Eager Loading - Possible values: thread,user.

Users

List genders

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/genders" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/genders"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/genders';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/genders'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "1": {
            "id": 1,
            "name": "MALE",
            "label": "Male",
            "title": "Mr."
        },
        "2": {
            "id": 2,
            "name": "FEMALE",
            "label": "Female",
            "title": "Mrs"
        }
    }
}
 

Request      

GET api/genders

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Get gender

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/genders/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/genders/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/genders/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/genders/1'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "id": 1,
        "name": "MALE",
        "label": "Male",
        "title": "Mr."
    }
}
 

Request      

GET api/genders/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The gender's ID. Example: 1

List user types

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/userTypes" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/userTypes"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/userTypes';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/userTypes'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "2": {
            "id": 2,
            "name": "INDIVIDUAL",
            "label": "Individual"
        },
        "1": {
            "id": 1,
            "name": "PROFESSIONAL",
            "label": "Professional"
        }
    }
}
 

Request      

GET api/userTypes

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Get user type

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/userTypes/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/userTypes/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/userTypes/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/userTypes/1'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "id": 1,
        "name": "PROFESSIONAL",
        "label": "Professional"
    }
}
 

Request      

GET api/userTypes/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The user type's ID. Example: 1

List users

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/users" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/users"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/users';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/users'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (403):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Forbidden",
    "result": null
}
 

Request      

GET api/users

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Get user

requires authentication

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/users/3?embed=" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/users/3"
);

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

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/users/3';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'query' => [
            'embed' => '',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/users/3'
params = {
  'embed': '',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": true,
    "message": null,
    "result": {
        "id": 3,
        "name": "خالد الشمري",
        "username": "demo.founder3",
        "two_factor_enabled": false,
        "two_factor_method": "email",
        "updated_at": "2026-05-21T00:47:21.000000Z",
        "original_updated_at": "2026-05-21 00:47:21",
        "original_last_activity": null,
        "created_at_formatted": "2026-05-21 01:10",
        "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
        "p_is_online": false,
        "country_flag_url": "http://127.0.0.1:8000/images/flags/circle/16/sa.png"
    }
}
 

Request      

GET api/users/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_KEY}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The user's ID. Example: 3

Query Parameters

embed   string  optional  

Comma-separated list of the post relationships for Eager Loading - Possible values: country,userType,gender,countPostsViews,countPosts,countSavedPosts.

Store user

Example request:
curl --request POST \
    "http://127.0.0.1:8000/api/users" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --form "name=John Doe"\
    --form "country_code=US"\
    --form "auth_field=email"\
    --form "phone=+17656766467"\
    --form "phone_country="\
    --form "password=js!X07$z61hLA"\
    --form "accept_terms=1"\
    --form "email=john.doe@domain.tld"\
    --form "ecosystem_role=founder"\
    --form "accept_ecosystem_terms=1"\
    --form "language_code=en"\
    --form "user_type_id=1"\
    --form "gender_id=1"\
    --form "phone_hidden="\
    --form "username=john_doe"\
    --form "password_confirmation=js!X07$z61hLA"\
    --form "disable_comments=1"\
    --form "create_from_ip=127.0.0.1"\
    --form "accept_marketing_offers="\
    --form "time_zone=America/New_York"\
    --form "captcha_key=rerum"\
    --form "photo_path=@C:\Users\Micros\AppData\Local\Temp\phpD52B.tmp" 
const url = new URL(
    "http://127.0.0.1:8000/api/users"
);

const headers = {
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

const body = new FormData();
body.append('name', 'John Doe');
body.append('country_code', 'US');
body.append('auth_field', 'email');
body.append('phone', '+17656766467');
body.append('phone_country', '');
body.append('password', 'js!X07$z61hLA');
body.append('accept_terms', '1');
body.append('email', 'john.doe@domain.tld');
body.append('ecosystem_role', 'founder');
body.append('accept_ecosystem_terms', '1');
body.append('language_code', 'en');
body.append('user_type_id', '1');
body.append('gender_id', '1');
body.append('phone_hidden', '');
body.append('username', 'john_doe');
body.append('password_confirmation', 'js!X07$z61hLA');
body.append('disable_comments', '1');
body.append('create_from_ip', '127.0.0.1');
body.append('accept_marketing_offers', '');
body.append('time_zone', 'America/New_York');
body.append('captcha_key', 'rerum');
body.append('photo_path', document.querySelector('input[name="photo_path"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/users';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'multipart/form-data',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'multipart' => [
            [
                'name' => 'name',
                'contents' => 'John Doe'
            ],
            [
                'name' => 'country_code',
                'contents' => 'US'
            ],
            [
                'name' => 'auth_field',
                'contents' => 'email'
            ],
            [
                'name' => 'phone',
                'contents' => '+17656766467'
            ],
            [
                'name' => 'phone_country',
                'contents' => ''
            ],
            [
                'name' => 'password',
                'contents' => 'js!X07$z61hLA'
            ],
            [
                'name' => 'accept_terms',
                'contents' => '1'
            ],
            [
                'name' => 'email',
                'contents' => 'john.doe@domain.tld'
            ],
            [
                'name' => 'ecosystem_role',
                'contents' => 'founder'
            ],
            [
                'name' => 'accept_ecosystem_terms',
                'contents' => '1'
            ],
            [
                'name' => 'language_code',
                'contents' => 'en'
            ],
            [
                'name' => 'user_type_id',
                'contents' => '1'
            ],
            [
                'name' => 'gender_id',
                'contents' => '1'
            ],
            [
                'name' => 'phone_hidden',
                'contents' => ''
            ],
            [
                'name' => 'username',
                'contents' => 'john_doe'
            ],
            [
                'name' => 'password_confirmation',
                'contents' => 'js!X07$z61hLA'
            ],
            [
                'name' => 'disable_comments',
                'contents' => '1'
            ],
            [
                'name' => 'create_from_ip',
                'contents' => '127.0.0.1'
            ],
            [
                'name' => 'accept_marketing_offers',
                'contents' => ''
            ],
            [
                'name' => 'time_zone',
                'contents' => 'America/New_York'
            ],
            [
                'name' => 'captcha_key',
                'contents' => 'rerum'
            ],
            [
                'name' => 'photo_path',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\phpD52B.tmp', 'r')
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/users'
files = {
  'name': (None, 'John Doe'),
  'country_code': (None, 'US'),
  'auth_field': (None, 'email'),
  'phone': (None, '+17656766467'),
  'phone_country': (None, ''),
  'password': (None, 'js!X07$z61hLA'),
  'accept_terms': (None, '1'),
  'email': (None, 'john.doe@domain.tld'),
  'ecosystem_role': (None, 'founder'),
  'accept_ecosystem_terms': (None, '1'),
  'language_code': (None, 'en'),
  'user_type_id': (None, '1'),
  'gender_id': (None, '1'),
  'phone_hidden': (None, ''),
  'username': (None, 'john_doe'),
  'password_confirmation': (None, 'js!X07$z61hLA'),
  'disable_comments': (None, '1'),
  'create_from_ip': (None, '127.0.0.1'),
  'accept_marketing_offers': (None, ''),
  'time_zone': (None, 'America/New_York'),
  'captcha_key': (None, 'rerum'),
  'photo_path': open('C:\Users\Micros\AppData\Local\Temp\phpD52B.tmp', 'rb')}
payload = {
    "name": "John Doe",
    "country_code": "US",
    "auth_field": "email",
    "phone": "+17656766467",
    "phone_country": null,
    "password": "js!X07$z61hLA",
    "accept_terms": true,
    "email": "john.doe@domain.tld",
    "ecosystem_role": "founder",
    "accept_ecosystem_terms": true,
    "language_code": "en",
    "user_type_id": 1,
    "gender_id": 1,
    "phone_hidden": false,
    "username": "john_doe",
    "password_confirmation": "js!X07$z61hLA",
    "disable_comments": true,
    "create_from_ip": "127.0.0.1",
    "accept_marketing_offers": false,
    "time_zone": "America\/New_York",
    "captcha_key": "rerum"
}
headers = {
  'Content-Type': 'multipart/form-data',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('POST', url, headers=headers, files=files)
response.json()

Request      

POST api/users

Headers

Content-Type      

Example: multipart/form-data

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

Body Parameters

name   string   

The name of the user. Example: John Doe

country_code   string   

The code of the user's country. Example: US

auth_field   string   

The user's auth field ('email' or 'phone'). Example: email

phone   string  optional  

The mobile phone number of the user (Required when 'auth_field' value is 'phone'). Example: +17656766467

phone_country   string   

The user's phone number's country code (Required when the 'phone' field is filled).

password   string   

The user's password. Example: js!X07$z61hLA

accept_terms   boolean   

Field to allow user to accept or not the website terms. Example: true

email   string  optional  

The user's email address (Required when 'auth_field' value is 'email'). Example: john.doe@domain.tld

ecosystem_role   string  optional  

Example: founder

Must be one of:
  • founder
  • investor
  • consultant
  • feasibility_provider
  • financial_accountant
accept_ecosystem_terms   boolean   

Must be accepted. Example: true

language_code   string  optional  

The code of the user's spoken language. Example: en

user_type_id   integer  optional  

The ID of user type. Example: 1

gender_id   integer  optional  

The ID of gender. Example: 1

photo_path   file  optional  

The file of user photo. Example: C:\Users\Micros\AppData\Local\Temp\phpD52B.tmp

phone_hidden   boolean  optional  

Field to hide or show the user phone number in public. Example: false

username   string  optional  

The user's username. Example: john_doe

password_confirmation   string   

The confirmation of the user's password. Example: js!X07$z61hLA

disable_comments   boolean  optional  

Field to disable or enable comments on the user's listings. Example: true

create_from_ip   string   

The user's IP address. Example: 127.0.0.1

accept_marketing_offers   boolean  optional  

Field to allow user to accept or not marketing offers sending. Example: false

time_zone   string  optional  

The user's time zone. Example: America/New_York

captcha_key   string  optional  

Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel). Example: rerum

User's mini stats

requires authentication

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/users/3/stats" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/users/3/stats"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/users/3/stats';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/users/3/stats'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/users/{id}/stats

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The user's ID. Example: 3

Delete user's photo

requires authentication

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/users/999999/photo/delete" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/users/999999/photo/delete"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/users/999999/photo/delete';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/users/999999/photo/delete'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (401):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Unauthenticated or Token Expired, Please Login.",
    "result": null,
    "error": "Unauthenticated or Token Expired, Please Login."
}
 

Request      

GET api/users/{id}/photo/delete

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The user's ID. Example: 999999

Update user's photo

requires authentication

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/users/999999/photo" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --form "latest_update_ip=127.0.0.1"\
    --form "photo_path=@C:\Users\Micros\AppData\Local\Temp\phpD7EB.tmp" 
const url = new URL(
    "http://127.0.0.1:8000/api/users/999999/photo"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

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

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/users/999999/photo';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'multipart/form-data',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'multipart' => [
            [
                'name' => 'latest_update_ip',
                'contents' => '127.0.0.1'
            ],
            [
                'name' => 'photo_path',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\phpD7EB.tmp', 'r')
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/users/999999/photo'
files = {
  'latest_update_ip': (None, '127.0.0.1'),
  'photo_path': open('C:\Users\Micros\AppData\Local\Temp\phpD7EB.tmp', 'rb')}
payload = {
    "latest_update_ip": "127.0.0.1"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'multipart/form-data',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, files=files)
response.json()

Request      

PUT api/users/{id}/photo

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: multipart/form-data

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The user's ID. Example: 999999

Body Parameters

photo_path   file   

Must be a file. Must be at least 0 kilobytes. Must not be greater than 2500 kilobytes. Example: C:\Users\Micros\AppData\Local\Temp\phpD7EB.tmp

latest_update_ip   string   

The user's IP address. Example: 127.0.0.1

Update user's preferences

requires authentication

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/users/999999/preferences" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"disable_comments\": true,
    \"latest_update_ip\": \"127.0.0.1\",
    \"accept_terms\": true,
    \"accept_marketing_offers\": false,
    \"time_zone\": \"America\\/New_York\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/users/999999/preferences"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "disable_comments": true,
    "latest_update_ip": "127.0.0.1",
    "accept_terms": true,
    "accept_marketing_offers": false,
    "time_zone": "America\/New_York"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/users/999999/preferences';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'disable_comments' => true,
            'latest_update_ip' => '127.0.0.1',
            'accept_terms' => true,
            'accept_marketing_offers' => false,
            'time_zone' => 'America/New_York',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/users/999999/preferences'
payload = {
    "disable_comments": true,
    "latest_update_ip": "127.0.0.1",
    "accept_terms": true,
    "accept_marketing_offers": false,
    "time_zone": "America\/New_York"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Request      

PUT api/users/{id}/preferences

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The user's ID. Example: 999999

Body Parameters

disable_comments   boolean  optional  

Field to disable or enable comments on the user's listings. Example: true

latest_update_ip   string   

The user's IP address. Example: 127.0.0.1

accept_terms   boolean   

Field to allow user to accept or not the website terms. Example: true

accept_marketing_offers   boolean  optional  

Field to allow user to accept or not marketing offers sending. Example: false

time_zone   string  optional  

The user's time zone. Example: America/New_York

Update the user's theme preference

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/users/999999/save-theme-preference" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --data "{
    \"theme\": \"light, dark or system\"
}"
const url = new URL(
    "http://127.0.0.1:8000/api/users/999999/save-theme-preference"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

let body = {
    "theme": "light, dark or system"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/users/999999/save-theme-preference';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'json' => [
            'theme' => 'light, dark or system',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/users/999999/save-theme-preference'
payload = {
    "theme": "light, dark or system"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Request      

PUT api/users/{id}/save-theme-preference

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The user's ID. Example: 999999

Body Parameters

theme   string   

The user's theme preference value. Example: light, dark or system

Update user

requires authentication

Example request:
curl --request PUT \
    "http://127.0.0.1:8000/api/users/999999" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs" \
    --form "name=John Doe"\
    --form "auth_field=email"\
    --form "phone=+17656766467"\
    --form "phone_country="\
    --form "username=john_doe"\
    --form "email=john.doe@domain.tld"\
    --form "country_code=US"\
    --form "language_code=en"\
    --form "user_type_id=1"\
    --form "gender_id=1"\
    --form "remove_photo=0"\
    --form "phone_hidden="\
    --form "password=js!X07$z61hLA"\
    --form "password_confirmation=js!X07$z61hLA"\
    --form "disable_comments=1"\
    --form "latest_update_ip=127.0.0.1"\
    --form "accept_terms=1"\
    --form "accept_marketing_offers="\
    --form "time_zone=America/New_York"\
    --form "photo_path=@C:\Users\Micros\AppData\Local\Temp\phpD86A.tmp" 
const url = new URL(
    "http://127.0.0.1:8000/api/users/999999"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

const body = new FormData();
body.append('name', 'John Doe');
body.append('auth_field', 'email');
body.append('phone', '+17656766467');
body.append('phone_country', '');
body.append('username', 'john_doe');
body.append('email', 'john.doe@domain.tld');
body.append('country_code', 'US');
body.append('language_code', 'en');
body.append('user_type_id', '1');
body.append('gender_id', '1');
body.append('remove_photo', '0');
body.append('phone_hidden', '');
body.append('password', 'js!X07$z61hLA');
body.append('password_confirmation', 'js!X07$z61hLA');
body.append('disable_comments', '1');
body.append('latest_update_ip', '127.0.0.1');
body.append('accept_terms', '1');
body.append('accept_marketing_offers', '');
body.append('time_zone', 'America/New_York');
body.append('photo_path', document.querySelector('input[name="photo_path"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/users/999999';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'multipart/form-data',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
        'multipart' => [
            [
                'name' => 'name',
                'contents' => 'John Doe'
            ],
            [
                'name' => 'auth_field',
                'contents' => 'email'
            ],
            [
                'name' => 'phone',
                'contents' => '+17656766467'
            ],
            [
                'name' => 'phone_country',
                'contents' => ''
            ],
            [
                'name' => 'username',
                'contents' => 'john_doe'
            ],
            [
                'name' => 'email',
                'contents' => 'john.doe@domain.tld'
            ],
            [
                'name' => 'country_code',
                'contents' => 'US'
            ],
            [
                'name' => 'language_code',
                'contents' => 'en'
            ],
            [
                'name' => 'user_type_id',
                'contents' => '1'
            ],
            [
                'name' => 'gender_id',
                'contents' => '1'
            ],
            [
                'name' => 'remove_photo',
                'contents' => '0'
            ],
            [
                'name' => 'phone_hidden',
                'contents' => ''
            ],
            [
                'name' => 'password',
                'contents' => 'js!X07$z61hLA'
            ],
            [
                'name' => 'password_confirmation',
                'contents' => 'js!X07$z61hLA'
            ],
            [
                'name' => 'disable_comments',
                'contents' => '1'
            ],
            [
                'name' => 'latest_update_ip',
                'contents' => '127.0.0.1'
            ],
            [
                'name' => 'accept_terms',
                'contents' => '1'
            ],
            [
                'name' => 'accept_marketing_offers',
                'contents' => ''
            ],
            [
                'name' => 'time_zone',
                'contents' => 'America/New_York'
            ],
            [
                'name' => 'photo_path',
                'contents' => fopen('C:\Users\Micros\AppData\Local\Temp\phpD86A.tmp', 'r')
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/users/999999'
files = {
  'name': (None, 'John Doe'),
  'auth_field': (None, 'email'),
  'phone': (None, '+17656766467'),
  'phone_country': (None, ''),
  'username': (None, 'john_doe'),
  'email': (None, 'john.doe@domain.tld'),
  'country_code': (None, 'US'),
  'language_code': (None, 'en'),
  'user_type_id': (None, '1'),
  'gender_id': (None, '1'),
  'remove_photo': (None, '0'),
  'phone_hidden': (None, ''),
  'password': (None, 'js!X07$z61hLA'),
  'password_confirmation': (None, 'js!X07$z61hLA'),
  'disable_comments': (None, '1'),
  'latest_update_ip': (None, '127.0.0.1'),
  'accept_terms': (None, '1'),
  'accept_marketing_offers': (None, ''),
  'time_zone': (None, 'America/New_York'),
  'photo_path': open('C:\Users\Micros\AppData\Local\Temp\phpD86A.tmp', 'rb')}
payload = {
    "name": "John Doe",
    "auth_field": "email",
    "phone": "+17656766467",
    "phone_country": null,
    "username": "john_doe",
    "email": "john.doe@domain.tld",
    "country_code": "US",
    "language_code": "en",
    "user_type_id": 1,
    "gender_id": 1,
    "remove_photo": 0,
    "phone_hidden": false,
    "password": "js!X07$z61hLA",
    "password_confirmation": "js!X07$z61hLA",
    "disable_comments": true,
    "latest_update_ip": "127.0.0.1",
    "accept_terms": true,
    "accept_marketing_offers": false,
    "time_zone": "America\/New_York"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'multipart/form-data',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('PUT', url, headers=headers, files=files)
response.json()

Request      

PUT api/users/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: multipart/form-data

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The user's ID. Example: 999999

Body Parameters

name   string   

The name of the user. Example: John Doe

auth_field   string   

The user's auth field ('email' or 'phone'). Example: email

phone   string  optional  

The mobile phone number of the user (Required when 'auth_field' value is 'phone'). Example: +17656766467

phone_country   string   

The user's phone number's country code (Required when the 'phone' field is filled).

username   string  optional  

The user's username. Example: john_doe

email   string   

The user's email address (Required when 'auth_field' value is 'email'). Example: john.doe@domain.tld

country_code   string   

The code of the user's country. Example: US

language_code   string  optional  

The code of the user's spoken language. Example: en

user_type_id   integer  optional  

The ID of user type. Example: 1

gender_id   integer  optional  

The ID of gender. Example: 1

photo_path   file  optional  

The file of user photo. Example: C:\Users\Micros\AppData\Local\Temp\phpD86A.tmp

remove_photo   integer  optional  

Enable the user photo removal ('0' or '1'). When its value is '1' the user's photo file will be removed and the 'photo_path' column will be empty. Example: 0

phone_hidden   boolean  optional  

Field to hide or show the user phone number in public. Example: false

password   string   

The user's password. Example: js!X07$z61hLA

password_confirmation   string   

The confirmation of the user's password. Example: js!X07$z61hLA

disable_comments   boolean  optional  

Field to disable or enable comments on the user's listings. Example: true

latest_update_ip   string   

The user's IP address. Example: 127.0.0.1

accept_terms   boolean   

Field to allow user to accept or not the website terms. Example: true

accept_marketing_offers   boolean  optional  

Field to allow user to accept or not marketing offers sending. Example: false

time_zone   string  optional  

The user's time zone. Example: America/New_York

Delete user

requires authentication

Example request:
curl --request DELETE \
    "http://127.0.0.1:8000/api/users/999999" \
    --header "Authorization: Bearer {YOUR_AUTH_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/users/999999"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/users/999999';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_TOKEN}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/users/999999'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_TOKEN}',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('DELETE', url, headers=headers)
response.json()

Request      

DELETE api/users/{id}

Headers

Authorization      

Example: Bearer {YOUR_AUTH_TOKEN}

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

id   integer   

The user's ID. Example: 999999

Verification

Email: Re-send link

Re-send email verification link to the user

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/auth/verify/users/3/resend/email" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/auth/verify/users/3/resend/email"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/auth/verify/users/3/resend/email';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/auth/verify/users/3/resend/email'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Your Email address is already verified.",
    "result": {
        "id": 3,
        "name": "خالد الشمري",
        "username": "demo.founder3",
        "two_factor_enabled": false,
        "two_factor_method": "email",
        "updated_at": "2026-05-21T00:47:21.000000Z",
        "original_updated_at": "2026-05-21 00:47:21",
        "original_last_activity": null,
        "created_at_formatted": "2026-05-21 01:10",
        "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
        "p_is_online": false,
        "country_flag_url": "http://127.0.0.1:8000/images/flags/circle/16/sa.png"
    },
    "extra": {
        "isUnverifiedField": false,
        "fieldVerificationSent": false,
        "resendUrl": "http://127.0.0.1:8000/auth/verify/users/3/resend/email",
        "field": "email",
        "fieldValue": "demo.founder3@platform.test",
        "fieldHiddenValue": "de**********************est",
        "resendLocked": false
    }
}
 

Request      

GET api/auth/verify/{entityMetadataKey}/{entityId}/resend/email

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

entityMetadataKey   string   

The slug of the entity to verify ('users' or 'posts'). Example: users

entityId   integer   

The entity/model identifier (ID). Example: 3

SMS: Re-send code

Re-send mobile phone verification token by SMS

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/auth/verify/users/3/resend/sms" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/auth/verify/users/3/resend/sms"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/auth/verify/users/3/resend/sms';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/auth/verify/users/3/resend/sms'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "Your Phone Number is already verified.",
    "result": {
        "id": 3,
        "name": "خالد الشمري",
        "username": "demo.founder3",
        "two_factor_enabled": false,
        "two_factor_method": "email",
        "updated_at": "2026-05-21T00:47:21.000000Z",
        "original_updated_at": "2026-05-21 00:47:21",
        "original_last_activity": null,
        "created_at_formatted": "2026-05-21 01:10",
        "photo_url": "http://127.0.0.1:8000/storage/app/default/user.png",
        "p_is_online": false,
        "country_flag_url": "http://127.0.0.1:8000/images/flags/circle/16/sa.png"
    },
    "extra": {
        "isUnverifiedField": false,
        "fieldVerificationSent": false,
        "resendUrl": "http://127.0.0.1:8000/api/auth/verify/users/3/resend/sms",
        "field": "phone",
        "fieldValue": "",
        "fieldHiddenValue": "********",
        "resendLocked": false
    }
}
 

Request      

GET api/auth/verify/{entityMetadataKey}/{entityId}/resend/sms

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

entityMetadataKey   string   

The slug of the entity to verify ('users' or 'posts'). Example: users

entityId   integer   

The entity/model identifier (ID). Example: 3

Verification

Verify the user's email address or mobile phone number

Example request:
curl --request GET \
    --get "http://127.0.0.1:8000/api/auth/verify/users/email/" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --header "Content-Language: en" \
    --header "X-AppApiToken: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=" \
    --header "X-AppType: docs"
const url = new URL(
    "http://127.0.0.1:8000/api/auth/verify/users/email/"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "Content-Language": "en",
    "X-AppApiToken": "YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=",
    "X-AppType": "docs",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'http://127.0.0.1:8000/api/auth/verify/users/email/';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
            'Content-Language' => 'en',
            'X-AppApiToken' => 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
            'X-AppType' => 'docs',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'http://127.0.0.1:8000/api/auth/verify/users/email/'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Content-Language': 'en',
  'X-AppApiToken': 'YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=',
  'X-AppType': 'docs'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (400):

Show headers
content-type: application/json; charset=UTF-8
cache-control: no-cache, private
vary: Origin
 

{
    "success": false,
    "message": "The verification token or code is missing.",
    "result": null
}
 

Request      

GET api/auth/verify/{entityMetadataKey}/{field}/{token?}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Content-Language      

Example: en

X-AppApiToken      

Example: YnQwbEJFajJIT3g0R0xCTjlDYmFFcGRQeWsyRk5tb0g=

X-AppType      

Example: docs

URL Parameters

entityMetadataKey   string   

The slug of the entity to verify ('users' or 'posts'). Example: users

field   string   

The field to verify. Example: email

token   string   

The verification token.

Additional resources

Maintainer documentation (Markdown)

File Language Content
docs/api/README.md EN index Entry point
docs/api/INVESTMENT_PLATFORM_EN.md English Platform guide
docs/api/ECOSYSTEM_API_EN.md English Full REST reference
docs/api/ECOSYSTEM_WEB_EN.md English Web admin & account routes
docs/api/ECOSYSTEM_EXAMPLES_EN.md English curl examples
docs/api/INVESTMENT_PLATFORM_AR.md Arabic Platform guide
docs/api/ECOSYSTEM_API_AR.md Arabic Full REST reference

Regenerate Scribe output

php artisan scribe:generate

Source files for Investment Platform English copy: