{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/biqbang.com"
        }
    ],
    "info": {
        "name": "Biqbang API Documentation",
        "_postman_id": "f0e395f0-1f62-4f9b-a5aa-a7940c125421",
        "description": "v1.2.0",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Advanced Security",
            "description": "\nMulti-layer security management including hardware wallet integration, biometric authentication,\nsocial recovery mechanisms, and advanced session management.",
            "item": [
                {
                    "name": "Setup Hardware Wallet Integration",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/security\/hardware-wallet",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/security\/hardware-wallet"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_type\":\"ledger\",\"derivation_path\":\"m\\\/44'\\\/60'\\\/0'\\\/0\",\"public_key\":\"sed\",\"firmware_version\":\"2.1.0\",\"require_physical_confirmation\":true}"
                        },
                        "description": "Connect and configure hardware wallet for enhanced security.\nSupports Ledger, Trezor, and other major hardware wallets."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"integration_id\": \"hw_int_abc123def\",\n    \"wallet_type\": \"ledger\",\n    \"status\": \"connected\",\n    \"security_level\": \"maximum\",\n    \"configuration\": {\n      \"derivation_path\": \"m\/44'\/60'\/0'\/0\",\n      \"addresses_generated\": 5,\n      \"primary_address\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb7\",\n      \"backup_addresses\": [\n        \"0x8626f6940E2eb28930eFb4CeF49B2d1F2C9C1199\",\n        \"0xdD2FD4581271e230360230F9337D5c0430Bf44C0\"\n      ]\n    },\n    \"security_features\": {\n      \"pin_protection\": true,\n      \"passphrase_enabled\": false,\n      \"auto_lock_minutes\": 5,\n      \"transaction_verification\": \"on_device\",\n      \"firmware_verified\": true,\n      \"secure_element\": true\n    },\n    \"supported_operations\": [\n      \"sign_transaction\",\n      \"sign_message\",\n      \"get_addresses\",\n      \"verify_address\"\n    ],\n    \"limits\": {\n      \"daily_transaction_limit\": \"10000.00\",\n      \"per_transaction_limit\": \"5000.00\",\n      \"whitelist_only\": false,\n      \"time_lock_hours\": 0\n    },\n    \"backup_recovery\": {\n      \"recovery_shares\": 0,\n      \"social_recovery_enabled\": false,\n      \"emergency_contact\": null\n    },\n    \"last_interaction\": null,\n    \"created_at\": \"2025-01-30T16:00:00Z\"\n  },\n  \"message\": \"Hardware wallet integrated successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"error\": \"Hardware wallet connection failed\",\n  \"code\": \"HW_CONNECTION_FAILED\",\n  \"details\": {\n    \"reason\": \"Device not detected\",\n    \"troubleshooting\": [\n      \"Ensure device is connected\",\n      \"Unlock device with PIN\",\n      \"Open the appropriate app on device\"\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Enable Biometric Authentication",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/security\/biometric",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/security\/biometric"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"biometric_type\":\"fingerprint\",\"device_id\":\"device_abc123\",\"biometric_data\":\"veritatis\",\"fallback_method\":\"pin\",\"require_liveness\":true}"
                        },
                        "description": "Setup biometric authentication using fingerprint, face recognition, or voice patterns.\nProvides seamless and secure authentication for sensitive operations."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"biometric_id\": \"bio_auth_xyz789\",\n    \"type\": \"fingerprint\",\n    \"status\": \"enrolled\",\n    \"device_info\": {\n      \"device_id\": \"device_abc123\",\n      \"device_name\": \"iPhone 14 Pro\",\n      \"os_version\": \"iOS 17.2\",\n      \"biometric_hardware\": \"Touch ID Gen 3\",\n      \"secure_enclave\": true\n    },\n    \"security_config\": {\n      \"encryption_algorithm\": \"AES-256-GCM\",\n      \"template_storage\": \"secure_enclave\",\n      \"match_threshold\": 0.95,\n      \"false_acceptance_rate\": \"1:50000\",\n      \"liveness_detection\": true,\n      \"anti_spoofing\": true\n    },\n    \"usage_settings\": {\n      \"enabled_for\": [\n        \"login\",\n        \"transaction_approval\",\n        \"sensitive_data_access\"\n      ],\n      \"max_attempts\": 3,\n      \"lockout_duration_minutes\": 30,\n      \"require_pin_after_days\": 7\n    },\n    \"fallback_options\": {\n      \"primary\": \"pin\",\n      \"secondary\": \"password\",\n      \"recovery\": \"email_2fa\"\n    },\n    \"enrollment_quality\": {\n      \"score\": 98,\n      \"samples_collected\": 5,\n      \"quality\": \"excellent\"\n    },\n    \"last_used\": null,\n    \"created_at\": \"2025-01-30T16:30:00Z\",\n    \"expires_at\": \"2026-01-30T16:30:00Z\"\n  },\n  \"message\": \"Biometric authentication enabled successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Setup Social Recovery",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/security\/social-recovery",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/security\/social-recovery"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"recovery_contacts\":[\"magnam\"],\"threshold\":2,\"recovery_delay_hours\":48}"
                        },
                        "description": "Configure social recovery mechanism using trusted contacts for account recovery.\nImplements Shamir's Secret Sharing for secure key recovery."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"recovery_id\": \"rec_social_456abc\",\n    \"status\": \"active\",\n    \"recovery_mechanism\": \"shamir_secret_sharing\",\n    \"configuration\": {\n      \"total_shares\": 3,\n      \"threshold_required\": 2,\n      \"recovery_delay_hours\": 48,\n      \"auto_rotate_days\": 180\n    },\n    \"recovery_contacts\": [\n      {\n        \"contact_id\": \"cont_001\",\n        \"name\": \"John Doe\",\n        \"email\": \"j***@example.com\",\n        \"status\": \"confirmed\",\n        \"share_distributed\": true,\n        \"last_verified\": \"2025-01-30\"\n      },\n      {\n        \"contact_id\": \"cont_002\",\n        \"name\": \"Jane Smith\",\n        \"email\": \"j***@example.com\",\n        \"status\": \"confirmed\",\n        \"share_distributed\": true,\n        \"last_verified\": \"2025-01-30\"\n      },\n      {\n        \"contact_id\": \"cont_003\",\n        \"name\": \"Bob Wilson\",\n        \"email\": \"b***@example.com\",\n        \"status\": \"pending\",\n        \"share_distributed\": false,\n        \"invitation_sent\": \"2025-01-30\"\n      }\n    ],\n    \"security_features\": {\n      \"encryption\": \"AES-256-GCM\",\n      \"key_derivation\": \"PBKDF2-SHA256\",\n      \"share_verification\": \"HMAC-SHA256\",\n      \"time_lock\": true,\n      \"notification_required\": true\n    },\n    \"recovery_process\": {\n      \"initiation\": \"Email verification + 2FA\",\n      \"contact_verification\": \"Video call or in-person\",\n      \"share_submission\": \"Secure portal\",\n      \"completion_time\": \"48-72 hours\"\n    },\n    \"backup_options\": {\n      \"paper_backup\": false,\n      \"hardware_backup\": false,\n      \"cloud_backup\": false\n    },\n    \"created_at\": \"2025-01-30T17:00:00Z\",\n    \"next_review\": \"2025-07-30T17:00:00Z\"\n  },\n  \"message\": \"Social recovery configured successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Manage Session Security",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/security\/sessions",
                            "query": [
                                {
                                    "key": "action",
                                    "value": "list",
                                    "description": "Action to perform (list, revoke, revoke_all).",
                                    "disabled": false
                                },
                                {
                                    "key": "session_id",
                                    "value": "sess_abc123",
                                    "description": "Session ID for specific actions.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/security\/sessions?action=list&session_id=sess_abc123"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"action\":\"list\",\"session_id\":\"est\"}"
                        },
                        "description": "Advanced session management with device fingerprinting, location tracking,\nand suspicious activity detection."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"active_sessions\": [\n      {\n        \"session_id\": \"sess_current_xyz\",\n        \"device\": {\n          \"type\": \"mobile\",\n          \"name\": \"iPhone 14 Pro\",\n          \"os\": \"iOS 17.2\",\n          \"browser\": \"Safari\",\n          \"fingerprint\": \"fp_abc123def\"\n        },\n        \"location\": {\n          \"ip\": \"192.168.1.1\",\n          \"country\": \"United States\",\n          \"city\": \"New York\",\n          \"coordinates\": {\n            \"lat\": 40.7128,\n            \"lon\": -74.0060\n          }\n        },\n        \"security_status\": {\n          \"risk_score\": 10,\n          \"is_current\": true,\n          \"is_trusted\": true,\n          \"vpn_detected\": false,\n          \"tor_detected\": false\n        },\n        \"activity\": {\n          \"created_at\": \"2025-01-30T10:00:00Z\",\n          \"last_active\": \"2025-01-30T17:30:00Z\",\n          \"expires_at\": \"2025-01-31T10:00:00Z\",\n          \"actions_count\": 45\n        }\n      },\n      {\n        \"session_id\": \"sess_other_abc\",\n        \"device\": {\n          \"type\": \"desktop\",\n          \"name\": \"MacBook Pro\",\n          \"os\": \"macOS 14.2\",\n          \"browser\": \"Chrome 120\",\n          \"fingerprint\": \"fp_def456ghi\"\n        },\n        \"location\": {\n          \"ip\": \"10.0.0.1\",\n          \"country\": \"United States\",\n          \"city\": \"San Francisco\",\n          \"coordinates\": {\n            \"lat\": 37.7749,\n            \"lon\": -122.4194\n          }\n        },\n        \"security_status\": {\n          \"risk_score\": 25,\n          \"is_current\": false,\n          \"is_trusted\": false,\n          \"vpn_detected\": false,\n          \"tor_detected\": false\n        },\n        \"activity\": {\n          \"created_at\": \"2025-01-29T14:00:00Z\",\n          \"last_active\": \"2025-01-29T18:00:00Z\",\n          \"expires_at\": \"2025-01-30T14:00:00Z\",\n          \"actions_count\": 12\n        }\n      }\n    ],\n    \"security_summary\": {\n      \"total_sessions\": 2,\n      \"trusted_devices\": 1,\n      \"suspicious_sessions\": 0,\n      \"recent_failures\": 0,\n      \"security_score\": 95\n    },\n    \"recommendations\": [\n      \"Enable 2FA for all sessions\",\n      \"Review and remove unused devices\",\n      \"Consider using hardware keys\"\n    ]\n  },\n  \"message\": \"Session information retrieved successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Configure Whitelist\/Blacklist",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/security\/whitelist",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/security\/whitelist"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"action\":\"add\",\"list_type\":\"whitelist\",\"address\":\"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb7\",\"label\":\"Personal Wallet\",\"auto_approve\":true}"
                        },
                        "description": "Manage address whitelisting and blacklisting for enhanced transaction security."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"list_type\": \"whitelist\",\n    \"action\": \"add\",\n    \"address\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb7\",\n    \"details\": {\n      \"label\": \"Personal Wallet\",\n      \"risk_score\": 5,\n      \"verified\": true,\n      \"auto_approve\": true,\n      \"daily_limit\": \"10000.00\",\n      \"total_transacted\": \"0.00\",\n      \"first_added\": \"2025-01-30T18:00:00Z\",\n      \"last_used\": null,\n      \"transaction_count\": 0\n    },\n    \"current_lists\": {\n      \"whitelist\": {\n        \"count\": 5,\n        \"addresses\": [\n          {\n            \"address\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb7\",\n            \"label\": \"Personal Wallet\",\n            \"added\": \"2025-01-30\"\n          }\n        ]\n      },\n      \"blacklist\": {\n        \"count\": 2,\n        \"addresses\": [\n          {\n            \"address\": \"0xBadAddress123...\",\n            \"reason\": \"Suspicious activity\",\n            \"added\": \"2025-01-15\"\n          }\n        ]\n      }\n    },\n    \"security_impact\": {\n      \"risk_reduction\": \"15%\",\n      \"auto_approved_percentage\": \"60%\",\n      \"blocked_attempts\": 3\n    }\n  },\n  \"message\": \"Address added to whitelist successfully\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Analytics Dashboard",
            "description": "\nComprehensive analytics and insights dashboard with AI-powered recommendations,\nspending patterns, portfolio tracking, and predictive financial analytics.",
            "item": [
                {
                    "name": "Get Spending Analytics",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/analytics\/spending",
                            "query": [
                                {
                                    "key": "wallet_id",
                                    "value": "wlt_zk_1234567890abcdef",
                                    "description": "Wallet identifier.",
                                    "disabled": false
                                },
                                {
                                    "key": "period",
                                    "value": "30d",
                                    "description": "Time period (7d, 30d, 90d, 1y, all).",
                                    "disabled": false
                                },
                                {
                                    "key": "group_by",
                                    "value": "category",
                                    "description": "Grouping (category, merchant, day, week, month).",
                                    "disabled": false
                                },
                                {
                                    "key": "currency",
                                    "value": "USD",
                                    "description": "Base currency for analytics.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/analytics\/spending?wallet_id=wlt_zk_1234567890abcdef&period=30d&group_by=category&currency=USD"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":\"corporis\",\"period\":\"30d\",\"group_by\":\"week\",\"currency\":\"qyt\"}"
                        },
                        "description": "Retrieve detailed spending analytics with AI insights, categorization,\ntrends, and personalized recommendations for financial optimization."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"summary\": {\n      \"total_spent\": \"4,567.89\",\n      \"period\": \"30d\",\n      \"currency\": \"USD\",\n      \"transaction_count\": 142,\n      \"average_transaction\": \"32.17\",\n      \"spending_velocity\": \"152.26\/day\",\n      \"compared_to_previous\": {\n        \"percentage_change\": \"-12.5%\",\n        \"amount_difference\": \"-652.34\",\n        \"trend\": \"decreasing\"\n      }\n    },\n    \"categories\": [\n      {\n        \"name\": \"Food & Dining\",\n        \"amount\": \"1,234.56\",\n        \"percentage\": 27.0,\n        \"transaction_count\": 45,\n        \"average\": \"27.43\",\n        \"trend\": \"increasing\",\n        \"month_over_month\": \"+5.2%\",\n        \"subcategories\": [\n          {\"name\": \"Restaurants\", \"amount\": \"890.12\", \"count\": 28},\n          {\"name\": \"Groceries\", \"amount\": \"234.44\", \"count\": 12},\n          {\"name\": \"Coffee Shops\", \"amount\": \"110.00\", \"count\": 5}\n        ]\n      },\n      {\n        \"name\": \"Transportation\",\n        \"amount\": \"987.65\",\n        \"percentage\": 21.6,\n        \"transaction_count\": 32,\n        \"average\": \"30.86\",\n        \"trend\": \"stable\",\n        \"month_over_month\": \"-1.1%\"\n      },\n      {\n        \"name\": \"Shopping\",\n        \"amount\": \"756.43\",\n        \"percentage\": 16.6,\n        \"transaction_count\": 18,\n        \"average\": \"42.02\",\n        \"trend\": \"decreasing\",\n        \"month_over_month\": \"-18.7%\"\n      }\n    ],\n    \"top_merchants\": [\n      {\n        \"name\": \"Amazon\",\n        \"amount\": \"543.21\",\n        \"transaction_count\": 12,\n        \"last_transaction\": \"2025-01-29\",\n        \"category\": \"Shopping\",\n        \"recurring\": false\n      },\n      {\n        \"name\": \"Walmart\",\n        \"amount\": \"432.10\",\n        \"transaction_count\": 8,\n        \"last_transaction\": \"2025-01-28\",\n        \"category\": \"Groceries\",\n        \"recurring\": true\n      }\n    ],\n    \"time_patterns\": {\n      \"busiest_day\": \"Saturday\",\n      \"busiest_hour\": \"19:00\",\n      \"weekend_vs_weekday\": {\n        \"weekend_percentage\": 35,\n        \"weekday_percentage\": 65\n      },\n      \"daily_distribution\": [\n        {\"day\": \"Mon\", \"amount\": \"234.56\", \"transactions\": 18},\n        {\"day\": \"Tue\", \"amount\": \"189.23\", \"transactions\": 15},\n        {\"day\": \"Wed\", \"amount\": \"267.89\", \"transactions\": 22},\n        {\"day\": \"Thu\", \"amount\": \"345.67\", \"transactions\": 25},\n        {\"day\": \"Fri\", \"amount\": \"456.78\", \"transactions\": 28},\n        {\"day\": \"Sat\", \"amount\": \"567.89\", \"transactions\": 32},\n        {\"day\": \"Sun\", \"amount\": \"234.56\", \"transactions\": 12}\n      ]\n    },\n    \"ai_insights\": {\n      \"spending_personality\": \"Conscious Spender\",\n      \"risk_score\": 25,\n      \"insights\": [\n        {\n          \"type\": \"saving_opportunity\",\n          \"message\": \"You could save $156\/month by switching to annual subscriptions\",\n          \"potential_savings\": \"156.00\",\n          \"confidence\": 0.89\n        },\n        {\n          \"type\": \"unusual_activity\",\n          \"message\": \"Spending on entertainment is 40% higher than your average\",\n          \"affected_amount\": \"234.56\",\n          \"confidence\": 0.92\n        },\n        {\n          \"type\": \"optimization\",\n          \"message\": \"Consider using cashback cards for online shopping\",\n          \"potential_benefit\": \"45.00\",\n          \"confidence\": 0.85\n        }\n      ],\n      \"predictions\": {\n        \"next_month_estimate\": \"4,890.23\",\n        \"confidence\": 0.87,\n        \"factors\": [\"seasonal trends\", \"recurring payments\", \"historical patterns\"]\n      }\n    },\n    \"budget_tracking\": {\n      \"total_budget\": \"5000.00\",\n      \"spent\": \"4567.89\",\n      \"remaining\": \"432.11\",\n      \"percentage_used\": 91.4,\n      \"days_remaining\": 5,\n      \"projected_overspend\": false,\n      \"recommended_daily_limit\": \"86.42\"\n    },\n    \"anomalies\": [\n      {\n        \"date\": \"2025-01-25\",\n        \"description\": \"Unusually high spending\",\n        \"amount\": \"567.89\",\n        \"deviation\": \"3.2 standard deviations\",\n        \"merchant\": \"Best Buy\",\n        \"category\": \"Electronics\"\n      }\n    ],\n    \"generated_at\": \"2025-01-30T14:00:00Z\"\n  },\n  \"message\": \"Spending analytics retrieved successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Portfolio Performance",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/analytics\/portfolio",
                            "query": [
                                {
                                    "key": "wallet_id",
                                    "value": "wlt_zk_1234567890abcdef",
                                    "description": "Wallet identifier.",
                                    "disabled": false
                                },
                                {
                                    "key": "include_staking",
                                    "value": "1",
                                    "description": "Include staking positions.",
                                    "disabled": false
                                },
                                {
                                    "key": "include_defi",
                                    "value": "1",
                                    "description": "Include DeFi positions.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/analytics\/portfolio?wallet_id=wlt_zk_1234567890abcdef&include_staking=1&include_defi=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":\"praesentium\",\"include_staking\":true,\"include_defi\":false}"
                        },
                        "description": "Track cryptocurrency and investment portfolio performance with real-time\nvaluations, profit\/loss calculations, and asset allocation analysis."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"portfolio_value\": {\n      \"total_value_usd\": \"125,678.90\",\n      \"total_cost_basis\": \"98,456.78\",\n      \"total_profit_loss\": \"27,222.12\",\n      \"total_profit_loss_percentage\": \"27.65%\",\n      \"24h_change\": \"2,345.67\",\n      \"24h_change_percentage\": \"1.90%\"\n    },\n    \"assets\": [\n      {\n        \"symbol\": \"BTC\",\n        \"name\": \"Bitcoin\",\n        \"holdings\": \"1.5\",\n        \"current_price\": \"65,432.10\",\n        \"total_value\": \"98,148.15\",\n        \"cost_basis\": \"75,000.00\",\n        \"profit_loss\": \"23,148.15\",\n        \"profit_loss_percentage\": \"30.86%\",\n        \"allocation_percentage\": 78.1,\n        \"24h_change\": \"1.85%\"\n      },\n      {\n        \"symbol\": \"ETH\",\n        \"name\": \"Ethereum\",\n        \"holdings\": \"10.25\",\n        \"current_price\": \"2,456.78\",\n        \"total_value\": \"25,182.00\",\n        \"cost_basis\": \"20,500.00\",\n        \"profit_loss\": \"4,682.00\",\n        \"profit_loss_percentage\": \"22.84%\",\n        \"allocation_percentage\": 20.0,\n        \"24h_change\": \"2.34%\"\n      }\n    ],\n    \"staking_positions\": {\n      \"total_staked_value\": \"45,678.90\",\n      \"total_rewards_earned\": \"2,345.67\",\n      \"average_apy\": \"12.5%\",\n      \"positions\": [\n        {\n          \"asset\": \"ETH\",\n          \"amount_staked\": \"5.0\",\n          \"value_usd\": \"12,283.90\",\n          \"apy\": \"4.5%\",\n          \"rewards_earned\": \"0.225\",\n          \"unlock_date\": \"2025-03-15T00:00:00Z\"\n        }\n      ]\n    },\n    \"defi_positions\": {\n      \"total_value_locked\": \"35,678.90\",\n      \"total_yield_earned\": \"3,456.78\",\n      \"protocols\": [\n        {\n          \"name\": \"Uniswap V3\",\n          \"type\": \"Liquidity Providing\",\n          \"value_locked\": \"20,000.00\",\n          \"current_value\": \"21,234.56\",\n          \"fees_earned\": \"1,234.56\",\n          \"apy\": \"18.5%\",\n          \"impermanent_loss\": \"-2.3%\"\n        }\n      ]\n    },\n    \"performance_metrics\": {\n      \"sharpe_ratio\": 1.85,\n      \"sortino_ratio\": 2.12,\n      \"max_drawdown\": \"-18.5%\",\n      \"volatility\": \"42.3%\",\n      \"beta\": 0.95,\n      \"alpha\": 0.12\n    },\n    \"allocation_analysis\": {\n      \"by_asset_class\": {\n        \"cryptocurrencies\": 70,\n        \"stablecoins\": 20,\n        \"defi\": 10\n      },\n      \"by_chain\": {\n        \"ethereum\": 60,\n        \"bitcoin\": 30,\n        \"polygon\": 10\n      },\n      \"risk_score\": 65,\n      \"diversification_score\": 72\n    },\n    \"historical_performance\": {\n      \"1d\": {\"value\": \"125,678.90\", \"change\": \"1.90%\"},\n      \"7d\": {\"value\": \"122,345.67\", \"change\": \"2.72%\"},\n      \"30d\": {\"value\": \"115,678.90\", \"change\": \"8.65%\"},\n      \"90d\": {\"value\": \"105,678.90\", \"change\": \"18.90%\"},\n      \"1y\": {\"value\": \"85,678.90\", \"change\": \"46.70%\"}\n    }\n  },\n  \"message\": \"Portfolio analytics retrieved successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Financial Health Score",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/analytics\/health-score",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/analytics\/health-score"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":\"wlt_zk_1234567890abcdef\",\"include_recommendations\":true}"
                        },
                        "description": "Calculate comprehensive financial health score based on spending habits,\nsavings rate, debt levels, and investment diversification."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"overall_score\": 78,\n    \"score_rating\": \"Good\",\n    \"score_breakdown\": {\n      \"spending_habits\": {\n        \"score\": 82,\n        \"weight\": 0.25,\n        \"factors\": {\n          \"within_budget\": true,\n          \"category_balance\": \"excellent\",\n          \"impulse_control\": \"good\",\n          \"recurring_optimization\": \"fair\"\n        }\n      },\n      \"savings_rate\": {\n        \"score\": 75,\n        \"weight\": 0.25,\n        \"current_rate\": \"15%\",\n        \"recommended_rate\": \"20%\",\n        \"emergency_fund_months\": 3.5\n      },\n      \"debt_management\": {\n        \"score\": 85,\n        \"weight\": 0.20,\n        \"debt_to_income\": \"0.25\",\n        \"credit_utilization\": \"18%\",\n        \"payment_history\": \"excellent\"\n      },\n      \"investment_health\": {\n        \"score\": 72,\n        \"weight\": 0.30,\n        \"diversification\": \"moderate\",\n        \"risk_adjusted_returns\": \"good\",\n        \"asset_allocation\": \"aggressive\"\n      }\n    },\n    \"peer_comparison\": {\n      \"percentile\": 72,\n      \"message\": \"You're doing better than 72% of users in your demographic\",\n      \"demographic\": \"25-34 age group, urban, tech sector\"\n    },\n    \"trends\": {\n      \"current_month\": 78,\n      \"last_month\": 75,\n      \"three_months_ago\": 71,\n      \"six_months_ago\": 68,\n      \"trend\": \"improving\"\n    },\n    \"recommendations\": [\n      {\n        \"priority\": \"high\",\n        \"category\": \"savings\",\n        \"action\": \"Increase monthly savings by $200\",\n        \"impact\": \"+5 points\",\n        \"difficulty\": \"medium\",\n        \"resources\": [\"Auto-transfer setup\", \"Budget optimizer tool\"]\n      },\n      {\n        \"priority\": \"medium\",\n        \"category\": \"investments\",\n        \"action\": \"Diversify into international markets\",\n        \"impact\": \"+3 points\",\n        \"difficulty\": \"easy\",\n        \"resources\": [\"ETF recommendations\", \"Risk assessment\"]\n      },\n      {\n        \"priority\": \"low\",\n        \"category\": \"spending\",\n        \"action\": \"Reduce dining out expenses by 20%\",\n        \"impact\": \"+2 points\",\n        \"difficulty\": \"medium\",\n        \"resources\": [\"Meal planning guide\", \"Cooking app discount\"]\n      }\n    ],\n    \"achievements\": [\n      {\n        \"title\": \"Budget Master\",\n        \"description\": \"Stayed within budget for 3 consecutive months\",\n        \"earned_date\": \"2025-01-15\",\n        \"badge_url\": \"https:\/\/badges.example.com\/budget_master.png\"\n      }\n    ],\n    \"risk_factors\": [\n      {\n        \"factor\": \"Low emergency fund\",\n        \"severity\": \"medium\",\n        \"recommendation\": \"Build emergency fund to 6 months expenses\"\n      }\n    ],\n    \"next_review_date\": \"2025-02-28T00:00:00Z\"\n  },\n  \"message\": \"Financial health score calculated successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Tax Report",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/analytics\/tax-report",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/analytics\/tax-report"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":\"wlt_zk_1234567890abcdef\",\"tax_year\":2024,\"jurisdiction\":\"US\",\"include_defi\":true}"
                        },
                        "description": "Generate comprehensive tax report including capital gains, income,\nand deductible expenses with jurisdiction-specific calculations."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"tax_year\": 2024,\n    \"jurisdiction\": \"US\",\n    \"summary\": {\n      \"total_proceeds\": \"145,678.90\",\n      \"total_cost_basis\": \"98,456.78\",\n      \"total_gain_loss\": \"47,222.12\",\n      \"short_term_gains\": \"12,345.67\",\n      \"long_term_gains\": \"34,876.45\",\n      \"total_income\": \"5,678.90\",\n      \"deductible_fees\": \"1,234.56\"\n    },\n    \"capital_gains\": {\n      \"short_term\": [\n        {\n          \"asset\": \"BTC\",\n          \"date_acquired\": \"2024-10-15\",\n          \"date_sold\": \"2024-11-20\",\n          \"proceeds\": \"15,678.90\",\n          \"cost_basis\": \"12,345.67\",\n          \"gain_loss\": \"3,333.23\",\n          \"holding_period\": \"36 days\"\n        }\n      ],\n      \"long_term\": [\n        {\n          \"asset\": \"ETH\",\n          \"date_acquired\": \"2023-01-15\",\n          \"date_sold\": \"2024-06-20\",\n          \"proceeds\": \"25,678.90\",\n          \"cost_basis\": \"15,678.90\",\n          \"gain_loss\": \"10,000.00\",\n          \"holding_period\": \"521 days\"\n        }\n      ]\n    },\n    \"income\": {\n      \"staking_rewards\": \"2,345.67\",\n      \"mining_income\": \"0.00\",\n      \"airdrops\": \"567.89\",\n      \"defi_yield\": \"2,765.34\",\n      \"total\": \"5,678.90\"\n    },\n    \"deductions\": {\n      \"transaction_fees\": \"456.78\",\n      \"gas_fees\": \"234.56\",\n      \"exchange_fees\": \"543.22\",\n      \"total\": \"1,234.56\"\n    },\n    \"tax_liability\": {\n      \"estimated_federal\": \"8,456.78\",\n      \"estimated_state\": \"2,345.67\",\n      \"total_estimated\": \"10,802.45\",\n      \"effective_rate\": \"22.5%\"\n    },\n    \"forms_needed\": [\"Form 8949\", \"Schedule D\", \"Schedule 1\"],\n    \"export_formats\": [\"CSV\", \"PDF\", \"TurboTax\", \"TaxAct\"],\n    \"generated_at\": \"2025-01-30T14:30:00Z\"\n  },\n  \"message\": \"Tax report generated successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Predictive Analytics",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/analytics\/predictions",
                            "query": [
                                {
                                    "key": "wallet_id",
                                    "value": "wlt_zk_1234567890abcdef",
                                    "description": "Wallet identifier.",
                                    "disabled": false
                                },
                                {
                                    "key": "prediction_horizon",
                                    "value": "3m",
                                    "description": "Prediction timeframe (1m, 3m, 6m, 1y).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/analytics\/predictions?wallet_id=wlt_zk_1234567890abcdef&prediction_horizon=3m"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":\"rerum\",\"prediction_horizon\":\"1y\"}"
                        },
                        "description": "AI-powered predictive analytics for future spending, investment opportunities,\nand financial goal tracking with confidence scores."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"spending_predictions\": {\n      \"next_month\": {\n        \"predicted_amount\": \"4,890.23\",\n        \"confidence\": 0.87,\n        \"range\": {\n          \"low\": \"4,456.78\",\n          \"high\": \"5,234.56\"\n        },\n        \"breakdown\": {\n          \"fixed_expenses\": \"2,345.67\",\n          \"variable_expenses\": \"2,544.56\"\n        }\n      },\n      \"three_months\": {\n        \"predicted_total\": \"14,567.89\",\n        \"monthly_average\": \"4,856.00\",\n        \"confidence\": 0.75,\n        \"seasonal_factors\": [\"Holiday shopping\", \"Summer vacation\"]\n      }\n    },\n    \"investment_opportunities\": [\n      {\n        \"type\": \"rebalancing\",\n        \"action\": \"Increase ETH allocation\",\n        \"potential_return\": \"12.5%\",\n        \"risk_level\": \"medium\",\n        \"confidence\": 0.82,\n        \"reasoning\": \"Technical indicators suggest upward trend\"\n      },\n      {\n        \"type\": \"new_position\",\n        \"asset\": \"SOL\",\n        \"recommended_amount\": \"2,000.00\",\n        \"expected_return\": \"25.5%\",\n        \"timeframe\": \"6 months\",\n        \"confidence\": 0.68\n      }\n    ],\n    \"goal_tracking\": [\n      {\n        \"goal\": \"Emergency Fund\",\n        \"target\": \"15,000.00\",\n        \"current\": \"8,456.78\",\n        \"predicted_completion\": \"2025-07-15\",\n        \"on_track\": true,\n        \"monthly_contribution_needed\": \"1,090.54\"\n      },\n      {\n        \"goal\": \"Vacation Fund\",\n        \"target\": \"5,000.00\",\n        \"current\": \"2,345.67\",\n        \"predicted_completion\": \"2025-05-01\",\n        \"on_track\": false,\n        \"monthly_contribution_needed\": \"885.11\",\n        \"recommendation\": \"Increase monthly savings by $200\"\n      }\n    ],\n    \"risk_alerts\": [\n      {\n        \"type\": \"overspending\",\n        \"category\": \"Entertainment\",\n        \"probability\": 0.65,\n        \"predicted_overage\": \"234.56\",\n        \"prevention\": \"Set spending alert at $400\"\n      }\n    ],\n    \"market_outlook\": {\n      \"sentiment\": \"bullish\",\n      \"volatility_forecast\": \"moderate\",\n      \"recommended_actions\": [\n        \"Maintain current positions\",\n        \"Consider DCA into quality assets\",\n        \"Keep 20% in stablecoins\"\n      ]\n    },\n    \"model_accuracy\": {\n      \"historical_accuracy\": 0.84,\n      \"last_updated\": \"2025-01-30T00:00:00Z\",\n      \"data_points\": 10847\n    }\n  },\n  \"message\": \"Predictive analytics generated successfully\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Blockchain Payments Infrastructure",
            "description": "\nAdvanced modular blockchain payment system with ZK-proofs, gasless transactions, \nand global merchant network integration. Supports non-custodial wallets, multi-currency\noperations, and compliant payment card programs.",
            "item": [
                {
                    "name": "Initialize Non-Custodial Wallet",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/blockchain\/wallets\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/blockchain\/wallets\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":\"usr_1234567890\",\"wallet_type\":\"aa_enabled\",\"recovery_method\":\"seed_phrase\",\"enable_biometric\":true,\"default_currency\":\"USDT\",\"spending_rules\":{\"daily_limit\":\"1000\",\"whitelist_addresses\":[\"0x123...\"],\"require_2fa_above\":\"500\"}}"
                        },
                        "description": "Creates a new non-custodial wallet with user-controlled private keys,\nmulti-asset support, and Account Abstraction (AA) capabilities."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"wallet_id\": \"wlt_zk_1234567890abcdef\",\n    \"wallet_address\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb7\",\n    \"wallet_type\": \"aa_enabled\",\n    \"account_abstraction\": {\n      \"enabled\": true,\n      \"smart_account_address\": \"0x8626f6940E2eb28930eFb4CeF49B2d1F2C9C1199\",\n      \"modules\": [\"spending_limits\", \"social_recovery\", \"session_keys\"],\n      \"gas_tank_balance\": \"10.00\"\n    },\n    \"supported_chains\": [\n      {\n        \"chain_id\": 1,\n        \"name\": \"Ethereum\",\n        \"rpc_url\": \"https:\/\/eth-mainnet.g.alchemy.com\/v2\/\",\n        \"explorer\": \"https:\/\/etherscan.io\"\n      },\n      {\n        \"chain_id\": 137,\n        \"name\": \"Polygon\",\n        \"rpc_url\": \"https:\/\/polygon-rpc.com\/\",\n        \"explorer\": \"https:\/\/polygonscan.com\"\n      },\n      {\n        \"chain_id\": 42161,\n        \"name\": \"Arbitrum\",\n        \"rpc_url\": \"https:\/\/arb1.arbitrum.io\/rpc\",\n        \"explorer\": \"https:\/\/arbiscan.io\"\n      }\n    ],\n    \"supported_assets\": [\n      {\"symbol\": \"ETH\", \"contract\": \"native\", \"decimals\": 18},\n      {\"symbol\": \"USDT\", \"contract\": \"0xdAC17F958D2ee523a2206206994597C13D831ec7\", \"decimals\": 6},\n      {\"symbol\": \"USDC\", \"contract\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\", \"decimals\": 6}\n    ],\n    \"recovery\": {\n      \"method\": \"seed_phrase\",\n      \"seed_phrase_encrypted\": \"U2FsdGVkX1+...\",\n      \"backup_codes\": [\"BACKUP-CODE-1\", \"BACKUP-CODE-2\", \"BACKUP-CODE-3\"]\n    },\n    \"security_features\": {\n      \"biometric_enabled\": true,\n      \"multi_sig_threshold\": 2,\n      \"time_lock_enabled\": false,\n      \"whitelist_enabled\": true\n    },\n    \"created_at\": \"2025-01-30T10:30:00Z\"\n  },\n  \"message\": \"Non-custodial wallet created successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"error\": \"Invalid wallet configuration\",\n  \"code\": \"INVALID_WALLET_CONFIG\",\n  \"details\": {\n    \"wallet_type\": [\"Invalid wallet type specified\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Execute Gasless Transaction",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/blockchain\/transactions\/gasless",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/blockchain\/transactions\/gasless"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":\"wlt_zk_1234567890abcdef\",\"transaction_type\":\"transfer\",\"to_address\":\"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb7\",\"amount\":\"100.50\",\"asset\":\"USDT\",\"chain_id\":137,\"meta_transaction\":[],\"priority\":\"medium\"}"
                        },
                        "description": "Processes a blockchain transaction with zero gas fees for the user.\nGas is sponsored through meta-transactions and relayer networks."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"transaction_id\": \"tx_gasless_9876543210\",\n    \"transaction_hash\": \"0x123abc456def789...\",\n    \"status\": \"pending\",\n    \"gasless\": true,\n    \"relayer\": {\n      \"address\": \"0xRelayerAddress...\",\n      \"gas_sponsored\": \"0.002 ETH\",\n      \"sponsor_type\": \"platform\"\n    },\n    \"transaction_details\": {\n      \"from\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb7\",\n      \"to\": \"0x8626f6940E2eb28930eFb4CeF49B2d1F2C9C1199\",\n      \"amount\": \"100.50\",\n      \"asset\": \"USDT\",\n      \"chain_id\": 137,\n      \"chain_name\": \"Polygon\"\n    },\n    \"meta_transaction\": {\n      \"nonce\": 42,\n      \"deadline\": 1746129382,\n      \"signature\": \"0xSignature...\"\n    },\n    \"estimated_confirmation\": \"15 seconds\",\n    \"block_explorer\": \"https:\/\/polygonscan.com\/tx\/0x123abc456def789\",\n    \"created_at\": \"2025-01-30T10:35:00Z\"\n  },\n  \"message\": \"Gasless transaction submitted successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"error\": \"Insufficient balance\",\n  \"code\": \"INSUFFICIENT_BALANCE\",\n  \"details\": {\n    \"required\": \"100.50 USDT\",\n    \"available\": \"50.00 USDT\"\n  }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "CoinGecko Endpoints",
            "description": "",
            "item": [
                {
                    "name": "Get pairs information for coingecko",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coingecko\/pairs",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/coingecko\/pairs"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get a list of all available pairs.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "200"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "189"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "[{\"ticker_id\":\"USDT-TRY\",\"base\":\"USDT\",\"target\":\"TRY\"},{\"ticker_id\":\"BTC-USDT\",\"base\":\"BTC\",\"target\":\"USDT\"},{\"ticker_id\":\"BTC-TRY\",\"base\":\"BTC\",\"target\":\"TRY\"},{\"ticker_id\":\"BTC-EUR\",\"base\":\"BTC\",\"target\":\"EUR\"},{\"ticker_id\":\"ETH-USDT\",\"base\":\"ETH\",\"target\":\"USDT\"},{\"ticker_id\":\"ETH-TRY\",\"base\":\"ETH\",\"target\":\"TRY\"},{\"ticker_id\":\"ETH-EUR\",\"base\":\"ETH\",\"target\":\"EUR\"},{\"ticker_id\":\"ADA-USDT\",\"base\":\"ADA\",\"target\":\"USDT\"},{\"ticker_id\":\"ADA-TRY\",\"base\":\"ADA\",\"target\":\"TRY\"},{\"ticker_id\":\"ADA-EUR\",\"base\":\"ADA\",\"target\":\"EUR\"},{\"ticker_id\":\"DOGE-USDT\",\"base\":\"DOGE\",\"target\":\"USDT\"},{\"ticker_id\":\"DOGE-TRY\",\"base\":\"DOGE\",\"target\":\"TRY\"},{\"ticker_id\":\"DOGE-EUR\",\"base\":\"DOGE\",\"target\":\"EUR\"},{\"ticker_id\":\"SOL-USDT\",\"base\":\"SOL\",\"target\":\"USDT\"},{\"ticker_id\":\"SOL-TRY\",\"base\":\"SOL\",\"target\":\"TRY\"},{\"ticker_id\":\"SOL-EUR\",\"base\":\"SOL\",\"target\":\"EUR\"},{\"ticker_id\":\"BNB-USDT\",\"base\":\"BNB\",\"target\":\"USDT\"},{\"ticker_id\":\"BNB-TRY\",\"base\":\"BNB\",\"target\":\"TRY\"},{\"ticker_id\":\"BNB-EUR\",\"base\":\"BNB\",\"target\":\"EUR\"},{\"ticker_id\":\"XRP-USDT\",\"base\":\"XRP\",\"target\":\"USDT\"},{\"ticker_id\":\"XRP-TRY\",\"base\":\"XRP\",\"target\":\"TRY\"},{\"ticker_id\":\"XRP-EUR\",\"base\":\"XRP\",\"target\":\"EUR\"},{\"ticker_id\":\"BTTC-USDT\",\"base\":\"BTT\",\"target\":\"USDT\"},{\"ticker_id\":\"BTTC-TRY\",\"base\":\"BTT\",\"target\":\"TRY\"},{\"ticker_id\":\"TRX-USDT\",\"base\":\"TRX\",\"target\":\"USDT\"},{\"ticker_id\":\"TRX-TRY\",\"base\":\"TRX\",\"target\":\"TRY\"},{\"ticker_id\":\"TRX-EUR\",\"base\":\"TRX\",\"target\":\"EUR\"},{\"ticker_id\":\"SHIB-USDT\",\"base\":\"SHIB\",\"target\":\"USDT\"},{\"ticker_id\":\"SHIB-TRY\",\"base\":\"SHIB\",\"target\":\"TRY\"},{\"ticker_id\":\"SHIB-EUR\",\"base\":\"SHIB\",\"target\":\"EUR\"},{\"ticker_id\":\"DOT-USDT\",\"base\":\"DOT\",\"target\":\"USDT\"},{\"ticker_id\":\"DOT-TRY\",\"base\":\"DOT\",\"target\":\"TRY\"},{\"ticker_id\":\"DOT-EUR\",\"base\":\"DOT\",\"target\":\"EUR\"},{\"ticker_id\":\"RVN-USDT\",\"base\":\"RVN\",\"target\":\"USDT\"},{\"ticker_id\":\"RVN-TRY\",\"base\":\"RVN\",\"target\":\"TRY\"},{\"ticker_id\":\"LINK-USDT\",\"base\":\"LINK\",\"target\":\"USDT\"},{\"ticker_id\":\"LINK-TRY\",\"base\":\"LINK\",\"target\":\"TRY\"},{\"ticker_id\":\"LINK-EUR\",\"base\":\"LINK\",\"target\":\"EUR\"},{\"ticker_id\":\"ALICE-USDT\",\"base\":\"ALICE\",\"target\":\"USDT\"},{\"ticker_id\":\"ALICE-TRY\",\"base\":\"ALICE\",\"target\":\"TRY\"},{\"ticker_id\":\"MATIC-USDT\",\"base\":\"MATIC\",\"target\":\"USDT\"},{\"ticker_id\":\"MATIC-TRY\",\"base\":\"MATIC\",\"target\":\"TRY\"},{\"ticker_id\":\"MATIC-EUR\",\"base\":\"MATIC\",\"target\":\"EUR\"},{\"ticker_id\":\"ALPINE-USDT\",\"base\":\"ALPINE\",\"target\":\"USDT\"},{\"ticker_id\":\"ALPINE-TRY\",\"base\":\"ALPINE\",\"target\":\"TRY\"},{\"ticker_id\":\"API3-USDT\",\"base\":\"API3\",\"target\":\"USDT\"},{\"ticker_id\":\"API3-TRY\",\"base\":\"API3\",\"target\":\"TRY\"},{\"ticker_id\":\"MBOX-USDT\",\"base\":\"MBOX\",\"target\":\"USDT\"},{\"ticker_id\":\"MBOX-TRY\",\"base\":\"MBOX\",\"target\":\"TRY\"},{\"ticker_id\":\"ARPA-USDT\",\"base\":\"ARPA\",\"target\":\"USDT\"},{\"ticker_id\":\"ARPA-TRY\",\"base\":\"ARPA\",\"target\":\"TRY\"},{\"ticker_id\":\"ATOM-USDT\",\"base\":\"ATOM\",\"target\":\"USDT\"},{\"ticker_id\":\"ATOM-TRY\",\"base\":\"ATOM\",\"target\":\"TRY\"},{\"ticker_id\":\"ATOM-EUR\",\"base\":\"ATOM\",\"target\":\"EUR\"},{\"ticker_id\":\"NEAR-USDT\",\"base\":\"NEAR\",\"target\":\"USDT\"},{\"ticker_id\":\"NEAR-TRY\",\"base\":\"NEAR\",\"target\":\"TRY\"},{\"ticker_id\":\"NEAR-EUR\",\"base\":\"NEAR\",\"target\":\"EUR\"},{\"ticker_id\":\"AVAX-USDT\",\"base\":\"AVAX\",\"target\":\"USDT\"},{\"ticker_id\":\"AVAX-TRY\",\"base\":\"AVAX\",\"target\":\"TRY\"},{\"ticker_id\":\"AVAX-EUR\",\"base\":\"AVAX\",\"target\":\"EUR\"},{\"ticker_id\":\"BEL-USDT\",\"base\":\"BEL\",\"target\":\"USDT\"},{\"ticker_id\":\"BEL-TRY\",\"base\":\"BEL\",\"target\":\"TRY\"},{\"ticker_id\":\"CHZ-USDT\",\"base\":\"CHZ\",\"target\":\"USDT\"},{\"ticker_id\":\"CHZ-TRY\",\"base\":\"CHZ\",\"target\":\"TRY\"},{\"ticker_id\":\"CHZ-EUR\",\"base\":\"CHZ\",\"target\":\"EUR\"},{\"ticker_id\":\"ONT-USDT\",\"base\":\"ONT\",\"target\":\"USDT\"},{\"ticker_id\":\"ONT-TRY\",\"base\":\"ONT\",\"target\":\"TRY\"},{\"ticker_id\":\"PORTO-USDT\",\"base\":\"PORTO\",\"target\":\"USDT\"},{\"ticker_id\":\"PORTO-TRY\",\"base\":\"PORTO\",\"target\":\"TRY\"},{\"ticker_id\":\"REEF-USDT\",\"base\":\"REEF\",\"target\":\"USDT\"},{\"ticker_id\":\"REEF-TRY\",\"base\":\"REEF\",\"target\":\"TRY\"},{\"ticker_id\":\"DAR-USDT\",\"base\":\"DAR\",\"target\":\"USDT\"},{\"ticker_id\":\"DAR-TRY\",\"base\":\"DAR\",\"target\":\"TRY\"},{\"ticker_id\":\"DENT-USDT\",\"base\":\"DENT\",\"target\":\"USDT\"},{\"ticker_id\":\"DENT-TRY\",\"base\":\"DENT\",\"target\":\"TRY\"},{\"ticker_id\":\"ENJ-USDT\",\"base\":\"ENJ\",\"target\":\"USDT\"},{\"ticker_id\":\"ENJ-TRY\",\"base\":\"ENJ\",\"target\":\"TRY\"},{\"ticker_id\":\"ROSE-USDT\",\"base\":\"ROSE\",\"target\":\"USDT\"},{\"ticker_id\":\"ROSE-TRY\",\"base\":\"ROSE\",\"target\":\"TRY\"},{\"ticker_id\":\"FTM-USDT\",\"base\":\"FTM\",\"target\":\"USDT\"},{\"ticker_id\":\"FTM-TRY\",\"base\":\"FTM\",\"target\":\"TRY\"},{\"ticker_id\":\"SAND-USDT\",\"base\":\"SAND\",\"target\":\"USDT\"},{\"ticker_id\":\"SAND-TRY\",\"base\":\"SAND\",\"target\":\"TRY\"},{\"ticker_id\":\"GALA-USDT\",\"base\":\"GALA\",\"target\":\"USDT\"},{\"ticker_id\":\"GALA-TRY\",\"base\":\"GALA\",\"target\":\"TRY\"},{\"ticker_id\":\"GALA-EUR\",\"base\":\"GALA\",\"target\":\"EUR\"},{\"ticker_id\":\"SANTOS-USDT\",\"base\":\"SANTOS\",\"target\":\"USDT\"},{\"ticker_id\":\"SANTOS-TRY\",\"base\":\"SANTOS\",\"target\":\"TRY\"},{\"ticker_id\":\"HOT-USDT\",\"base\":\"HOT\",\"target\":\"USDT\"},{\"ticker_id\":\"HOT-TRY\",\"base\":\"HOT\",\"target\":\"TRY\"},{\"ticker_id\":\"INJ-USDT\",\"base\":\"INJ\",\"target\":\"USDT\"},{\"ticker_id\":\"INJ-TRY\",\"base\":\"INJ\",\"target\":\"TRY\"},{\"ticker_id\":\"SLP-USDT\",\"base\":\"SLP\",\"target\":\"USDT\"},{\"ticker_id\":\"SLP-TRY\",\"base\":\"SLP\",\"target\":\"TRY\"},{\"ticker_id\":\"LAZIO-USDT\",\"base\":\"LAZIO\",\"target\":\"USDT\"},{\"ticker_id\":\"LAZIO-TRY\",\"base\":\"LAZIO\",\"target\":\"TRY\"},{\"ticker_id\":\"SXP-USDT\",\"base\":\"SXP\",\"target\":\"USDT\"},{\"ticker_id\":\"SXP-TRY\",\"base\":\"SXP\",\"target\":\"TRY\"},{\"ticker_id\":\"LRC-USDT\",\"base\":\"LRC\",\"target\":\"USDT\"},{\"ticker_id\":\"LRC-TRY\",\"base\":\"LRC\",\"target\":\"TRY\"},{\"ticker_id\":\"TLM-USDT\",\"base\":\"TLM\",\"target\":\"USDT\"},{\"ticker_id\":\"TLM-TRY\",\"base\":\"TLM\",\"target\":\"TRY\"},{\"ticker_id\":\"MANA-USDT\",\"base\":\"MANA\",\"target\":\"USDT\"},{\"ticker_id\":\"MANA-TRY\",\"base\":\"MANA\",\"target\":\"TRY\"},{\"ticker_id\":\"UMA-USDT\",\"base\":\"UMA\",\"target\":\"USDT\"},{\"ticker_id\":\"UMA-TRY\",\"base\":\"UMA\",\"target\":\"TRY\"},{\"ticker_id\":\"XTZ-USDT\",\"base\":\"XTZ\",\"target\":\"USDT\"},{\"ticker_id\":\"AXS-USDT\",\"base\":\"AXS\",\"target\":\"USDT\"},{\"ticker_id\":\"AXS-TRY\",\"base\":\"AXS\",\"target\":\"TRY\"},{\"ticker_id\":\"GRT-TRY\",\"base\":\"GRT\",\"target\":\"TRY\"},{\"ticker_id\":\"GRT-USDT\",\"base\":\"GRT\",\"target\":\"USDT\"},{\"ticker_id\":\"GRT-EUR\",\"base\":\"GRT\",\"target\":\"EUR\"},{\"ticker_id\":\"EOS-TRY\",\"base\":\"EOS\",\"target\":\"TRY\"},{\"ticker_id\":\"EOS-USDT\",\"base\":\"EOS\",\"target\":\"USDT\"},{\"ticker_id\":\"AAVE-USDT\",\"base\":\"AAVE\",\"target\":\"USDT\"},{\"ticker_id\":\"ACH-USDT\",\"base\":\"ACH\",\"target\":\"USDT\"},{\"ticker_id\":\"USDC-USDT\",\"base\":\"USDC\",\"target\":\"USDT\"},{\"ticker_id\":\"APE-USDT\",\"base\":\"APE\",\"target\":\"USDT\"},{\"ticker_id\":\"EUR-USDT\",\"base\":\"EUR\",\"target\":\"USDT\"},{\"ticker_id\":\"SPELL-USDT\",\"base\":\"SPELL\",\"target\":\"USDT\"},{\"ticker_id\":\"SPELL-TRY\",\"base\":\"SPELL\",\"target\":\"TRY\"},{\"ticker_id\":\"AUDIO-USDT\",\"base\":\"AUDIO\",\"target\":\"USDT\"},{\"ticker_id\":\"IMX-USDT\",\"base\":\"IMX\",\"target\":\"USDT\"},{\"ticker_id\":\"UNFI-USDT\",\"base\":\"UNFI\",\"target\":\"USDT\"},{\"ticker_id\":\"WING-USDT\",\"base\":\"WING\",\"target\":\"USDT\"}]",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get tickers information for coingecko",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coingecko\/tickers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/coingecko\/tickers"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get a high level overview of the state of the market for a specified active symbols.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "200"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "188"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "[{\"ticker_id\":\"USDT-TRY\",\"base_currency\":\"USDT\",\"target_currency\":\"TRY\",\"last_price\":\"40.870\",\"base_volume\":\"446146\",\"target_volume\":\"18234023.394\",\"high\":\"40.940\",\"low\":\"40.660\"},{\"ticker_id\":\"BTC-USDT\",\"base_currency\":\"BTC\",\"target_currency\":\"USDT\",\"last_price\":\"119038.00\",\"base_volume\":\"143.91987\",\"target_volume\":\"17131934.32\",\"high\":\"122045.90\",\"low\":\"117180.00\"},{\"ticker_id\":\"BTC-TRY\",\"base_currency\":\"BTC\",\"target_currency\":\"TRY\",\"last_price\":\"4866795.00\",\"base_volume\":\"0.86935\",\"target_volume\":\"4230990.96\",\"high\":\"4963396.00\",\"low\":\"4784320.00\"},{\"ticker_id\":\"BTC-EUR\",\"base_currency\":\"BTC\",\"target_currency\":\"EUR\",\"last_price\":\"102005.11\",\"base_volume\":\"3.98481\",\"target_volume\":\"406471.91\",\"high\":\"104373.07\",\"low\":\"100690.00\"},{\"ticker_id\":\"ETH-USDT\",\"base_currency\":\"ETH\",\"target_currency\":\"USDT\",\"last_price\":\"4653.30\",\"base_volume\":\"7321.0002\",\"target_volume\":\"34066810.51\",\"high\":\"4766.66\",\"low\":\"4451.33\"},{\"ticker_id\":\"ETH-TRY\",\"base_currency\":\"ETH\",\"target_currency\":\"TRY\",\"last_price\":\"190249\",\"base_volume\":\"57.5835\",\"target_volume\":\"10955220\",\"high\":\"194069\",\"low\":\"181497\"},{\"ticker_id\":\"ETH-EUR\",\"base_currency\":\"ETH\",\"target_currency\":\"EUR\",\"last_price\":\"3987.68\",\"base_volume\":\"159.7633\",\"target_volume\":\"637085.20\",\"high\":\"4081.45\",\"low\":\"3816.72\"},{\"ticker_id\":\"ADA-USDT\",\"base_currency\":\"ADA\",\"target_currency\":\"USDT\",\"last_price\":\"0.951\",\"base_volume\":\"4179594.4674\",\"target_volume\":\"3974794.338\",\"high\":\"0.997\",\"low\":\"0.878\"},{\"ticker_id\":\"ADA-TRY\",\"base_currency\":\"ADA\",\"target_currency\":\"TRY\",\"last_price\":\"38.88\",\"base_volume\":\"54140.2\",\"target_volume\":\"2104973.01\",\"high\":\"40.57\",\"low\":\"35.89\"},{\"ticker_id\":\"ADA-EUR\",\"base_currency\":\"ADA\",\"target_currency\":\"EUR\",\"last_price\":\"0.814\",\"base_volume\":\"84617.2\",\"target_volume\":\"68878.455\",\"high\":\"0.853\",\"low\":\"0.754\"},{\"ticker_id\":\"DOGE-USDT\",\"base_currency\":\"DOGE\",\"target_currency\":\"USDT\",\"last_price\":\"0.23166\",\"base_volume\":\"17062782\",\"target_volume\":\"3952764.25325\",\"high\":\"0.24414\",\"low\":\"0.21578\"},{\"ticker_id\":\"DOGE-TRY\",\"base_currency\":\"DOGE\",\"target_currency\":\"TRY\",\"last_price\":\"9.468\",\"base_volume\":\"194070\",\"target_volume\":\"1837462.372\",\"high\":\"9.930\",\"low\":\"8.865\"},{\"ticker_id\":\"DOGE-EUR\",\"base_currency\":\"DOGE\",\"target_currency\":\"EUR\",\"last_price\":\"0.1985\",\"base_volume\":\"114047\",\"target_volume\":\"22638.4696\",\"high\":\"0.2087\",\"low\":\"0.1865\"},{\"ticker_id\":\"SOL-USDT\",\"base_currency\":\"SOL\",\"target_currency\":\"USDT\",\"last_price\":\"197.29\",\"base_volume\":\"42835.71\",\"target_volume\":\"8451057.35\",\"high\":\"205.70\",\"low\":\"186.68\"},{\"ticker_id\":\"SOL-TRY\",\"base_currency\":\"SOL\",\"target_currency\":\"TRY\",\"last_price\":\"8062.5\",\"base_volume\":\"210.50\",\"target_volume\":\"1697165.2\",\"high\":\"8374.2\",\"low\":\"7613.1\"},{\"ticker_id\":\"SOL-EUR\",\"base_currency\":\"SOL\",\"target_currency\":\"EUR\",\"last_price\":\"169.04\",\"base_volume\":\"602.14\",\"target_volume\":\"101785.89\",\"high\":\"176.13\",\"low\":\"160.16\"},{\"ticker_id\":\"BNB-USDT\",\"base_currency\":\"BNB\",\"target_currency\":\"USDT\",\"last_price\":\"851.7\",\"base_volume\":\"2919.820\",\"target_volume\":\"2486810.7\",\"high\":\"869.4\",\"low\":\"820.6\"},{\"ticker_id\":\"BNB-TRY\",\"base_currency\":\"BNB\",\"target_currency\":\"TRY\",\"last_price\":\"34821\",\"base_volume\":\"17.428\",\"target_volume\":\"606893\",\"high\":\"35398\",\"low\":\"33478\"},{\"ticker_id\":\"BNB-EUR\",\"base_currency\":\"BNB\",\"target_currency\":\"EUR\",\"last_price\":\"729.8\",\"base_volume\":\"32.451\",\"target_volume\":\"23682.9\",\"high\":\"743.7\",\"low\":\"702.2\"},{\"ticker_id\":\"XRP-USDT\",\"base_currency\":\"XRP\",\"target_currency\":\"USDT\",\"last_price\":\"3.125\",\"base_volume\":\"1478617.8780\",\"target_volume\":\"4620680.868\",\"high\":\"3.245\",\"low\":\"2.991\"},{\"ticker_id\":\"XRP-TRY\",\"base_currency\":\"XRP\",\"target_currency\":\"TRY\",\"last_price\":\"127.770\",\"base_volume\":\"51950\",\"target_volume\":\"6637755.504\",\"high\":\"132.110\",\"low\":\"122.050\"},{\"ticker_id\":\"XRP-EUR\",\"base_currency\":\"XRP\",\"target_currency\":\"EUR\",\"last_price\":\"2.6786\",\"base_volume\":\"40949\",\"target_volume\":\"109686.3235\",\"high\":\"2.7788\",\"low\":\"2.5682\"},{\"ticker_id\":\"BTTC-USDT\",\"base_currency\":\"BTT\",\"target_currency\":\"USDT\",\"last_price\":\"0.00000068\",\"base_volume\":\"20847975182\",\"target_volume\":\"14176.62312381\",\"high\":\"0.00000071\",\"low\":\"0.00000067\"},{\"ticker_id\":\"BTTC-TRY\",\"base_currency\":\"BTT\",\"target_currency\":\"TRY\",\"last_price\":\"0.00002806\",\"base_volume\":\"2085426031.7\",\"target_volume\":\"58517.05445129\",\"high\":\"0.00002874\",\"low\":\"0.00002749\"},{\"ticker_id\":\"TRX-USDT\",\"base_currency\":\"TRX\",\"target_currency\":\"USDT\",\"last_price\":\"0.35930\",\"base_volume\":\"7033350.6\",\"target_volume\":\"2527082.90334\",\"high\":\"0.37000\",\"low\":\"0.35360\"},{\"ticker_id\":\"TRX-TRY\",\"base_currency\":\"TRX\",\"target_currency\":\"TRY\",\"last_price\":\"14.6860\",\"base_volume\":\"148056.726\",\"target_volume\":\"2174361.0780\",\"high\":\"15.0720\",\"low\":\"14.4440\"},{\"ticker_id\":\"TRX-EUR\",\"base_currency\":\"TRX\",\"target_currency\":\"EUR\",\"last_price\":\"0.30790\",\"base_volume\":\"10859\",\"target_volume\":\"3343.65729\",\"high\":\"0.31680\",\"low\":\"0.30380\"},{\"ticker_id\":\"SHIB-USDT\",\"base_currency\":\"SHIB\",\"target_currency\":\"USDT\",\"last_price\":\"0.00001308\",\"base_volume\":\"17637237913\",\"target_volume\":\"230695.07190513\",\"high\":\"0.00001378\",\"low\":\"0.00001262\"},{\"ticker_id\":\"SHIB-TRY\",\"base_currency\":\"SHIB\",\"target_currency\":\"TRY\",\"last_price\":\"0.00053500\",\"base_volume\":\"949900623\",\"target_volume\":\"508196.83365810\",\"high\":\"0.00056100\",\"low\":\"0.00051600\"},{\"ticker_id\":\"SHIB-EUR\",\"base_currency\":\"SHIB\",\"target_currency\":\"EUR\",\"last_price\":\"0.00001118\",\"base_volume\":\"297074263\",\"target_volume\":\"3321.29026774\",\"high\":\"0.00001179\",\"low\":\"0.00001085\"},{\"ticker_id\":\"DOT-USDT\",\"base_currency\":\"DOT\",\"target_currency\":\"USDT\",\"last_price\":\"4.03\",\"base_volume\":\"84645.87\",\"target_volume\":\"341122.85\",\"high\":\"4.24\",\"low\":\"3.90\"},{\"ticker_id\":\"DOT-TRY\",\"base_currency\":\"DOT\",\"target_currency\":\"TRY\",\"last_price\":\"164.8\",\"base_volume\":\"838.50\",\"target_volume\":\"138185.0\",\"high\":\"172.4\",\"low\":\"159.6\"},{\"ticker_id\":\"DOT-EUR\",\"base_currency\":\"DOT\",\"target_currency\":\"EUR\",\"last_price\":\"3.45\",\"base_volume\":\"908.51\",\"target_volume\":\"3134.39\",\"high\":\"3.63\",\"low\":\"3.35\"},{\"ticker_id\":\"RVN-USDT\",\"base_currency\":\"RVN\",\"target_currency\":\"USDT\",\"last_price\":\"0.01395\",\"base_volume\":\"1616058.9\",\"target_volume\":\"22544.02198\",\"high\":\"0.01467\",\"low\":\"0.01336\"},{\"ticker_id\":\"RVN-TRY\",\"base_currency\":\"RVN\",\"target_currency\":\"TRY\",\"last_price\":\"0.5700\",\"base_volume\":\"78515.80\",\"target_volume\":\"44754.0066\",\"high\":\"0.5975\",\"low\":\"0.5479\"},{\"ticker_id\":\"LINK-USDT\",\"base_currency\":\"LINK\",\"target_currency\":\"USDT\",\"last_price\":\"22.61\",\"base_volume\":\"57455.45\",\"target_volume\":\"1299067.90\",\"high\":\"23.81\",\"low\":\"21.51\"},{\"ticker_id\":\"LINK-TRY\",\"base_currency\":\"LINK\",\"target_currency\":\"TRY\",\"last_price\":\"924.4\",\"base_volume\":\"309.77\",\"target_volume\":\"286357.1\",\"high\":\"968.9\",\"low\":\"877.2\"},{\"ticker_id\":\"LINK-EUR\",\"base_currency\":\"LINK\",\"target_currency\":\"EUR\",\"last_price\":\"19.36\",\"base_volume\":\"459.56\",\"target_volume\":\"8897.19\",\"high\":\"20.39\",\"low\":\"18.48\"},{\"ticker_id\":\"ALICE-USDT\",\"base_currency\":\"ALICE\",\"target_currency\":\"USDT\",\"last_price\":\"0.39\",\"base_volume\":\"25818.51\",\"target_volume\":\"10069.22\",\"high\":\"0.42\",\"low\":\"0.37\"},{\"ticker_id\":\"ALICE-TRY\",\"base_currency\":\"ALICE\",\"target_currency\":\"TRY\",\"last_price\":\"15.970\",\"base_volume\":\"4040.9\",\"target_volume\":\"64533.735\",\"high\":\"17.160\",\"low\":\"15.400\"},{\"ticker_id\":\"MATIC-USDT\",\"base_currency\":\"MATIC\",\"target_currency\":\"USDT\",\"last_price\":\"0.0\",\"base_volume\":\"0.000\",\"target_volume\":\"0.0\",\"high\":\"0.0\",\"low\":\"0.0\"},{\"ticker_id\":\"MATIC-TRY\",\"base_currency\":\"MATIC\",\"target_currency\":\"TRY\",\"last_price\":\"0.000\",\"base_volume\":\"0.0\",\"target_volume\":\"0.000\",\"high\":\"0.000\",\"low\":\"0.000\"},{\"ticker_id\":\"MATIC-EUR\",\"base_currency\":\"MATIC\",\"target_currency\":\"EUR\",\"last_price\":\"0.0000\",\"base_volume\":\"0.0\",\"target_volume\":\"0.0000\",\"high\":\"0.0000\",\"low\":\"0.0000\"},{\"ticker_id\":\"ALPINE-USDT\",\"base_currency\":\"ALPINE\",\"target_currency\":\"USDT\",\"last_price\":\"1.4420\",\"base_volume\":\"48568.44\",\"target_volume\":\"70035.6962\",\"high\":\"1.4590\",\"low\":\"1.2400\"},{\"ticker_id\":\"ALPINE-TRY\",\"base_currency\":\"ALPINE\",\"target_currency\":\"TRY\",\"last_price\":\"59.00\",\"base_volume\":\"20865.97\",\"target_volume\":\"1231092.54\",\"high\":\"59.69\",\"low\":\"50.35\"},{\"ticker_id\":\"API3-USDT\",\"base_currency\":\"API3\",\"target_currency\":\"USDT\",\"last_price\":\"0.73\",\"base_volume\":\"36674.905\",\"target_volume\":\"26772.68\",\"high\":\"0.78\",\"low\":\"0.69\"},{\"ticker_id\":\"API3-TRY\",\"base_currency\":\"API3\",\"target_currency\":\"TRY\",\"last_price\":\"29.83\",\"base_volume\":\"1348.95\",\"target_volume\":\"40239.17\",\"high\":\"31.71\",\"low\":\"28.60\"},{\"ticker_id\":\"MBOX-USDT\",\"base_currency\":\"MBOX\",\"target_currency\":\"USDT\",\"last_price\":\"0.0\",\"base_volume\":\"161168.533\",\"target_volume\":\"0.0\",\"high\":\"0.0\",\"low\":\"0.0\"},{\"ticker_id\":\"MBOX-TRY\",\"base_currency\":\"MBOX\",\"target_currency\":\"TRY\",\"last_price\":\"2.41\",\"base_volume\":\"39947.13\",\"target_volume\":\"96272.60\",\"high\":\"2.51\",\"low\":\"2.27\"},{\"ticker_id\":\"ARPA-USDT\",\"base_currency\":\"ARPA\",\"target_currency\":\"USDT\",\"last_price\":\"0.02254\",\"base_volume\":\"596738.7\",\"target_volume\":\"13450.49166\",\"high\":\"0.02389\",\"low\":\"0.02169\"},{\"ticker_id\":\"ARPA-TRY\",\"base_currency\":\"ARPA\",\"target_currency\":\"TRY\",\"last_price\":\"0.9186\",\"base_volume\":\"163072\",\"target_volume\":\"149798.7567\",\"high\":\"0.9721\",\"low\":\"0.8881\"},{\"ticker_id\":\"ATOM-USDT\",\"base_currency\":\"ATOM\",\"target_currency\":\"USDT\",\"last_price\":\"4.58\",\"base_volume\":\"17879.08\",\"target_volume\":\"81886.22\",\"high\":\"4.78\",\"low\":\"4.43\"},{\"ticker_id\":\"ATOM-TRY\",\"base_currency\":\"ATOM\",\"target_currency\":\"TRY\",\"last_price\":\"187.1\",\"base_volume\":\"230.541\",\"target_volume\":\"43134.3\",\"high\":\"194.8\",\"low\":\"181.5\"},{\"ticker_id\":\"ATOM-EUR\",\"base_currency\":\"ATOM\",\"target_currency\":\"EUR\",\"last_price\":\"3.92\",\"base_volume\":\"28.88\",\"target_volume\":\"113.22\",\"high\":\"4.08\",\"low\":\"3.81\"},{\"ticker_id\":\"NEAR-USDT\",\"base_currency\":\"NEAR\",\"target_currency\":\"USDT\",\"last_price\":\"2.805\",\"base_volume\":\"126442.932\",\"target_volume\":\"354672.424\",\"high\":\"3.016\",\"low\":\"2.692\"},{\"ticker_id\":\"NEAR-TRY\",\"base_currency\":\"NEAR\",\"target_currency\":\"TRY\",\"last_price\":\"114.6\",\"base_volume\":\"667.680\",\"target_volume\":\"76516.1\",\"high\":\"122.6\",\"low\":\"110.0\"},{\"ticker_id\":\"NEAR-EUR\",\"base_currency\":\"NEAR\",\"target_currency\":\"EUR\",\"last_price\":\"2.396\",\"base_volume\":\"519.6\",\"target_volume\":\"1244.996\",\"high\":\"2.578\",\"low\":\"2.314\"},{\"ticker_id\":\"AVAX-USDT\",\"base_currency\":\"AVAX\",\"target_currency\":\"USDT\",\"last_price\":\"25.38\",\"base_volume\":\"42060.35\",\"target_volume\":\"1067491.89\",\"high\":\"25.66\",\"low\":\"23.18\"},{\"ticker_id\":\"AVAX-TRY\",\"base_currency\":\"AVAX\",\"target_currency\":\"TRY\",\"last_price\":\"1037.1\",\"base_volume\":\"1928.05\",\"target_volume\":\"1999587.7\",\"high\":\"1049.9\",\"low\":\"948.1\"},{\"ticker_id\":\"AVAX-EUR\",\"base_currency\":\"AVAX\",\"target_currency\":\"EUR\",\"last_price\":\"21.71\",\"base_volume\":\"146.27\",\"target_volume\":\"3175.62\",\"high\":\"22.00\",\"low\":\"19.91\"},{\"ticker_id\":\"BEL-USDT\",\"base_currency\":\"BEL\",\"target_currency\":\"USDT\",\"last_price\":\"0.2\",\"base_volume\":\"33227.328\",\"target_volume\":\"6645.4\",\"high\":\"0.2\",\"low\":\"0.2\"},{\"ticker_id\":\"BEL-TRY\",\"base_currency\":\"BEL\",\"target_currency\":\"TRY\",\"last_price\":\"10.64\",\"base_volume\":\"9185.09\",\"target_volume\":\"97729.38\",\"high\":\"11.17\",\"low\":\"10.13\"},{\"ticker_id\":\"CHZ-USDT\",\"base_currency\":\"CHZ\",\"target_currency\":\"USDT\",\"last_price\":\"0.0410\",\"base_volume\":\"874458\",\"target_volume\":\"35852.8048\",\"high\":\"0.0433\",\"low\":\"0.0394\"},{\"ticker_id\":\"CHZ-TRY\",\"base_currency\":\"CHZ\",\"target_currency\":\"TRY\",\"last_price\":\"1.678\",\"base_volume\":\"141426\",\"target_volume\":\"237313.250\",\"high\":\"1.766\",\"low\":\"1.612\"},{\"ticker_id\":\"CHZ-EUR\",\"base_currency\":\"CHZ\",\"target_currency\":\"EUR\",\"last_price\":\"0.0000\",\"base_volume\":\"0\",\"target_volume\":\"0.0000\",\"high\":\"0.0000\",\"low\":\"0.0000\"},{\"ticker_id\":\"ONT-USDT\",\"base_currency\":\"ONT\",\"target_currency\":\"USDT\",\"last_price\":\"0.1377\",\"base_volume\":\"51377\",\"target_volume\":\"7074.6605\",\"high\":\"0.1468\",\"low\":\"0.1333\"},{\"ticker_id\":\"ONT-TRY\",\"base_currency\":\"ONT\",\"target_currency\":\"TRY\",\"last_price\":\"5.621\",\"base_volume\":\"2058\",\"target_volume\":\"11570.378\",\"high\":\"5.978\",\"low\":\"5.453\"},{\"ticker_id\":\"PORTO-USDT\",\"base_currency\":\"PORTO\",\"target_currency\":\"USDT\",\"last_price\":\"1.0360\",\"base_volume\":\"11060.03\",\"target_volume\":\"11458.1977\",\"high\":\"1.1000\",\"low\":\"0.9530\"},{\"ticker_id\":\"PORTO-TRY\",\"base_currency\":\"PORTO\",\"target_currency\":\"TRY\",\"last_price\":\"42.40\",\"base_volume\":\"4454.45\",\"target_volume\":\"188868.76\",\"high\":\"44.90\",\"low\":\"39.14\"},{\"ticker_id\":\"REEF-USDT\",\"base_currency\":\"REEF\",\"target_currency\":\"USDT\",\"last_price\":\"0.00000\",\"base_volume\":\"0\",\"target_volume\":\"0.00000\",\"high\":\"0.00000\",\"low\":\"0.00000\"},{\"ticker_id\":\"REEF-TRY\",\"base_currency\":\"REEF\",\"target_currency\":\"TRY\",\"last_price\":\"0.0000\",\"base_volume\":\"0\",\"target_volume\":\"0.0000\",\"high\":\"0.0000\",\"low\":\"0.0000\"},{\"ticker_id\":\"DAR-USDT\",\"base_currency\":\"DAR\",\"target_currency\":\"USDT\",\"last_price\":\"0.00000\",\"base_volume\":\"0\",\"target_volume\":\"0.00000\",\"high\":\"0.00000\",\"low\":\"0.00000\"},{\"ticker_id\":\"DAR-TRY\",\"base_currency\":\"DAR\",\"target_currency\":\"TRY\",\"last_price\":\"0.00\",\"base_volume\":\"0.00\",\"target_volume\":\"0.00\",\"high\":\"0.00\",\"low\":\"0.00\"},{\"ticker_id\":\"DENT-USDT\",\"base_currency\":\"DENT\",\"target_currency\":\"USDT\",\"last_price\":\"0.000801\",\"base_volume\":\"11461438\",\"target_volume\":\"9180.612214\",\"high\":\"0.000854\",\"low\":\"0.000754\"},{\"ticker_id\":\"DENT-TRY\",\"base_currency\":\"DENT\",\"target_currency\":\"TRY\",\"last_price\":\"0.03271\",\"base_volume\":\"510945\",\"target_volume\":\"16713.02449\",\"high\":\"0.03575\",\"low\":\"0.03089\"},{\"ticker_id\":\"ENJ-USDT\",\"base_currency\":\"ENJ\",\"target_currency\":\"USDT\",\"last_price\":\"0.071\",\"base_volume\":\"340644.9\",\"target_volume\":\"24185.791\",\"high\":\"0.077\",\"low\":\"0.069\"},{\"ticker_id\":\"ENJ-TRY\",\"base_currency\":\"ENJ\",\"target_currency\":\"TRY\",\"last_price\":\"2.93\",\"base_volume\":\"16651.39\",\"target_volume\":\"48788.59\",\"high\":\"3.14\",\"low\":\"2.72\"},{\"ticker_id\":\"ROSE-USDT\",\"base_currency\":\"ROSE\",\"target_currency\":\"USDT\",\"last_price\":\"0.02956\",\"base_volume\":\"1390568.0\",\"target_volume\":\"41105.19032\",\"high\":\"0.03071\",\"low\":\"0.02669\"},{\"ticker_id\":\"ROSE-TRY\",\"base_currency\":\"ROSE\",\"target_currency\":\"TRY\",\"last_price\":\"1.204\",\"base_volume\":\"168712.1\",\"target_volume\":\"203129.437\",\"high\":\"1.250\",\"low\":\"1.092\"},{\"ticker_id\":\"FTM-USDT\",\"base_currency\":\"FTM\",\"target_currency\":\"USDT\",\"last_price\":\"0.0000\",\"base_volume\":\"0\",\"target_volume\":\"0.0000\",\"high\":\"0.0000\",\"low\":\"0.0000\"},{\"ticker_id\":\"FTM-TRY\",\"base_currency\":\"FTM\",\"target_currency\":\"TRY\",\"last_price\":\"0.00\",\"base_volume\":\"0.00\",\"target_volume\":\"0.00\",\"high\":\"0.00\",\"low\":\"0.00\"},{\"ticker_id\":\"SAND-USDT\",\"base_currency\":\"SAND\",\"target_currency\":\"USDT\",\"last_price\":\"0.2889\",\"base_volume\":\"158450\",\"target_volume\":\"45776.3136\",\"high\":\"0.3073\",\"low\":\"0.2789\"},{\"ticker_id\":\"SAND-TRY\",\"base_currency\":\"SAND\",\"target_currency\":\"TRY\",\"last_price\":\"11.80\",\"base_volume\":\"4808.4\",\"target_volume\":\"56739.57\",\"high\":\"12.51\",\"low\":\"11.41\"},{\"ticker_id\":\"GALA-USDT\",\"base_currency\":\"GALA\",\"target_currency\":\"USDT\",\"last_price\":\"0.01712\",\"base_volume\":\"9291340\",\"target_volume\":\"159067.74484\",\"high\":\"0.01843\",\"low\":\"0.01633\"},{\"ticker_id\":\"GALA-TRY\",\"base_currency\":\"GALA\",\"target_currency\":\"TRY\",\"last_price\":\"0.698\",\"base_volume\":\"317734.7\",\"target_volume\":\"221778.838\",\"high\":\"0.749\",\"low\":\"0.667\"},{\"ticker_id\":\"GALA-EUR\",\"base_currency\":\"GALA\",\"target_currency\":\"EUR\",\"last_price\":\"0.01460\",\"base_volume\":\"41395\",\"target_volume\":\"604.37666\",\"high\":\"0.01573\",\"low\":\"0.01406\"},{\"ticker_id\":\"SANTOS-USDT\",\"base_currency\":\"SANTOS\",\"target_currency\":\"USDT\",\"last_price\":\"2.603\",\"base_volume\":\"27002.27\",\"target_volume\":\"70286.934\",\"high\":\"2.662\",\"low\":\"2.410\"},{\"ticker_id\":\"SANTOS-TRY\",\"base_currency\":\"SANTOS\",\"target_currency\":\"TRY\",\"last_price\":\"106.36\",\"base_volume\":\"13759.60\",\"target_volume\":\"1463471.94\",\"high\":\"108.38\",\"low\":\"98.01\"},{\"ticker_id\":\"HOT-USDT\",\"base_currency\":\"HOT\",\"target_currency\":\"USDT\",\"last_price\":\"0.000955\",\"base_volume\":\"17385468\",\"target_volume\":\"16603.122684\",\"high\":\"0.001041\",\"low\":\"0.000924\"},{\"ticker_id\":\"HOT-TRY\",\"base_currency\":\"HOT\",\"target_currency\":\"TRY\",\"last_price\":\"0.03904\",\"base_volume\":\"4452837\",\"target_volume\":\"173838.76678\",\"high\":\"0.04240\",\"low\":\"0.03780\"},{\"ticker_id\":\"INJ-USDT\",\"base_currency\":\"INJ\",\"target_currency\":\"USDT\",\"last_price\":\"15.310\",\"base_volume\":\"14727.5\",\"target_volume\":\"225478.352\",\"high\":\"16.090\",\"low\":\"14.690\"},{\"ticker_id\":\"INJ-TRY\",\"base_currency\":\"INJ\",\"target_currency\":\"TRY\",\"last_price\":\"625.60\",\"base_volume\":\"405.76\",\"target_volume\":\"253848.91\",\"high\":\"655.00\",\"low\":\"601.00\"},{\"ticker_id\":\"SLP-USDT\",\"base_currency\":\"SLP\",\"target_currency\":\"USDT\",\"last_price\":\"0.0018\",\"base_volume\":\"4185523\",\"target_volume\":\"7533.9418\",\"high\":\"0.0019\",\"low\":\"0.0018\"},{\"ticker_id\":\"SLP-TRY\",\"base_currency\":\"SLP\",\"target_currency\":\"TRY\",\"last_price\":\"0.0776\",\"base_volume\":\"785075\",\"target_volume\":\"60921.8747\",\"high\":\"0.0807\",\"low\":\"0.0743\"},{\"ticker_id\":\"LAZIO-USDT\",\"base_currency\":\"LAZIO\",\"target_currency\":\"USDT\",\"last_price\":\"1.0390\",\"base_volume\":\"15780.49\",\"target_volume\":\"16395.9329\",\"high\":\"1.1090\",\"low\":\"0.9500\"},{\"ticker_id\":\"LAZIO-TRY\",\"base_currency\":\"LAZIO\",\"target_currency\":\"TRY\",\"last_price\":\"42.490\",\"base_volume\":\"6453.65\",\"target_volume\":\"274215.931\",\"high\":\"45.240\",\"low\":\"38.570\"},{\"ticker_id\":\"SXP-USDT\",\"base_currency\":\"SXP\",\"target_currency\":\"USDT\",\"last_price\":\"0.184\",\"base_volume\":\"49636.3\",\"target_volume\":\"9133.086\",\"high\":\"0.194\",\"low\":\"0.177\"},{\"ticker_id\":\"SXP-TRY\",\"base_currency\":\"SXP\",\"target_currency\":\"TRY\",\"last_price\":\"7.52\",\"base_volume\":\"3979.2\",\"target_volume\":\"29924.29\",\"high\":\"7.90\",\"low\":\"7.26\"},{\"ticker_id\":\"LRC-USDT\",\"base_currency\":\"LRC\",\"target_currency\":\"USDT\",\"last_price\":\"0.0869\",\"base_volume\":\"170169\",\"target_volume\":\"14787.7491\",\"high\":\"0.0951\",\"low\":\"0.0836\"},{\"ticker_id\":\"LRC-TRY\",\"base_currency\":\"LRC\",\"target_currency\":\"TRY\",\"last_price\":\"3.54\",\"base_volume\":\"16234.4\",\"target_volume\":\"57469.96\",\"high\":\"3.86\",\"low\":\"3.40\"},{\"ticker_id\":\"TLM-USDT\",\"base_currency\":\"TLM\",\"target_currency\":\"USDT\",\"last_price\":\"0.0049\",\"base_volume\":\"1884114.462\",\"target_volume\":\"9232.1608\",\"high\":\"0.0052\",\"low\":\"0.0047\"},{\"ticker_id\":\"TLM-TRY\",\"base_currency\":\"TLM\",\"target_currency\":\"TRY\",\"last_price\":\"0.200\",\"base_volume\":\"154638\",\"target_volume\":\"30927.666\",\"high\":\"0.214\",\"low\":\"0.192\"},{\"ticker_id\":\"MANA-USDT\",\"base_currency\":\"MANA\",\"target_currency\":\"USDT\",\"last_price\":\"0.2960\",\"base_volume\":\"129494\",\"target_volume\":\"38330.4436\",\"high\":\"0.3149\",\"low\":\"0.2847\"},{\"ticker_id\":\"MANA-TRY\",\"base_currency\":\"MANA\",\"target_currency\":\"TRY\",\"last_price\":\"12.10\",\"base_volume\":\"4953.1\",\"target_volume\":\"59933.05\",\"high\":\"12.81\",\"low\":\"11.64\"},{\"ticker_id\":\"UMA-USDT\",\"base_currency\":\"UMA\",\"target_currency\":\"USDT\",\"last_price\":\"1.279\",\"base_volume\":\"13621.6\",\"target_volume\":\"17422.080\",\"high\":\"1.330\",\"low\":\"1.226\"},{\"ticker_id\":\"UMA-TRY\",\"base_currency\":\"UMA\",\"target_currency\":\"TRY\",\"last_price\":\"52.2\",\"base_volume\":\"1958.22\",\"target_volume\":\"102219.4\",\"high\":\"54.0\",\"low\":\"50.1\"},{\"ticker_id\":\"XTZ-USDT\",\"base_currency\":\"XTZ\",\"target_currency\":\"USDT\",\"last_price\":\"0.855\",\"base_volume\":\"38945.0\",\"target_volume\":\"33298.012\",\"high\":\"0.884\",\"low\":\"0.823\"},{\"ticker_id\":\"AXS-USDT\",\"base_currency\":\"AXS\",\"target_currency\":\"USDT\",\"last_price\":\"2.40\",\"base_volume\":\"12616.45\",\"target_volume\":\"30279.48\",\"high\":\"2.58\",\"low\":\"2.32\"},{\"ticker_id\":\"AXS-TRY\",\"base_currency\":\"AXS\",\"target_currency\":\"TRY\",\"last_price\":\"98.1\",\"base_volume\":\"106.598\",\"target_volume\":\"10457.2\",\"high\":\"105.2\",\"low\":\"95.2\"},{\"ticker_id\":\"GRT-TRY\",\"base_currency\":\"GRT\",\"target_currency\":\"TRY\",\"last_price\":\"3.854\",\"base_volume\":\"25008\",\"target_volume\":\"96380.855\",\"high\":\"4.066\",\"low\":\"3.701\"},{\"ticker_id\":\"GRT-USDT\",\"base_currency\":\"GRT\",\"target_currency\":\"USDT\",\"last_price\":\"0.0943\",\"base_volume\":\"582406\",\"target_volume\":\"54920.9555\",\"high\":\"0.0999\",\"low\":\"0.0905\"},{\"ticker_id\":\"GRT-EUR\",\"base_currency\":\"GRT\",\"target_currency\":\"EUR\",\"last_price\":\"0.0805\",\"base_volume\":\"5838\",\"target_volume\":\"470.0029\",\"high\":\"0.0854\",\"low\":\"0.0780\"},{\"ticker_id\":\"EOS-TRY\",\"base_currency\":\"EOS\",\"target_currency\":\"TRY\",\"last_price\":\"30.52\",\"base_volume\":\"12511.9\",\"target_volume\":\"381863.99\",\"high\":\"32.00\",\"low\":\"27.99\"},{\"ticker_id\":\"EOS-USDT\",\"base_currency\":\"EOS\",\"target_currency\":\"USDT\",\"last_price\":\"0.779\",\"base_volume\":\"89225.6\",\"target_volume\":\"69506.757\",\"high\":\"0.815\",\"low\":\"0.712\"},{\"ticker_id\":\"AAVE-USDT\",\"base_currency\":\"AAVE\",\"target_currency\":\"USDT\",\"last_price\":\"312.5\",\"base_volume\":\"1376.403\",\"target_volume\":\"430126.0\",\"high\":\"330.1\",\"low\":\"303.7\"},{\"ticker_id\":\"ACH-USDT\",\"base_currency\":\"ACH\",\"target_currency\":\"USDT\",\"last_price\":\"0.02175\",\"base_volume\":\"1993632\",\"target_volume\":\"43361.49743\",\"high\":\"0.02291\",\"low\":\"0.02084\"},{\"ticker_id\":\"USDC-USDT\",\"base_currency\":\"USDC\",\"target_currency\":\"USDT\",\"last_price\":\"0.9993\",\"base_volume\":\"23539721\",\"target_volume\":\"23523244.1106\",\"high\":\"0.9996\",\"low\":\"0.9990\"},{\"ticker_id\":\"APE-USDT\",\"base_currency\":\"APE\",\"target_currency\":\"USDT\",\"last_price\":\"0.6120\",\"base_volume\":\"60763.18\",\"target_volume\":\"37187.0692\",\"high\":\"0.6441\",\"low\":\"0.5937\"},{\"ticker_id\":\"EUR-USDT\",\"base_currency\":\"EUR\",\"target_currency\":\"USDT\",\"last_price\":\"1.167\",\"base_volume\":\"281127.8\",\"target_volume\":\"328076.229\",\"high\":\"1.170\",\"low\":\"1.162\"},{\"ticker_id\":\"SPELL-USDT\",\"base_currency\":\"SPELL\",\"target_currency\":\"USDT\",\"last_price\":\"0.00049\",\"base_volume\":\"21440920\",\"target_volume\":\"10506.05086\",\"high\":\"0.00052\",\"low\":\"0.00047\"},{\"ticker_id\":\"SPELL-TRY\",\"base_currency\":\"SPELL\",\"target_currency\":\"TRY\",\"last_price\":\"0.02022\",\"base_volume\":\"6353439\",\"target_volume\":\"128466.54203\",\"high\":\"0.02139\",\"low\":\"0.01945\"},{\"ticker_id\":\"AUDIO-USDT\",\"base_currency\":\"AUDIO\",\"target_currency\":\"USDT\",\"last_price\":\"0.062\",\"base_volume\":\"127895.0\",\"target_volume\":\"7929.494\",\"high\":\"0.065\",\"low\":\"0.060\"},{\"ticker_id\":\"IMX-USDT\",\"base_currency\":\"IMX\",\"target_currency\":\"USDT\",\"last_price\":\"0.589\",\"base_volume\":\"79216.57\",\"target_volume\":\"46658.563\",\"high\":\"0.620\",\"low\":\"0.549\"},{\"ticker_id\":\"UNFI-USDT\",\"base_currency\":\"UNFI\",\"target_currency\":\"USDT\",\"last_price\":\"0.000\",\"base_volume\":\"0.0\",\"target_volume\":\"0.000\",\"high\":\"0.000\",\"low\":\"0.000\"},{\"ticker_id\":\"WING-USDT\",\"base_currency\":\"WING\",\"target_currency\":\"USDT\",\"last_price\":\"0.32\",\"base_volume\":\"39239.25\",\"target_volume\":\"12556.56\",\"high\":\"0.93\",\"low\":\"0.29\"}]",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get order book depth information for coingecko",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coingecko\/orderbook",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/coingecko\/orderbook"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ticker_id\":\"USDT-TRY\",\"limit\":\"5\"}"
                        },
                        "description": "Get order book depth details.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "200"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "187"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"ticker_id\":\"USDT-TRY\",\"timestamp\":1755246412,\"bids\":[[\"40.870\",\"1749\"],[\"40.860\",\"1014\"],[\"40.850\",\"1065\"],[\"40.840\",\"96\"],[\"40.830\",\"236\"]],\"asks\":[[\"40.880\",\"2680\"],[\"40.890\",\"2288\"],[\"40.900\",\"9923\"],[\"40.910\",\"128\"],[\"40.920\",\"328\"]]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get historical trades information for coingecko",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coingecko\/historical_trades",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/coingecko\/historical_trades"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ticker_id\":\"USDT-TRY\",\"limit\":\"10\"}"
                        },
                        "description": "Get historical trades data.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "200"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "186"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"buys\":[{\"trade_id\":305629755,\"price\":\"40.870\",\"base_volume\":\"2\",\"target_volume\":\"81.74000000\",\"trade_timestamp\":1755246410866,\"type\":\"buy\"},{\"trade_id\":305629756,\"price\":\"40.870\",\"base_volume\":\"1\",\"target_volume\":\"40.87000000\",\"trade_timestamp\":1755246411357,\"type\":\"buy\"},{\"trade_id\":305629757,\"price\":\"40.870\",\"base_volume\":\"129\",\"target_volume\":\"5272.23000000\",\"trade_timestamp\":1755246411357,\"type\":\"buy\"},{\"trade_id\":305629759,\"price\":\"40.870\",\"base_volume\":\"100\",\"target_volume\":\"4087.00000000\",\"trade_timestamp\":1755246411808,\"type\":\"buy\"}],\"sells\":[{\"trade_id\":305629753,\"price\":\"40.880\",\"base_volume\":\"3\",\"target_volume\":\"122.64000000\",\"trade_timestamp\":1755246410016,\"type\":\"sell\"},{\"trade_id\":305629754,\"price\":\"40.880\",\"base_volume\":\"1\",\"target_volume\":\"40.88000000\",\"trade_timestamp\":1755246410018,\"type\":\"sell\"},{\"trade_id\":305629758,\"price\":\"40.880\",\"base_volume\":\"6\",\"target_volume\":\"245.28000000\",\"trade_timestamp\":1755246411761,\"type\":\"sell\"},{\"trade_id\":305629760,\"price\":\"40.880\",\"base_volume\":\"22\",\"target_volume\":\"899.36000000\",\"trade_timestamp\":1755246412099,\"type\":\"sell\"},{\"trade_id\":305629761,\"price\":\"40.880\",\"base_volume\":\"1\",\"target_volume\":\"40.88000000\",\"trade_timestamp\":1755246412132,\"type\":\"sell\"},{\"trade_id\":305629762,\"price\":\"40.880\",\"base_volume\":\"11\",\"target_volume\":\"449.68000000\",\"trade_timestamp\":1755246412647,\"type\":\"sell\"}]}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Coinex Endpoints",
            "description": "",
            "item": [
                {
                    "name": "Start on-ramp process",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coinex\/on-ramp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/coinex\/on-ramp"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_email\":\"test@test.com\",\"user_wallet_address\":\"TV6MuMXfmLbBqPZvBHdwFsDnQeVfnmiuSi\",\"convert_amount\":2000}"
                        },
                        "description": "This endpoint will be used to start the on-ramp process.\n<aside class=\"notice\">You can interact with on-ramp ui demo with this link: <a href=\"https:\/\/biqbang.com\/coinex\/on-ramp\/8369ee3f-6f3b-4af9-b884-66fbdfc2695d\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/biqbang.com\/coinex\/on-ramp\/8369ee3f-6f3b-4af9-b884-66fbdfc2695d<\/a><\/aside>\n<aside class=\"warning\">Please note that the on-ramp ui demo doesn't provide functionality like bank transfer, kyc etc. Demo is just for ui validation.<\/aside>"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"process_id\": \"8369ee3f-6f3b-4af9-b884-66fbdfc2695d\",\n \"user_email\": \"test@test.com\",\n \"user_wallet_address\": \"TV6MuMXfmLbBqPZvBHdwFsDnQeVfnmiuSi\",\n \"convert_amount\": 2000,\n \"type\": \"on-ramp\",\n \"status\": \"processing\",\n \"redirect_url\": \"https:\/\/biqbang.com\/coinex\/on-ramp\/8369ee3f-6f3b-4af9-b884-66fbdfc2695d\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Start off-ramp process",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coinex\/off-ramp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/coinex\/off-ramp"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_email\":\"test@test.com\",\"convert_amount\":1800}"
                        },
                        "description": "This endpoint will be used to start the off-ramp process.\n<aside class=\"notice\">You can interact with off-ramp ui demo with this link: <a href=\"https:\/\/biqbang.com\/coinex\/off-ramp\/2a6d6709-bbd7-4746-9685-e42c07f19120\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/biqbang.com\/coinex\/off-ramp\/2a6d6709-bbd7-4746-9685-e42c07f19120<\/a><\/aside>\n<aside class=\"warning\">Please note that the on-ramp ui demo doesn't provide functionality like bank transfer, kyc etc. Demo is just for ui validation.<\/aside>"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"process_id\": \"2a6d6709-bbd7-4746-9685-e42c07f19120\",\n \"user_email\": \"test@test.com\",\n \"convert_amount\": 1800,\n \"type\": \"off-ramp\",\n \"status\": \"processing\",\n \"redirect_url\": \"https:\/\/biqbang.com\/coinex\/off-ramp\/2a6d6709-bbd7-4746-9685-e42c07f19120\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Customer Support",
            "description": "AI chatbot, ticketing system, and support management",
            "item": [
                {
                    "name": "AI Chat Support",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/support\/chat",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/support\/chat"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"message\":\"praesentium\",\"context\":\"consequatur\",\"language\":\"qui\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Create Support Ticket",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/support\/ticket",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/support\/ticket"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"category\":\"a\",\"subject\":\"aut\",\"description\":\"aut\",\"priority\":\"et\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Schedule Video KYC",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/support\/video-kyc",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/support\/video-kyc"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"preferred_time\":\"placeat\",\"timezone\":\"sed\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Gift & Voucher System",
            "description": "Crypto gift cards, vouchers, and promotional campaigns",
            "item": [
                {
                    "name": "Create Gift Card",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/gifts\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/gifts\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"amount\":\"100.00\",\"currency\":\"USD\",\"recipient_email\":\"aut\",\"message\":\"non\",\"design_template\":\"beatae\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Create Bulk Vouchers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/gifts\/bulk",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/gifts\/bulk"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"campaign_name\":\"saepe\",\"voucher_count\":5,\"value_per_voucher\":\"et\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Redeem Gift\/Voucher",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/gifts\/redeem",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/gifts\/redeem"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"code\":\"et\",\"wallet_id\":\"quaerat\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Governance Token & Compliance",
            "description": "\nUtility token management for transaction discounts, staking rewards, governance voting,\nand comprehensive KYC\/AML compliance with fraud detection systems.",
            "item": [
                {
                    "name": "Get Governance Token Info",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/governance\/token\/info",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/governance\/token\/info"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve information about the platform's governance and utility token,\nincluding current price, staking APY, and holder benefits."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"token\": {\n      \"symbol\": \"BQPAY\",\n      \"name\": \"BiqBang Pay Token\",\n      \"contract_address\": \"0x1234567890abcdef1234567890abcdef12345678\",\n      \"decimals\": 18,\n      \"total_supply\": \"1000000000\",\n      \"circulating_supply\": \"450000000\",\n      \"market_cap\": \"225000000\",\n      \"price_usd\": \"0.50\",\n      \"price_change_24h\": \"2.5%\"\n    },\n    \"staking\": {\n      \"apy_current\": \"12.5%\",\n      \"apy_range\": {\n        \"min\": \"8%\",\n        \"max\": \"25%\"\n      },\n      \"total_staked\": \"180000000\",\n      \"staking_ratio\": \"40%\",\n      \"lock_periods\": [\n        {\"days\": 30, \"apy\": \"8%\", \"multiplier\": 1.0},\n        {\"days\": 90, \"apy\": \"12%\", \"multiplier\": 1.5},\n        {\"days\": 180, \"apy\": \"18%\", \"multiplier\": 2.0},\n        {\"days\": 365, \"apy\": \"25%\", \"multiplier\": 3.0}\n      ]\n    },\n    \"benefits\": {\n      \"transaction_discounts\": [\n        {\"tier\": \"bronze\", \"min_tokens\": 100, \"discount\": \"1%\"},\n        {\"tier\": \"silver\", \"min_tokens\": 1000, \"discount\": \"2%\"},\n        {\"tier\": \"gold\", \"min_tokens\": 10000, \"discount\": \"3%\"},\n        {\"tier\": \"platinum\", \"min_tokens\": 100000, \"discount\": \"5%\"}\n      ],\n      \"fee_reduction\": {\n        \"trading_fees\": \"up to 50%\",\n        \"withdrawal_fees\": \"up to 30%\",\n        \"card_fees\": \"waived for platinum\"\n      },\n      \"governance_power\": {\n        \"proposal_threshold\": \"10000\",\n        \"voting_weight\": \"1 token = 1 vote\",\n        \"delegation_enabled\": true\n      },\n      \"exclusive_features\": [\n        \"Premium card designs\",\n        \"Priority customer support\",\n        \"Early access to new features\",\n        \"Higher spending limits\",\n        \"Exclusive merchant offers\"\n      ]\n    },\n    \"distribution\": {\n      \"ecosystem_rewards\": \"30%\",\n      \"team_advisors\": \"20%\",\n      \"public_sale\": \"25%\",\n      \"liquidity_mining\": \"15%\",\n      \"treasury\": \"10%\"\n    }\n  },\n  \"message\": \"Token information retrieved successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Stake Governance Tokens",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/governance\/stake",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/governance\/stake"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":\"wlt_zk_1234567890abcdef\",\"amount\":\"10000\",\"lock_period\":90,\"auto_compound\":true}"
                        },
                        "description": "Stake BQPAY tokens to earn rewards, unlock benefits, and participate in governance."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"staking_id\": \"stake_abc123def456\",\n    \"transaction_hash\": \"0xabc123def456...\",\n    \"staking_details\": {\n      \"amount_staked\": \"10000\",\n      \"lock_period\": 90,\n      \"unlock_date\": \"2025-04-30T10:00:00Z\",\n      \"apy\": \"12%\",\n      \"estimated_rewards\": \"300\",\n      \"auto_compound\": true\n    },\n    \"user_tier\": {\n      \"previous\": \"silver\",\n      \"current\": \"gold\",\n      \"benefits_unlocked\": [\n        \"3% transaction discount\",\n        \"Premium card eligibility\",\n        \"Governance voting rights\"\n      ]\n    },\n    \"total_staked\": \"25000\",\n    \"voting_power\": \"25000\",\n    \"next_reward_date\": \"2025-01-31T00:00:00Z\"\n  },\n  \"message\": \"Tokens staked successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"error\": \"Insufficient token balance\",\n  \"code\": \"INSUFFICIENT_TOKENS\",\n  \"details\": {\n    \"required\": \"10000 BQPAY\",\n    \"available\": \"5000 BQPAY\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create Governance Proposal",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/governance\/proposals\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/governance\/proposals\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":\"wlt_zk_1234567890abcdef\",\"proposal_type\":\"parameter_change\",\"title\":\"Reduce transaction fees by 20%\",\"description\":\"in\",\"parameters\":[],\"voting_period\":7}"
                        },
                        "description": "Submit a governance proposal for platform improvements or parameter changes.\nRequires minimum token holdings to create proposals."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"proposal_id\": \"prop_gov_456abc789\",\n    \"status\": \"active\",\n    \"proposer\": {\n      \"address\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb7\",\n      \"token_balance\": \"50000\",\n      \"voting_power\": \"50000\"\n    },\n    \"proposal_details\": {\n      \"title\": \"Reduce transaction fees by 20%\",\n      \"type\": \"parameter_change\",\n      \"description\": \"Proposal to reduce platform transaction fees...\",\n      \"parameters\": {\n        \"current_fee\": \"0.3%\",\n        \"proposed_fee\": \"0.24%\",\n        \"affected_services\": [\"trading\", \"transfers\"]\n      }\n    },\n    \"voting\": {\n      \"start_time\": \"2025-01-30T12:00:00Z\",\n      \"end_time\": \"2025-02-06T12:00:00Z\",\n      \"quorum_required\": \"100000\",\n      \"current_votes\": {\n        \"for\": \"0\",\n        \"against\": \"0\",\n        \"abstain\": \"0\"\n      },\n      \"participation\": \"0%\"\n    },\n    \"execution\": {\n      \"timelock_period\": \"48 hours\",\n      \"execution_time\": \"2025-02-08T12:00:00Z\",\n      \"executable_by\": \"anyone\"\n    },\n    \"ipfs_hash\": \"QmXoypizjW3WknFiJnKLwHCnL72vedxjQkDDP1mXWo6uco\",\n    \"discussion_url\": \"https:\/\/forum.biqbang.com\/proposals\/prop_gov_456abc789\"\n  },\n  \"message\": \"Governance proposal created successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"error\": \"Insufficient tokens for proposal creation\",\n  \"code\": \"INSUFFICIENT_GOVERNANCE_TOKENS\",\n  \"details\": {\n    \"required\": \"10000 BQPAY\",\n    \"current\": \"5000 BQPAY\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Submit KYC Verification",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/compliance\/kyc\/submit",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/compliance\/kyc\/submit"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":\"usr_1234567890\",\"document_type\":\"passport\",\"document_number\":\"AB1234567\",\"document_front\":\"data:image\\\/jpeg;base64,\\\/9j\\\/4AAQ...\",\"document_back\":\"data:image\\\/jpeg;base64,\\\/9j\\\/4AAQ...\",\"selfie\":\"data:image\\\/jpeg;base64,\\\/9j\\\/4AAQ...\",\"personal_info\":{\"first_name\":\"John\",\"last_name\":\"Doe\",\"date_of_birth\":\"1990-01-15\",\"nationality\":\"US\",\"address\":[]},\"consent\":[]}"
                        },
                        "description": "Submit Know Your Customer (KYC) documents for identity verification and compliance.\nRequired for accessing full platform features and higher transaction limits."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"verification_id\": \"kyc_ver_789xyz123\",\n    \"status\": \"pending\",\n    \"submission_time\": \"2025-01-30T11:00:00Z\",\n    \"estimated_review_time\": \"24-48 hours\",\n    \"verification_levels\": {\n      \"basic\": {\n        \"status\": \"completed\",\n        \"verified_at\": \"2025-01-30T11:05:00Z\"\n      },\n      \"intermediate\": {\n        \"status\": \"in_review\",\n        \"requirements\": [\"document_verification\", \"selfie_match\"]\n      },\n      \"advanced\": {\n        \"status\": \"pending\",\n        \"requirements\": [\"address_verification\", \"source_of_funds\"]\n      }\n    },\n    \"risk_assessment\": {\n      \"risk_score\": 25,\n      \"risk_level\": \"low\",\n      \"pep_check\": \"clear\",\n      \"sanctions_check\": \"clear\",\n      \"adverse_media\": \"clear\"\n    },\n    \"limits\": {\n      \"current\": {\n        \"daily_transaction\": \"1000\",\n        \"monthly_transaction\": \"5000\",\n        \"single_transaction\": \"500\"\n      },\n      \"after_approval\": {\n        \"daily_transaction\": \"50000\",\n        \"monthly_transaction\": \"500000\",\n        \"single_transaction\": \"25000\"\n      }\n    },\n    \"required_actions\": [],\n    \"webhook_url\": \"https:\/\/biqbang.com\/api\/v1\/kyc\/hooks\"\n  },\n  \"message\": \"KYC verification submitted successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"error\": \"Invalid document format\",\n  \"code\": \"INVALID_DOCUMENT\",\n  \"details\": {\n    \"document_front\": [\"Document image is too small or unclear\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Check Transaction Risk Score",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/compliance\/risk\/check",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/compliance\/risk\/check"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"transaction_id\":\"txn_multi_987654321\",\"amount\":\"5000.00\",\"currency\":\"USD\",\"merchant\":[],\"user_behavior\":[],\"device_info\":[]}"
                        },
                        "description": "Analyze a transaction for fraud risk and compliance issues using AI-powered risk scoring.\nProvides real-time risk assessment for transaction approval decisions."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"risk_score\": 28,\n    \"risk_level\": \"low\",\n    \"recommendation\": \"approve\",\n    \"risk_factors\": [\n      {\n        \"factor\": \"transaction_amount\",\n        \"weight\": 0.2,\n        \"score\": 15,\n        \"reason\": \"Amount within normal range for user\"\n      },\n      {\n        \"factor\": \"merchant_reputation\",\n        \"weight\": 0.3,\n        \"score\": 5,\n        \"reason\": \"Trusted merchant with good history\"\n      },\n      {\n        \"factor\": \"user_behavior\",\n        \"weight\": 0.25,\n        \"score\": 8,\n        \"reason\": \"Consistent with user patterns\"\n      },\n      {\n        \"factor\": \"device_trust\",\n        \"weight\": 0.15,\n        \"score\": 0,\n        \"reason\": \"Known and trusted device\"\n      },\n      {\n        \"factor\": \"velocity_check\",\n        \"weight\": 0.1,\n        \"score\": 0,\n        \"reason\": \"Transaction velocity normal\"\n      }\n    ],\n    \"compliance_checks\": {\n      \"aml_status\": \"passed\",\n      \"sanctions_screening\": \"clear\",\n      \"pep_screening\": \"clear\",\n      \"high_risk_country\": false,\n      \"suspicious_pattern\": false\n    },\n    \"fraud_indicators\": {\n      \"ip_risk\": \"low\",\n      \"email_risk\": \"low\",\n      \"phone_risk\": \"low\",\n      \"address_mismatch\": false,\n      \"velocity_spike\": false,\n      \"unusual_behavior\": false\n    },\n    \"authentication_required\": {\n      \"3ds\": false,\n      \"biometric\": false,\n      \"2fa\": false,\n      \"manual_review\": false\n    },\n    \"ml_confidence\": 0.94,\n    \"timestamp\": \"2025-01-30T11:15:00Z\"\n  },\n  \"message\": \"Risk assessment completed\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"risk_score\": 78,\n    \"risk_level\": \"high\",\n    \"recommendation\": \"decline\",\n    \"risk_factors\": [\n      {\n        \"factor\": \"transaction_amount\",\n        \"weight\": 0.2,\n        \"score\": 18,\n        \"reason\": \"Unusually high amount for user profile\"\n      },\n      {\n        \"factor\": \"merchant_reputation\",\n        \"weight\": 0.3,\n        \"score\": 25,\n        \"reason\": \"New or unverified merchant\"\n      },\n      {\n        \"factor\": \"user_behavior\",\n        \"weight\": 0.25,\n        \"score\": 20,\n        \"reason\": \"Deviation from normal patterns detected\"\n      },\n      {\n        \"factor\": \"device_trust\",\n        \"weight\": 0.15,\n        \"score\": 10,\n        \"reason\": \"New device, location mismatch\"\n      },\n      {\n        \"factor\": \"velocity_check\",\n        \"weight\": 0.1,\n        \"score\": 5,\n        \"reason\": \"Multiple transactions in short period\"\n      }\n    ],\n    \"authentication_required\": {\n      \"3ds\": true,\n      \"biometric\": true,\n      \"2fa\": true,\n      \"manual_review\": true\n    }\n  }\n}",
                            "name": "high_risk"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Mobile Wallet",
            "description": "Advanced mobile wallet features with QR, NFC, and proximity payments",
            "item": [
                {
                    "name": "Generate QR Code for Payment",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mobile\/qr\/generate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mobile\/qr\/generate"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"amount\":\"occaecati\",\"currency\":\"dolor\",\"merchant_id\":\"expedita\",\"expiry_seconds\":5}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Scan and Pay QR Code",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mobile\/qr\/pay",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mobile\/qr\/pay"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"qr_data\":\"consequatur\",\"wallet_id\":\"aut\",\"pin\":\"eveniet\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "NFC Tap to Pay",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mobile\/nfc",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mobile\/nfc"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"terminal_id\":\"eos\",\"amount\":\"et\",\"device_authentication\":\"et\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Proximity Payment (Bluetooth\/Sound)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mobile\/proximity",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mobile\/proximity"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"proximity_type\":\"hic\",\"recipient_id\":\"facere\",\"amount\":\"molestias\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Augmented Reality Payment",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mobile\/ar",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mobile\/ar"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ar_marker_id\":\"aliquid\",\"interaction_type\":\"possimus\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Face Recognition Payment",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mobile\/face",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mobile\/face"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"face_data\":\"quasi\",\"merchant_id\":\"quidem\",\"amount\":\"veniam\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Voice Activated Payment",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mobile\/voice",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mobile\/voice"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"voice_command\":\"impedit\",\"voice_signature\":\"deserunt\",\"action\":\"voluptate\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Offline Payment Mode",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/mobile\/offline",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/mobile\/offline"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"offline_tokens\":[\"sed\"],\"amount\":\"impedit\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Nomics Endpoints",
            "description": "",
            "item": [
                {
                    "name": "Get exchange information for nomics",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nomics\/info",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nomics\/info"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get exchange information.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "200"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "192"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"name\":\"BiqBang\",\"description\":\"Biqbang Crypto Exchange is a platform that provides transactions in the Republic of Turkey It is a crypto exchange platform that uses its own technologies with the Biqbang in house system, all innovative technologies are completely its own. Biqbang platform The purpose of establishment of Biqbang (https:\\\/\\\/www.biqbang.com) is to provide our users residing in Turkey with the opportunity to deposit and withdraw TRY by bank channel, taking into account the legal regulations of the Republic of Turkey. 142 cryptocurrencies and supports the national fiat currency as it enables trading and exchanging crypto in pairs with the Turkish Lira. Additionally, USDT pairs are offered on the platform. Depositing and withdrawal of TRY are available through any of the 2 banks integrated with Biqbang\",\"location\":\"Turkey\",\"logo\":\"https:\\\/\\\/biqbang.com\\\/images\\\/biqbang-logo-nomics.png\",\"website\":\"https:\\\/\\\/biqbang.com\",\"fees\":\"https:\\\/\\\/biqbang.com\\\/page\\\/fees\",\"chat\":\"https:\\\/\\\/t.me\\\/biqbangturkey\",\"instagram\":\"\",\"youtube\":\"https:\\\/\\\/www.youtube.com\\\/\",\"facebook\":\"\",\"twitter\":\"\",\"linkedin\":\"https:\\\/\\\/www.linkedin.com\\\/\",\"version\":\"1.0\",\"capability\":{\"markets\":true,\"ticker\":true,\"trades\":false,\"tradesByTimestamp\":false,\"tradesSocket\":false,\"orders\":false,\"ordersSocket\":false,\"ordersSnapshot\":false,\"candles\":false}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get ticker information for nomics",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nomics\/ticker",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nomics\/ticker"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get a high level overview of the state of the market for a specified active symbols.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "200"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "191"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "[{\"market\":\"USDT-TRY\",\"base\":\"USDT\",\"quote\":\"TRY\",\"price_quote\":\"40.880\",\"volume_base\":\"446141\"},{\"market\":\"BTC-USDT\",\"base\":\"BTC\",\"quote\":\"USDT\",\"price_quote\":\"119038.01\",\"volume_base\":\"143.92000\"},{\"market\":\"BTC-TRY\",\"base\":\"BTC\",\"quote\":\"TRY\",\"price_quote\":\"4866795.00\",\"volume_base\":\"0.86939\"},{\"market\":\"BTC-EUR\",\"base\":\"BTC\",\"quote\":\"EUR\",\"price_quote\":\"102005.11\",\"volume_base\":\"3.98481\"},{\"market\":\"ETH-USDT\",\"base\":\"ETH\",\"quote\":\"USDT\",\"price_quote\":\"4653.31\",\"volume_base\":\"7321.0118\"},{\"market\":\"ETH-TRY\",\"base\":\"ETH\",\"quote\":\"TRY\",\"price_quote\":\"190249\",\"volume_base\":\"57.5835\"},{\"market\":\"ETH-EUR\",\"base\":\"ETH\",\"quote\":\"EUR\",\"price_quote\":\"3987.68\",\"volume_base\":\"159.7633\"},{\"market\":\"ADA-USDT\",\"base\":\"ADA\",\"quote\":\"USDT\",\"price_quote\":\"0.951\",\"volume_base\":\"4179594.4674\"},{\"market\":\"ADA-TRY\",\"base\":\"ADA\",\"quote\":\"TRY\",\"price_quote\":\"38.88\",\"volume_base\":\"54140.2\"},{\"market\":\"ADA-EUR\",\"base\":\"ADA\",\"quote\":\"EUR\",\"price_quote\":\"0.814\",\"volume_base\":\"84617.2\"},{\"market\":\"DOGE-USDT\",\"base\":\"DOGE\",\"quote\":\"USDT\",\"price_quote\":\"0.23164\",\"volume_base\":\"17062698\"},{\"market\":\"DOGE-TRY\",\"base\":\"DOGE\",\"quote\":\"TRY\",\"price_quote\":\"9.468\",\"volume_base\":\"194070\"},{\"market\":\"DOGE-EUR\",\"base\":\"DOGE\",\"quote\":\"EUR\",\"price_quote\":\"0.1985\",\"volume_base\":\"114045\"},{\"market\":\"SOL-USDT\",\"base\":\"SOL\",\"quote\":\"USDT\",\"price_quote\":\"197.30\",\"volume_base\":\"42835.69\"},{\"market\":\"SOL-TRY\",\"base\":\"SOL\",\"quote\":\"TRY\",\"price_quote\":\"8062.5\",\"volume_base\":\"210.50\"},{\"market\":\"SOL-EUR\",\"base\":\"SOL\",\"quote\":\"EUR\",\"price_quote\":\"169.03\",\"volume_base\":\"602.14\"},{\"market\":\"BNB-USDT\",\"base\":\"BNB\",\"quote\":\"USDT\",\"price_quote\":\"851.7\",\"volume_base\":\"2919.828\"},{\"market\":\"BNB-TRY\",\"base\":\"BNB\",\"quote\":\"TRY\",\"price_quote\":\"34821\",\"volume_base\":\"17.428\"},{\"market\":\"BNB-EUR\",\"base\":\"BNB\",\"quote\":\"EUR\",\"price_quote\":\"729.8\",\"volume_base\":\"32.451\"},{\"market\":\"XRP-USDT\",\"base\":\"XRP\",\"quote\":\"USDT\",\"price_quote\":\"3.125\",\"volume_base\":\"1478617.0416\"},{\"market\":\"XRP-TRY\",\"base\":\"XRP\",\"quote\":\"TRY\",\"price_quote\":\"127.770\",\"volume_base\":\"51950\"},{\"market\":\"XRP-EUR\",\"base\":\"XRP\",\"quote\":\"EUR\",\"price_quote\":\"2.6786\",\"volume_base\":\"40949\"},{\"market\":\"BTTC-USDT\",\"base\":\"BTT\",\"quote\":\"USDT\",\"price_quote\":\"0.00000068\",\"volume_base\":\"20847975182\"},{\"market\":\"BTTC-TRY\",\"base\":\"BTT\",\"quote\":\"TRY\",\"price_quote\":\"0.00002806\",\"volume_base\":\"2085426031.7\"},{\"market\":\"TRX-USDT\",\"base\":\"TRX\",\"quote\":\"USDT\",\"price_quote\":\"0.35930\",\"volume_base\":\"7033345.2\"},{\"market\":\"TRX-TRY\",\"base\":\"TRX\",\"quote\":\"TRY\",\"price_quote\":\"14.6860\",\"volume_base\":\"148056.726\"},{\"market\":\"TRX-EUR\",\"base\":\"TRX\",\"quote\":\"EUR\",\"price_quote\":\"0.30790\",\"volume_base\":\"10859\"},{\"market\":\"SHIB-USDT\",\"base\":\"SHIB\",\"quote\":\"USDT\",\"price_quote\":\"0.00001308\",\"volume_base\":\"17637237913\"},{\"market\":\"SHIB-TRY\",\"base\":\"SHIB\",\"quote\":\"TRY\",\"price_quote\":\"0.00053500\",\"volume_base\":\"949900785\"},{\"market\":\"SHIB-EUR\",\"base\":\"SHIB\",\"quote\":\"EUR\",\"price_quote\":\"0.00001118\",\"volume_base\":\"297074263\"},{\"market\":\"DOT-USDT\",\"base\":\"DOT\",\"quote\":\"USDT\",\"price_quote\":\"4.03\",\"volume_base\":\"84645.87\"},{\"market\":\"DOT-TRY\",\"base\":\"DOT\",\"quote\":\"TRY\",\"price_quote\":\"164.8\",\"volume_base\":\"840.16\"},{\"market\":\"DOT-EUR\",\"base\":\"DOT\",\"quote\":\"EUR\",\"price_quote\":\"3.45\",\"volume_base\":\"908.51\"},{\"market\":\"RVN-USDT\",\"base\":\"RVN\",\"quote\":\"USDT\",\"price_quote\":\"0.01395\",\"volume_base\":\"1616058.9\"},{\"market\":\"RVN-TRY\",\"base\":\"RVN\",\"quote\":\"TRY\",\"price_quote\":\"0.5700\",\"volume_base\":\"78515.80\"},{\"market\":\"LINK-USDT\",\"base\":\"LINK\",\"quote\":\"USDT\",\"price_quote\":\"22.61\",\"volume_base\":\"57455.46\"},{\"market\":\"LINK-TRY\",\"base\":\"LINK\",\"quote\":\"TRY\",\"price_quote\":\"924.4\",\"volume_base\":\"309.77\"},{\"market\":\"LINK-EUR\",\"base\":\"LINK\",\"quote\":\"EUR\",\"price_quote\":\"19.36\",\"volume_base\":\"459.56\"},{\"market\":\"ALICE-USDT\",\"base\":\"ALICE\",\"quote\":\"USDT\",\"price_quote\":\"0.39\",\"volume_base\":\"25818.51\"},{\"market\":\"ALICE-TRY\",\"base\":\"ALICE\",\"quote\":\"TRY\",\"price_quote\":\"15.970\",\"volume_base\":\"4040.9\"},{\"market\":\"MATIC-USDT\",\"base\":\"MATIC\",\"quote\":\"USDT\",\"price_quote\":\"0.0\",\"volume_base\":\"0.000\"},{\"market\":\"MATIC-TRY\",\"base\":\"MATIC\",\"quote\":\"TRY\",\"price_quote\":\"0.000\",\"volume_base\":\"0.0\"},{\"market\":\"MATIC-EUR\",\"base\":\"MATIC\",\"quote\":\"EUR\",\"price_quote\":\"0.0000\",\"volume_base\":\"0.0\"},{\"market\":\"ALPINE-USDT\",\"base\":\"ALPINE\",\"quote\":\"USDT\",\"price_quote\":\"1.4420\",\"volume_base\":\"48568.44\"},{\"market\":\"ALPINE-TRY\",\"base\":\"ALPINE\",\"quote\":\"TRY\",\"price_quote\":\"59.00\",\"volume_base\":\"20865.97\"},{\"market\":\"API3-USDT\",\"base\":\"API3\",\"quote\":\"USDT\",\"price_quote\":\"0.73\",\"volume_base\":\"36674.905\"},{\"market\":\"API3-TRY\",\"base\":\"API3\",\"quote\":\"TRY\",\"price_quote\":\"29.83\",\"volume_base\":\"1348.95\"},{\"market\":\"MBOX-USDT\",\"base\":\"MBOX\",\"quote\":\"USDT\",\"price_quote\":\"0.0\",\"volume_base\":\"161168.533\"},{\"market\":\"MBOX-TRY\",\"base\":\"MBOX\",\"quote\":\"TRY\",\"price_quote\":\"2.41\",\"volume_base\":\"39947.13\"},{\"market\":\"ARPA-USDT\",\"base\":\"ARPA\",\"quote\":\"USDT\",\"price_quote\":\"0.02254\",\"volume_base\":\"596738.7\"},{\"market\":\"ARPA-TRY\",\"base\":\"ARPA\",\"quote\":\"TRY\",\"price_quote\":\"0.9186\",\"volume_base\":\"163072\"},{\"market\":\"ATOM-USDT\",\"base\":\"ATOM\",\"quote\":\"USDT\",\"price_quote\":\"4.58\",\"volume_base\":\"17879.08\"},{\"market\":\"ATOM-TRY\",\"base\":\"ATOM\",\"quote\":\"TRY\",\"price_quote\":\"187.1\",\"volume_base\":\"230.541\"},{\"market\":\"ATOM-EUR\",\"base\":\"ATOM\",\"quote\":\"EUR\",\"price_quote\":\"3.92\",\"volume_base\":\"28.88\"},{\"market\":\"NEAR-USDT\",\"base\":\"NEAR\",\"quote\":\"USDT\",\"price_quote\":\"2.805\",\"volume_base\":\"126443.164\"},{\"market\":\"NEAR-TRY\",\"base\":\"NEAR\",\"quote\":\"TRY\",\"price_quote\":\"114.6\",\"volume_base\":\"667.680\"},{\"market\":\"NEAR-EUR\",\"base\":\"NEAR\",\"quote\":\"EUR\",\"price_quote\":\"2.396\",\"volume_base\":\"519.6\"},{\"market\":\"AVAX-USDT\",\"base\":\"AVAX\",\"quote\":\"USDT\",\"price_quote\":\"25.37\",\"volume_base\":\"42058.23\"},{\"market\":\"AVAX-TRY\",\"base\":\"AVAX\",\"quote\":\"TRY\",\"price_quote\":\"1037.1\",\"volume_base\":\"1928.05\"},{\"market\":\"AVAX-EUR\",\"base\":\"AVAX\",\"quote\":\"EUR\",\"price_quote\":\"21.71\",\"volume_base\":\"146.27\"},{\"market\":\"BEL-USDT\",\"base\":\"BEL\",\"quote\":\"USDT\",\"price_quote\":\"0.2\",\"volume_base\":\"33227.328\"},{\"market\":\"BEL-TRY\",\"base\":\"BEL\",\"quote\":\"TRY\",\"price_quote\":\"10.64\",\"volume_base\":\"9185.09\"},{\"market\":\"CHZ-USDT\",\"base\":\"CHZ\",\"quote\":\"USDT\",\"price_quote\":\"0.0410\",\"volume_base\":\"874458\"},{\"market\":\"CHZ-TRY\",\"base\":\"CHZ\",\"quote\":\"TRY\",\"price_quote\":\"1.678\",\"volume_base\":\"141426\"},{\"market\":\"CHZ-EUR\",\"base\":\"CHZ\",\"quote\":\"EUR\",\"price_quote\":\"0.0000\",\"volume_base\":\"0\"},{\"market\":\"ONT-USDT\",\"base\":\"ONT\",\"quote\":\"USDT\",\"price_quote\":\"0.1377\",\"volume_base\":\"51377\"},{\"market\":\"ONT-TRY\",\"base\":\"ONT\",\"quote\":\"TRY\",\"price_quote\":\"5.621\",\"volume_base\":\"2058\"},{\"market\":\"PORTO-USDT\",\"base\":\"PORTO\",\"quote\":\"USDT\",\"price_quote\":\"1.0360\",\"volume_base\":\"11060.03\"},{\"market\":\"PORTO-TRY\",\"base\":\"PORTO\",\"quote\":\"TRY\",\"price_quote\":\"42.40\",\"volume_base\":\"4454.45\"},{\"market\":\"REEF-USDT\",\"base\":\"REEF\",\"quote\":\"USDT\",\"price_quote\":\"0.00000\",\"volume_base\":\"0\"},{\"market\":\"REEF-TRY\",\"base\":\"REEF\",\"quote\":\"TRY\",\"price_quote\":\"0.0000\",\"volume_base\":\"0\"},{\"market\":\"DAR-USDT\",\"base\":\"DAR\",\"quote\":\"USDT\",\"price_quote\":\"0.00000\",\"volume_base\":\"0\"},{\"market\":\"DAR-TRY\",\"base\":\"DAR\",\"quote\":\"TRY\",\"price_quote\":\"0.00\",\"volume_base\":\"0.00\"},{\"market\":\"DENT-USDT\",\"base\":\"DENT\",\"quote\":\"USDT\",\"price_quote\":\"0.000801\",\"volume_base\":\"11461438\"},{\"market\":\"DENT-TRY\",\"base\":\"DENT\",\"quote\":\"TRY\",\"price_quote\":\"0.03271\",\"volume_base\":\"510945\"},{\"market\":\"ENJ-USDT\",\"base\":\"ENJ\",\"quote\":\"USDT\",\"price_quote\":\"0.071\",\"volume_base\":\"340617.8\"},{\"market\":\"ENJ-TRY\",\"base\":\"ENJ\",\"quote\":\"TRY\",\"price_quote\":\"2.93\",\"volume_base\":\"16651.39\"},{\"market\":\"ROSE-USDT\",\"base\":\"ROSE\",\"quote\":\"USDT\",\"price_quote\":\"0.02956\",\"volume_base\":\"1390568.0\"},{\"market\":\"ROSE-TRY\",\"base\":\"ROSE\",\"quote\":\"TRY\",\"price_quote\":\"1.204\",\"volume_base\":\"168712.1\"},{\"market\":\"FTM-USDT\",\"base\":\"FTM\",\"quote\":\"USDT\",\"price_quote\":\"0.0000\",\"volume_base\":\"0\"},{\"market\":\"FTM-TRY\",\"base\":\"FTM\",\"quote\":\"TRY\",\"price_quote\":\"0.00\",\"volume_base\":\"0.00\"},{\"market\":\"SAND-USDT\",\"base\":\"SAND\",\"quote\":\"USDT\",\"price_quote\":\"0.2889\",\"volume_base\":\"158458\"},{\"market\":\"SAND-TRY\",\"base\":\"SAND\",\"quote\":\"TRY\",\"price_quote\":\"11.80\",\"volume_base\":\"4808.4\"},{\"market\":\"GALA-USDT\",\"base\":\"GALA\",\"quote\":\"USDT\",\"price_quote\":\"0.01712\",\"volume_base\":\"9291340\"},{\"market\":\"GALA-TRY\",\"base\":\"GALA\",\"quote\":\"TRY\",\"price_quote\":\"0.698\",\"volume_base\":\"317734.7\"},{\"market\":\"GALA-EUR\",\"base\":\"GALA\",\"quote\":\"EUR\",\"price_quote\":\"0.01460\",\"volume_base\":\"41395\"},{\"market\":\"SANTOS-USDT\",\"base\":\"SANTOS\",\"quote\":\"USDT\",\"price_quote\":\"2.603\",\"volume_base\":\"27002.27\"},{\"market\":\"SANTOS-TRY\",\"base\":\"SANTOS\",\"quote\":\"TRY\",\"price_quote\":\"106.36\",\"volume_base\":\"13759.60\"},{\"market\":\"HOT-USDT\",\"base\":\"HOT\",\"quote\":\"USDT\",\"price_quote\":\"0.000955\",\"volume_base\":\"17385468\"},{\"market\":\"HOT-TRY\",\"base\":\"HOT\",\"quote\":\"TRY\",\"price_quote\":\"0.03904\",\"volume_base\":\"4452837\"},{\"market\":\"INJ-USDT\",\"base\":\"INJ\",\"quote\":\"USDT\",\"price_quote\":\"15.310\",\"volume_base\":\"14727.5\"},{\"market\":\"INJ-TRY\",\"base\":\"INJ\",\"quote\":\"TRY\",\"price_quote\":\"625.60\",\"volume_base\":\"405.76\"},{\"market\":\"SLP-USDT\",\"base\":\"SLP\",\"quote\":\"USDT\",\"price_quote\":\"0.0018\",\"volume_base\":\"4185523\"},{\"market\":\"SLP-TRY\",\"base\":\"SLP\",\"quote\":\"TRY\",\"price_quote\":\"0.0776\",\"volume_base\":\"785075\"},{\"market\":\"LAZIO-USDT\",\"base\":\"LAZIO\",\"quote\":\"USDT\",\"price_quote\":\"1.0390\",\"volume_base\":\"15780.49\"},{\"market\":\"LAZIO-TRY\",\"base\":\"LAZIO\",\"quote\":\"TRY\",\"price_quote\":\"42.490\",\"volume_base\":\"6453.65\"},{\"market\":\"SXP-USDT\",\"base\":\"SXP\",\"quote\":\"USDT\",\"price_quote\":\"0.184\",\"volume_base\":\"49636.3\"},{\"market\":\"SXP-TRY\",\"base\":\"SXP\",\"quote\":\"TRY\",\"price_quote\":\"7.52\",\"volume_base\":\"3979.2\"},{\"market\":\"LRC-USDT\",\"base\":\"LRC\",\"quote\":\"USDT\",\"price_quote\":\"0.0869\",\"volume_base\":\"170169\"},{\"market\":\"LRC-TRY\",\"base\":\"LRC\",\"quote\":\"TRY\",\"price_quote\":\"3.54\",\"volume_base\":\"16234.4\"},{\"market\":\"TLM-USDT\",\"base\":\"TLM\",\"quote\":\"USDT\",\"price_quote\":\"0.0049\",\"volume_base\":\"1884114.462\"},{\"market\":\"TLM-TRY\",\"base\":\"TLM\",\"quote\":\"TRY\",\"price_quote\":\"0.200\",\"volume_base\":\"154638\"},{\"market\":\"MANA-USDT\",\"base\":\"MANA\",\"quote\":\"USDT\",\"price_quote\":\"0.2960\",\"volume_base\":\"129508\"},{\"market\":\"MANA-TRY\",\"base\":\"MANA\",\"quote\":\"TRY\",\"price_quote\":\"12.10\",\"volume_base\":\"4953.1\"},{\"market\":\"UMA-USDT\",\"base\":\"UMA\",\"quote\":\"USDT\",\"price_quote\":\"1.279\",\"volume_base\":\"13621.6\"},{\"market\":\"UMA-TRY\",\"base\":\"UMA\",\"quote\":\"TRY\",\"price_quote\":\"52.2\",\"volume_base\":\"1958.22\"},{\"market\":\"XTZ-USDT\",\"base\":\"XTZ\",\"quote\":\"USDT\",\"price_quote\":\"0.855\",\"volume_base\":\"38944.9\"},{\"market\":\"AXS-USDT\",\"base\":\"AXS\",\"quote\":\"USDT\",\"price_quote\":\"2.40\",\"volume_base\":\"12616.45\"},{\"market\":\"AXS-TRY\",\"base\":\"AXS\",\"quote\":\"TRY\",\"price_quote\":\"98.1\",\"volume_base\":\"106.598\"},{\"market\":\"GRT-TRY\",\"base\":\"GRT\",\"quote\":\"TRY\",\"price_quote\":\"3.854\",\"volume_base\":\"25008\"},{\"market\":\"GRT-USDT\",\"base\":\"GRT\",\"quote\":\"USDT\",\"price_quote\":\"0.0943\",\"volume_base\":\"582406\"},{\"market\":\"GRT-EUR\",\"base\":\"GRT\",\"quote\":\"EUR\",\"price_quote\":\"0.0805\",\"volume_base\":\"5838\"},{\"market\":\"EOS-TRY\",\"base\":\"EOS\",\"quote\":\"TRY\",\"price_quote\":\"30.52\",\"volume_base\":\"12511.9\"},{\"market\":\"EOS-USDT\",\"base\":\"EOS\",\"quote\":\"USDT\",\"price_quote\":\"0.779\",\"volume_base\":\"89225.6\"},{\"market\":\"AAVE-USDT\",\"base\":\"AAVE\",\"quote\":\"USDT\",\"price_quote\":\"312.5\",\"volume_base\":\"1376.403\"},{\"market\":\"ACH-USDT\",\"base\":\"ACH\",\"quote\":\"USDT\",\"price_quote\":\"0.02175\",\"volume_base\":\"1993632\"},{\"market\":\"USDC-USDT\",\"base\":\"USDC\",\"quote\":\"USDT\",\"price_quote\":\"0.9993\",\"volume_base\":\"23540506\"},{\"market\":\"APE-USDT\",\"base\":\"APE\",\"quote\":\"USDT\",\"price_quote\":\"0.6120\",\"volume_base\":\"60763.18\"},{\"market\":\"EUR-USDT\",\"base\":\"EUR\",\"quote\":\"USDT\",\"price_quote\":\"1.167\",\"volume_base\":\"281127.8\"},{\"market\":\"SPELL-USDT\",\"base\":\"SPELL\",\"quote\":\"USDT\",\"price_quote\":\"0.00049\",\"volume_base\":\"21440920\"},{\"market\":\"SPELL-TRY\",\"base\":\"SPELL\",\"quote\":\"TRY\",\"price_quote\":\"0.02022\",\"volume_base\":\"6353439\"},{\"market\":\"AUDIO-USDT\",\"base\":\"AUDIO\",\"quote\":\"USDT\",\"price_quote\":\"0.062\",\"volume_base\":\"127895.0\"},{\"market\":\"IMX-USDT\",\"base\":\"IMX\",\"quote\":\"USDT\",\"price_quote\":\"0.589\",\"volume_base\":\"79216.57\"},{\"market\":\"UNFI-USDT\",\"base\":\"UNFI\",\"quote\":\"USDT\",\"price_quote\":\"0.000\",\"volume_base\":\"0.0\"},{\"market\":\"WING-USDT\",\"base\":\"WING\",\"quote\":\"USDT\",\"price_quote\":\"0.32\",\"volume_base\":\"39239.25\"}]",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get markets information for nomics",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/nomics\/markets",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/nomics\/markets"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get a list of all available markets.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "200"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "190"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "[{\"id\":\"USDT-TRY\",\"type\":\"spot\",\"base\":\"USDT\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/USDT-TRY\",\"description\":\"Biqbang spot market for USDT-TRY\"},{\"id\":\"BTC-USDT\",\"type\":\"spot\",\"base\":\"BTC\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/BTC-USDT\",\"description\":\"Biqbang spot market for BTC-USDT\"},{\"id\":\"BTC-TRY\",\"type\":\"spot\",\"base\":\"BTC\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/BTC-TRY\",\"description\":\"Biqbang spot market for BTC-TRY\"},{\"id\":\"BTC-EUR\",\"type\":\"spot\",\"base\":\"BTC\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/BTC-EUR\",\"description\":\"Biqbang spot market for BTC-EUR\"},{\"id\":\"ETH-USDT\",\"type\":\"spot\",\"base\":\"ETH\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ETH-USDT\",\"description\":\"Biqbang spot market for ETH-USDT\"},{\"id\":\"ETH-TRY\",\"type\":\"spot\",\"base\":\"ETH\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ETH-TRY\",\"description\":\"Biqbang spot market for ETH-TRY\"},{\"id\":\"ETH-EUR\",\"type\":\"spot\",\"base\":\"ETH\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ETH-EUR\",\"description\":\"Biqbang spot market for ETH-EUR\"},{\"id\":\"ADA-USDT\",\"type\":\"spot\",\"base\":\"ADA\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ADA-USDT\",\"description\":\"Biqbang spot market for ADA-USDT\"},{\"id\":\"ADA-TRY\",\"type\":\"spot\",\"base\":\"ADA\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ADA-TRY\",\"description\":\"Biqbang spot market for ADA-TRY\"},{\"id\":\"ADA-EUR\",\"type\":\"spot\",\"base\":\"ADA\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ADA-EUR\",\"description\":\"Biqbang spot market for ADA-EUR\"},{\"id\":\"DOGE-USDT\",\"type\":\"spot\",\"base\":\"DOGE\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/DOGE-USDT\",\"description\":\"Biqbang spot market for DOGE-USDT\"},{\"id\":\"DOGE-TRY\",\"type\":\"spot\",\"base\":\"DOGE\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/DOGE-TRY\",\"description\":\"Biqbang spot market for DOGE-TRY\"},{\"id\":\"DOGE-EUR\",\"type\":\"spot\",\"base\":\"DOGE\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/DOGE-EUR\",\"description\":\"Biqbang spot market for DOGE-EUR\"},{\"id\":\"SOL-USDT\",\"type\":\"spot\",\"base\":\"SOL\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SOL-USDT\",\"description\":\"Biqbang spot market for SOL-USDT\"},{\"id\":\"SOL-TRY\",\"type\":\"spot\",\"base\":\"SOL\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SOL-TRY\",\"description\":\"Biqbang spot market for SOL-TRY\"},{\"id\":\"SOL-EUR\",\"type\":\"spot\",\"base\":\"SOL\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SOL-EUR\",\"description\":\"Biqbang spot market for SOL-EUR\"},{\"id\":\"BNB-USDT\",\"type\":\"spot\",\"base\":\"BNB\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/BNB-USDT\",\"description\":\"Biqbang spot market for BNB-USDT\"},{\"id\":\"BNB-TRY\",\"type\":\"spot\",\"base\":\"BNB\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/BNB-TRY\",\"description\":\"Biqbang spot market for BNB-TRY\"},{\"id\":\"BNB-EUR\",\"type\":\"spot\",\"base\":\"BNB\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/BNB-EUR\",\"description\":\"Biqbang spot market for BNB-EUR\"},{\"id\":\"XRP-USDT\",\"type\":\"spot\",\"base\":\"XRP\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/XRP-USDT\",\"description\":\"Biqbang spot market for XRP-USDT\"},{\"id\":\"XRP-TRY\",\"type\":\"spot\",\"base\":\"XRP\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/XRP-TRY\",\"description\":\"Biqbang spot market for XRP-TRY\"},{\"id\":\"XRP-EUR\",\"type\":\"spot\",\"base\":\"XRP\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/XRP-EUR\",\"description\":\"Biqbang spot market for XRP-EUR\"},{\"id\":\"BTTC-USDT\",\"type\":\"spot\",\"base\":\"BTT\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/BTTC-USDT\",\"description\":\"Biqbang spot market for BTTC-USDT\"},{\"id\":\"BTTC-TRY\",\"type\":\"spot\",\"base\":\"BTT\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/BTTC-TRY\",\"description\":\"Biqbang spot market for BTTC-TRY\"},{\"id\":\"TRX-USDT\",\"type\":\"spot\",\"base\":\"TRX\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/TRX-USDT\",\"description\":\"Biqbang spot market for TRX-USDT\"},{\"id\":\"TRX-TRY\",\"type\":\"spot\",\"base\":\"TRX\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/TRX-TRY\",\"description\":\"Biqbang spot market for TRX-TRY\"},{\"id\":\"TRX-EUR\",\"type\":\"spot\",\"base\":\"TRX\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/TRX-EUR\",\"description\":\"Biqbang spot market for TRX-EUR\"},{\"id\":\"SHIB-USDT\",\"type\":\"spot\",\"base\":\"SHIB\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SHIB-USDT\",\"description\":\"Biqbang spot market for SHIB-USDT\"},{\"id\":\"SHIB-TRY\",\"type\":\"spot\",\"base\":\"SHIB\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SHIB-TRY\",\"description\":\"Biqbang spot market for SHIB-TRY\"},{\"id\":\"SHIB-EUR\",\"type\":\"spot\",\"base\":\"SHIB\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SHIB-EUR\",\"description\":\"Biqbang spot market for SHIB-EUR\"},{\"id\":\"DOT-USDT\",\"type\":\"spot\",\"base\":\"DOT\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/DOT-USDT\",\"description\":\"Biqbang spot market for DOT-USDT\"},{\"id\":\"DOT-TRY\",\"type\":\"spot\",\"base\":\"DOT\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/DOT-TRY\",\"description\":\"Biqbang spot market for DOT-TRY\"},{\"id\":\"DOT-EUR\",\"type\":\"spot\",\"base\":\"DOT\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/DOT-EUR\",\"description\":\"Biqbang spot market for DOT-EUR\"},{\"id\":\"RVN-USDT\",\"type\":\"spot\",\"base\":\"RVN\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/RVN-USDT\",\"description\":\"Biqbang spot market for RVN-USDT\"},{\"id\":\"RVN-TRY\",\"type\":\"spot\",\"base\":\"RVN\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/RVN-TRY\",\"description\":\"Biqbang spot market for RVN-TRY\"},{\"id\":\"LINK-USDT\",\"type\":\"spot\",\"base\":\"LINK\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/LINK-USDT\",\"description\":\"Biqbang spot market for LINK-USDT\"},{\"id\":\"LINK-TRY\",\"type\":\"spot\",\"base\":\"LINK\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/LINK-TRY\",\"description\":\"Biqbang spot market for LINK-TRY\"},{\"id\":\"LINK-EUR\",\"type\":\"spot\",\"base\":\"LINK\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/LINK-EUR\",\"description\":\"Biqbang spot market for LINK-EUR\"},{\"id\":\"ALICE-USDT\",\"type\":\"spot\",\"base\":\"ALICE\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ALICE-USDT\",\"description\":\"Biqbang spot market for ALICE-USDT\"},{\"id\":\"ALICE-TRY\",\"type\":\"spot\",\"base\":\"ALICE\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ALICE-TRY\",\"description\":\"Biqbang spot market for ALICE-TRY\"},{\"id\":\"MATIC-USDT\",\"type\":\"spot\",\"base\":\"MATIC\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/MATIC-USDT\",\"description\":\"Biqbang spot market for MATIC-USDT\"},{\"id\":\"MATIC-TRY\",\"type\":\"spot\",\"base\":\"MATIC\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/MATIC-TRY\",\"description\":\"Biqbang spot market for MATIC-TRY\"},{\"id\":\"MATIC-EUR\",\"type\":\"spot\",\"base\":\"MATIC\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/MATIC-EUR\",\"description\":\"Biqbang spot market for MATIC-EUR\"},{\"id\":\"ALPINE-USDT\",\"type\":\"spot\",\"base\":\"ALPINE\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ALPINE-USDT\",\"description\":\"Biqbang spot market for ALPINE-USDT\"},{\"id\":\"ALPINE-TRY\",\"type\":\"spot\",\"base\":\"ALPINE\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ALPINE-TRY\",\"description\":\"Biqbang spot market for ALPINE-TRY\"},{\"id\":\"API3-USDT\",\"type\":\"spot\",\"base\":\"API3\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/API3-USDT\",\"description\":\"Biqbang spot market for API3-USDT\"},{\"id\":\"API3-TRY\",\"type\":\"spot\",\"base\":\"API3\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/API3-TRY\",\"description\":\"Biqbang spot market for API3-TRY\"},{\"id\":\"MBOX-USDT\",\"type\":\"spot\",\"base\":\"MBOX\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/MBOX-USDT\",\"description\":\"Biqbang spot market for MBOX-USDT\"},{\"id\":\"MBOX-TRY\",\"type\":\"spot\",\"base\":\"MBOX\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/MBOX-TRY\",\"description\":\"Biqbang spot market for MBOX-TRY\"},{\"id\":\"ARPA-USDT\",\"type\":\"spot\",\"base\":\"ARPA\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ARPA-USDT\",\"description\":\"Biqbang spot market for ARPA-USDT\"},{\"id\":\"ARPA-TRY\",\"type\":\"spot\",\"base\":\"ARPA\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ARPA-TRY\",\"description\":\"Biqbang spot market for ARPA-TRY\"},{\"id\":\"ATOM-USDT\",\"type\":\"spot\",\"base\":\"ATOM\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ATOM-USDT\",\"description\":\"Biqbang spot market for ATOM-USDT\"},{\"id\":\"ATOM-TRY\",\"type\":\"spot\",\"base\":\"ATOM\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ATOM-TRY\",\"description\":\"Biqbang spot market for ATOM-TRY\"},{\"id\":\"ATOM-EUR\",\"type\":\"spot\",\"base\":\"ATOM\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ATOM-EUR\",\"description\":\"Biqbang spot market for ATOM-EUR\"},{\"id\":\"NEAR-USDT\",\"type\":\"spot\",\"base\":\"NEAR\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/NEAR-USDT\",\"description\":\"Biqbang spot market for NEAR-USDT\"},{\"id\":\"NEAR-TRY\",\"type\":\"spot\",\"base\":\"NEAR\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/NEAR-TRY\",\"description\":\"Biqbang spot market for NEAR-TRY\"},{\"id\":\"NEAR-EUR\",\"type\":\"spot\",\"base\":\"NEAR\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/NEAR-EUR\",\"description\":\"Biqbang spot market for NEAR-EUR\"},{\"id\":\"AVAX-USDT\",\"type\":\"spot\",\"base\":\"AVAX\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/AVAX-USDT\",\"description\":\"Biqbang spot market for AVAX-USDT\"},{\"id\":\"AVAX-TRY\",\"type\":\"spot\",\"base\":\"AVAX\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/AVAX-TRY\",\"description\":\"Biqbang spot market for AVAX-TRY\"},{\"id\":\"AVAX-EUR\",\"type\":\"spot\",\"base\":\"AVAX\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/AVAX-EUR\",\"description\":\"Biqbang spot market for AVAX-EUR\"},{\"id\":\"BEL-USDT\",\"type\":\"spot\",\"base\":\"BEL\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/BEL-USDT\",\"description\":\"Biqbang spot market for BEL-USDT\"},{\"id\":\"BEL-TRY\",\"type\":\"spot\",\"base\":\"BEL\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/BEL-TRY\",\"description\":\"Biqbang spot market for BEL-TRY\"},{\"id\":\"CHZ-USDT\",\"type\":\"spot\",\"base\":\"CHZ\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/CHZ-USDT\",\"description\":\"Biqbang spot market for CHZ-USDT\"},{\"id\":\"CHZ-TRY\",\"type\":\"spot\",\"base\":\"CHZ\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/CHZ-TRY\",\"description\":\"Biqbang spot market for CHZ-TRY\"},{\"id\":\"CHZ-EUR\",\"type\":\"spot\",\"base\":\"CHZ\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/CHZ-EUR\",\"description\":\"Biqbang spot market for CHZ-EUR\"},{\"id\":\"ONT-USDT\",\"type\":\"spot\",\"base\":\"ONT\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ONT-USDT\",\"description\":\"Biqbang spot market for ONT-USDT\"},{\"id\":\"ONT-TRY\",\"type\":\"spot\",\"base\":\"ONT\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ONT-TRY\",\"description\":\"Biqbang spot market for ONT-TRY\"},{\"id\":\"PORTO-USDT\",\"type\":\"spot\",\"base\":\"PORTO\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/PORTO-USDT\",\"description\":\"Biqbang spot market for PORTO-USDT\"},{\"id\":\"PORTO-TRY\",\"type\":\"spot\",\"base\":\"PORTO\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/PORTO-TRY\",\"description\":\"Biqbang spot market for PORTO-TRY\"},{\"id\":\"REEF-USDT\",\"type\":\"spot\",\"base\":\"REEF\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/REEF-USDT\",\"description\":\"Biqbang spot market for REEF-USDT\"},{\"id\":\"REEF-TRY\",\"type\":\"spot\",\"base\":\"REEF\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/REEF-TRY\",\"description\":\"Biqbang spot market for REEF-TRY\"},{\"id\":\"DAR-USDT\",\"type\":\"spot\",\"base\":\"DAR\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/DAR-USDT\",\"description\":\"Biqbang spot market for DAR-USDT\"},{\"id\":\"DAR-TRY\",\"type\":\"spot\",\"base\":\"DAR\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/DAR-TRY\",\"description\":\"Biqbang spot market for DAR-TRY\"},{\"id\":\"DENT-USDT\",\"type\":\"spot\",\"base\":\"DENT\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/DENT-USDT\",\"description\":\"Biqbang spot market for DENT-USDT\"},{\"id\":\"DENT-TRY\",\"type\":\"spot\",\"base\":\"DENT\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/DENT-TRY\",\"description\":\"Biqbang spot market for DENT-TRY\"},{\"id\":\"ENJ-USDT\",\"type\":\"spot\",\"base\":\"ENJ\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ENJ-USDT\",\"description\":\"Biqbang spot market for ENJ-USDT\"},{\"id\":\"ENJ-TRY\",\"type\":\"spot\",\"base\":\"ENJ\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ENJ-TRY\",\"description\":\"Biqbang spot market for ENJ-TRY\"},{\"id\":\"ROSE-USDT\",\"type\":\"spot\",\"base\":\"ROSE\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ROSE-USDT\",\"description\":\"Biqbang spot market for ROSE-USDT\"},{\"id\":\"ROSE-TRY\",\"type\":\"spot\",\"base\":\"ROSE\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ROSE-TRY\",\"description\":\"Biqbang spot market for ROSE-TRY\"},{\"id\":\"FTM-USDT\",\"type\":\"spot\",\"base\":\"FTM\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/FTM-USDT\",\"description\":\"Biqbang spot market for FTM-USDT\"},{\"id\":\"FTM-TRY\",\"type\":\"spot\",\"base\":\"FTM\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/FTM-TRY\",\"description\":\"Biqbang spot market for FTM-TRY\"},{\"id\":\"SAND-USDT\",\"type\":\"spot\",\"base\":\"SAND\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SAND-USDT\",\"description\":\"Biqbang spot market for SAND-USDT\"},{\"id\":\"SAND-TRY\",\"type\":\"spot\",\"base\":\"SAND\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SAND-TRY\",\"description\":\"Biqbang spot market for SAND-TRY\"},{\"id\":\"GALA-USDT\",\"type\":\"spot\",\"base\":\"GALA\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/GALA-USDT\",\"description\":\"Biqbang spot market for GALA-USDT\"},{\"id\":\"GALA-TRY\",\"type\":\"spot\",\"base\":\"GALA\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/GALA-TRY\",\"description\":\"Biqbang spot market for GALA-TRY\"},{\"id\":\"GALA-EUR\",\"type\":\"spot\",\"base\":\"GALA\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/GALA-EUR\",\"description\":\"Biqbang spot market for GALA-EUR\"},{\"id\":\"SANTOS-USDT\",\"type\":\"spot\",\"base\":\"SANTOS\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SANTOS-USDT\",\"description\":\"Biqbang spot market for SANTOS-USDT\"},{\"id\":\"SANTOS-TRY\",\"type\":\"spot\",\"base\":\"SANTOS\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SANTOS-TRY\",\"description\":\"Biqbang spot market for SANTOS-TRY\"},{\"id\":\"HOT-USDT\",\"type\":\"spot\",\"base\":\"HOT\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/HOT-USDT\",\"description\":\"Biqbang spot market for HOT-USDT\"},{\"id\":\"HOT-TRY\",\"type\":\"spot\",\"base\":\"HOT\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/HOT-TRY\",\"description\":\"Biqbang spot market for HOT-TRY\"},{\"id\":\"INJ-USDT\",\"type\":\"spot\",\"base\":\"INJ\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/INJ-USDT\",\"description\":\"Biqbang spot market for INJ-USDT\"},{\"id\":\"INJ-TRY\",\"type\":\"spot\",\"base\":\"INJ\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/INJ-TRY\",\"description\":\"Biqbang spot market for INJ-TRY\"},{\"id\":\"SLP-USDT\",\"type\":\"spot\",\"base\":\"SLP\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SLP-USDT\",\"description\":\"Biqbang spot market for SLP-USDT\"},{\"id\":\"SLP-TRY\",\"type\":\"spot\",\"base\":\"SLP\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SLP-TRY\",\"description\":\"Biqbang spot market for SLP-TRY\"},{\"id\":\"LAZIO-USDT\",\"type\":\"spot\",\"base\":\"LAZIO\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/LAZIO-USDT\",\"description\":\"Biqbang spot market for LAZIO-USDT\"},{\"id\":\"LAZIO-TRY\",\"type\":\"spot\",\"base\":\"LAZIO\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/LAZIO-TRY\",\"description\":\"Biqbang spot market for LAZIO-TRY\"},{\"id\":\"SXP-USDT\",\"type\":\"spot\",\"base\":\"SXP\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SXP-USDT\",\"description\":\"Biqbang spot market for SXP-USDT\"},{\"id\":\"SXP-TRY\",\"type\":\"spot\",\"base\":\"SXP\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SXP-TRY\",\"description\":\"Biqbang spot market for SXP-TRY\"},{\"id\":\"LRC-USDT\",\"type\":\"spot\",\"base\":\"LRC\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/LRC-USDT\",\"description\":\"Biqbang spot market for LRC-USDT\"},{\"id\":\"LRC-TRY\",\"type\":\"spot\",\"base\":\"LRC\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/LRC-TRY\",\"description\":\"Biqbang spot market for LRC-TRY\"},{\"id\":\"TLM-USDT\",\"type\":\"spot\",\"base\":\"TLM\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/TLM-USDT\",\"description\":\"Biqbang spot market for TLM-USDT\"},{\"id\":\"TLM-TRY\",\"type\":\"spot\",\"base\":\"TLM\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/TLM-TRY\",\"description\":\"Biqbang spot market for TLM-TRY\"},{\"id\":\"MANA-USDT\",\"type\":\"spot\",\"base\":\"MANA\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/MANA-USDT\",\"description\":\"Biqbang spot market for MANA-USDT\"},{\"id\":\"MANA-TRY\",\"type\":\"spot\",\"base\":\"MANA\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/MANA-TRY\",\"description\":\"Biqbang spot market for MANA-TRY\"},{\"id\":\"UMA-USDT\",\"type\":\"spot\",\"base\":\"UMA\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/UMA-USDT\",\"description\":\"Biqbang spot market for UMA-USDT\"},{\"id\":\"UMA-TRY\",\"type\":\"spot\",\"base\":\"UMA\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/UMA-TRY\",\"description\":\"Biqbang spot market for UMA-TRY\"},{\"id\":\"XTZ-USDT\",\"type\":\"spot\",\"base\":\"XTZ\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/XTZ-USDT\",\"description\":\"Biqbang spot market for XTZ-USDT\"},{\"id\":\"AXS-USDT\",\"type\":\"spot\",\"base\":\"AXS\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/AXS-USDT\",\"description\":\"Biqbang spot market for AXS-USDT\"},{\"id\":\"AXS-TRY\",\"type\":\"spot\",\"base\":\"AXS\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/AXS-TRY\",\"description\":\"Biqbang spot market for AXS-TRY\"},{\"id\":\"GRT-TRY\",\"type\":\"spot\",\"base\":\"GRT\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/GRT-TRY\",\"description\":\"Biqbang spot market for GRT-TRY\"},{\"id\":\"GRT-USDT\",\"type\":\"spot\",\"base\":\"GRT\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/GRT-USDT\",\"description\":\"Biqbang spot market for GRT-USDT\"},{\"id\":\"GRT-EUR\",\"type\":\"spot\",\"base\":\"GRT\",\"quote\":\"EUR\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/GRT-EUR\",\"description\":\"Biqbang spot market for GRT-EUR\"},{\"id\":\"EOS-TRY\",\"type\":\"spot\",\"base\":\"EOS\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/EOS-TRY\",\"description\":\"Biqbang spot market for EOS-TRY\"},{\"id\":\"EOS-USDT\",\"type\":\"spot\",\"base\":\"EOS\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/EOS-USDT\",\"description\":\"Biqbang spot market for EOS-USDT\"},{\"id\":\"AAVE-USDT\",\"type\":\"spot\",\"base\":\"AAVE\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/AAVE-USDT\",\"description\":\"Biqbang spot market for AAVE-USDT\"},{\"id\":\"ACH-USDT\",\"type\":\"spot\",\"base\":\"ACH\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/ACH-USDT\",\"description\":\"Biqbang spot market for ACH-USDT\"},{\"id\":\"USDC-USDT\",\"type\":\"spot\",\"base\":\"USDC\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/USDC-USDT\",\"description\":\"Biqbang spot market for USDC-USDT\"},{\"id\":\"APE-USDT\",\"type\":\"spot\",\"base\":\"APE\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/APE-USDT\",\"description\":\"Biqbang spot market for APE-USDT\"},{\"id\":\"EUR-USDT\",\"type\":\"spot\",\"base\":\"EUR\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/EUR-USDT\",\"description\":\"Biqbang spot market for EUR-USDT\"},{\"id\":\"SPELL-USDT\",\"type\":\"spot\",\"base\":\"SPELL\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SPELL-USDT\",\"description\":\"Biqbang spot market for SPELL-USDT\"},{\"id\":\"SPELL-TRY\",\"type\":\"spot\",\"base\":\"SPELL\",\"quote\":\"TRY\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/SPELL-TRY\",\"description\":\"Biqbang spot market for SPELL-TRY\"},{\"id\":\"AUDIO-USDT\",\"type\":\"spot\",\"base\":\"AUDIO\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/AUDIO-USDT\",\"description\":\"Biqbang spot market for AUDIO-USDT\"},{\"id\":\"IMX-USDT\",\"type\":\"spot\",\"base\":\"IMX\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/IMX-USDT\",\"description\":\"Biqbang spot market for IMX-USDT\"},{\"id\":\"UNFI-USDT\",\"type\":\"spot\",\"base\":\"UNFI\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/UNFI-USDT\",\"description\":\"Biqbang spot market for UNFI-USDT\"},{\"id\":\"WING-USDT\",\"type\":\"spot\",\"base\":\"WING\",\"quote\":\"USDT\",\"active\":true,\"market_url\":\"https:\\\/\\\/biqbang.com\\\/market\\\/WING-USDT\",\"description\":\"Biqbang spot market for WING-USDT\"}]",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Payment Cards & Multi-Currency",
            "description": "\nVirtual and physical payment cards linked to blockchain wallets with global merchant acceptance.\nSupports multiple currencies, real-time controls, and premium metal card tiers.",
            "item": [
                {
                    "name": "Create Payment Card",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cards\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cards\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":\"wlt_zk_1234567890abcdef\",\"card_type\":\"virtual\",\"card_program\":\"visa\",\"currency\":\"USD\",\"spending_limits\":{\"daily\":5000,\"monthly\":50000,\"per_transaction\":2000},\"card_design\":\"carbon_black\",\"shipping_address\":{\"street\":\"123 Main St\",\"city\":\"New York\",\"state\":\"NY\",\"zip\":\"10001\",\"country\":\"US\"}}"
                        },
                        "description": "Issue a virtual or physical payment card linked to the user's blockchain wallet.\nSupports standard, premium, and metal card tiers with varying benefits."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"card_id\": \"card_zk_abc123def456\",\n    \"card_type\": \"virtual\",\n    \"card_program\": \"visa\",\n    \"card_status\": \"active\",\n    \"card_details\": {\n      \"card_number_masked\": \"4532 **** **** 7890\",\n      \"card_holder_name\": \"JOHN DOE\",\n      \"expiry_date\": \"12\/27\",\n      \"cvv_masked\": \"***\",\n      \"billing_address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"zip\": \"10001\",\n        \"country\": \"US\"\n      }\n    },\n    \"linked_wallet\": {\n      \"wallet_id\": \"wlt_zk_1234567890abcdef\",\n      \"wallet_address\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb7\",\n      \"default_funding_source\": \"USDT\"\n    },\n    \"spending_limits\": {\n      \"daily\": 5000,\n      \"daily_remaining\": 5000,\n      \"monthly\": 50000,\n      \"monthly_remaining\": 50000,\n      \"per_transaction\": 2000,\n      \"atm_withdrawal_daily\": 1000\n    },\n    \"supported_currencies\": [\n      {\"code\": \"USD\", \"symbol\": \"$\", \"is_primary\": true},\n      {\"code\": \"EUR\", \"symbol\": \"\u20ac\", \"is_primary\": false},\n      {\"code\": \"GBP\", \"symbol\": \"\u00a3\", \"is_primary\": false}\n    ],\n    \"features\": {\n      \"contactless\": true,\n      \"chip_enabled\": true,\n      \"magnetic_stripe\": true,\n      \"atm_access\": true,\n      \"online_payments\": true,\n      \"apple_pay\": true,\n      \"google_pay\": true,\n      \"samsung_pay\": true\n    },\n    \"rewards\": {\n      \"cashback_rate\": \"1.5%\",\n      \"points_multiplier\": 1,\n      \"tier\": \"standard\"\n    },\n    \"security\": {\n      \"3d_secure\": true,\n      \"fraud_monitoring\": true,\n      \"instant_lock\": true,\n      \"transaction_notifications\": true,\n      \"biometric_verification\": false\n    },\n    \"activation\": {\n      \"status\": \"ready_to_activate\",\n      \"activation_url\": \"https:\/\/activate.biqbang.com\/card\/card_zk_abc123def456\",\n      \"qr_code\": \"data:image\/png;base64,iVBORw0KGgoAAAANS...\"\n    },\n    \"created_at\": \"2025-01-30T10:45:00Z\",\n    \"valid_until\": \"2027-12-31T23:59:59Z\"\n  },\n  \"message\": \"Payment card created successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"error\": \"Invalid card configuration\",\n  \"code\": \"INVALID_CARD_CONFIG\",\n  \"details\": {\n    \"shipping_address\": [\"Shipping address is required for physical cards\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Execute Multi-Currency Transaction",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cards\/transactions\/process",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cards\/transactions\/process"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"card_id\":\"card_zk_abc123def456\",\"amount\":\"150.00\",\"currency\":\"EUR\",\"merchant_name\":\"Amazon EU S.a.r.l\",\"merchant_category\":\"5999\",\"merchant_country\":\"FR\",\"payment_method\":\"contactless\",\"use_token_rewards\":true}"
                        },
                        "description": "Process a payment using the card with automatic currency conversion at competitive rates.\nSupports payments at millions of merchants worldwide through Visa\/Mastercard networks."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"transaction_id\": \"txn_multi_987654321\",\n    \"authorization_code\": \"AUTH123456\",\n    \"status\": \"approved\",\n    \"transaction_details\": {\n      \"amount\": \"150.00\",\n      \"currency\": \"EUR\",\n      \"merchant\": {\n        \"name\": \"Amazon EU S.a.r.l\",\n        \"category\": \"5999\",\n        \"category_name\": \"Miscellaneous Retail\",\n        \"country\": \"FR\",\n        \"city\": \"Paris\"\n      },\n      \"payment_method\": \"contactless\",\n      \"terminal_id\": \"TRM9876543\"\n    },\n    \"currency_conversion\": {\n      \"original_amount\": \"150.00\",\n      \"original_currency\": \"EUR\",\n      \"converted_amount\": \"163.50\",\n      \"converted_currency\": \"USD\",\n      \"exchange_rate\": \"1.09\",\n      \"fee\": \"0.00\",\n      \"fee_waived\": true,\n      \"waiver_reason\": \"governance_token_holder\"\n    },\n    \"funding_source\": {\n      \"wallet_id\": \"wlt_zk_1234567890abcdef\",\n      \"asset_used\": \"USDT\",\n      \"blockchain\": \"Polygon\",\n      \"amount_debited\": \"163.50\",\n      \"gas_fee\": \"0.00\",\n      \"gasless\": true\n    },\n    \"rewards\": {\n      \"cashback_earned\": \"2.45\",\n      \"cashback_currency\": \"USD\",\n      \"points_earned\": 164,\n      \"token_discount_applied\": \"5.00\",\n      \"token_discount_rate\": \"3%\"\n    },\n    \"balance\": {\n      \"before\": \"1000.00\",\n      \"after\": \"836.50\",\n      \"currency\": \"USD\"\n    },\n    \"compliance\": {\n      \"aml_check\": \"passed\",\n      \"fraud_score\": 12,\n      \"risk_level\": \"low\",\n      \"3ds_verification\": \"completed\"\n    },\n    \"network_info\": {\n      \"card_network\": \"Visa\",\n      \"processor\": \"First Data\",\n      \"settlement_date\": \"2025-01-31\",\n      \"reference_number\": \"REF123456789\"\n    },\n    \"timestamp\": \"2025-01-30T10:50:00Z\"\n  },\n  \"message\": \"Transaction approved successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 402,
                            "body": "{\n  \"success\": false,\n  \"error\": \"Transaction declined\",\n  \"code\": \"TRANSACTION_DECLINED\",\n  \"details\": {\n    \"reason\": \"Insufficient funds\",\n    \"available_balance\": \"100.00 USD\",\n    \"required_amount\": \"163.50 USD\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Card Transactions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cards\/transactions",
                            "query": [
                                {
                                    "key": "card_id",
                                    "value": "card_zk_abc123def456",
                                    "description": "The card identifier.",
                                    "disabled": false
                                },
                                {
                                    "key": "from_date",
                                    "value": "2025-01-01T00%3A00%3A00Z",
                                    "description": "Start date for transaction history (ISO 8601).",
                                    "disabled": false
                                },
                                {
                                    "key": "to_date",
                                    "value": "2025-01-30T23%3A59%3A59Z",
                                    "description": "End date for transaction history (ISO 8601).",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "approved",
                                    "description": "Filter by transaction status (approved, declined, pending).",
                                    "disabled": false
                                },
                                {
                                    "key": "limit",
                                    "value": "20",
                                    "description": "Number of transactions to return (max 100).",
                                    "disabled": false
                                },
                                {
                                    "key": "offset",
                                    "value": "",
                                    "description": "Pagination offset.",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/cards\/transactions?card_id=card_zk_abc123def456&from_date=2025-01-01T00%3A00%3A00Z&to_date=2025-01-30T23%3A59%3A59Z&status=approved&limit=20&offset="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"card_id\":\"impedit\",\"from_date\":\"2025-08-15T08:26:53Z\",\"to_date\":\"2025-08-15T08:26:53Z\",\"status\":\"declined\",\"limit\":16,\"offset\":0}"
                        },
                        "description": "Retrieve transaction history for a payment card with real-time updates and detailed analytics."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"transactions\": [\n      {\n        \"transaction_id\": \"txn_multi_987654321\",\n        \"date\": \"2025-01-30T10:50:00Z\",\n        \"amount\": \"150.00\",\n        \"currency\": \"EUR\",\n        \"merchant\": \"Amazon EU S.a.r.l\",\n        \"status\": \"approved\",\n        \"type\": \"purchase\",\n        \"cashback\": \"2.45\"\n      },\n      {\n        \"transaction_id\": \"txn_multi_987654320\",\n        \"date\": \"2025-01-29T15:30:00Z\",\n        \"amount\": \"75.50\",\n        \"currency\": \"USD\",\n        \"merchant\": \"Spotify USA Inc.\",\n        \"status\": \"approved\",\n        \"type\": \"subscription\",\n        \"cashback\": \"1.13\"\n      }\n    ],\n    \"summary\": {\n      \"total_spent\": \"225.50\",\n      \"total_cashback\": \"3.58\",\n      \"transaction_count\": 2,\n      \"average_transaction\": \"112.75\"\n    },\n    \"pagination\": {\n      \"limit\": 20,\n      \"offset\": 0,\n      \"total\": 2,\n      \"has_more\": false\n    }\n  },\n  \"message\": \"Transactions retrieved successfully\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Private Endpoints",
            "description": "",
            "item": [
                {
                    "name": "Cancel open order",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/cancel",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/cancel"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"uuid\":\"lpvyisduxmawphmopn\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Open orders",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/open",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/open"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get wallet address",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/wallets\/getAddress",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/wallets\/getAddress"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"symbol\":\"a\",\"network\":\"aut\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get deposits",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/wallets\/deposits\/:type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/wallets\/deposits\/:type",
                            "variable": [
                                {
                                    "id": "type",
                                    "key": "type",
                                    "value": "eaque",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get fiat deposits",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/wallets\/fiat-deposits\/:type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/wallets\/fiat-deposits\/:type",
                            "variable": [
                                {
                                    "id": "type",
                                    "key": "type",
                                    "value": "consequuntur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get withdrawals",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/wallets\/withdrawals\/:type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/wallets\/withdrawals\/:type",
                            "variable": [
                                {
                                    "id": "type",
                                    "key": "type",
                                    "value": "a",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Start withdrawal process",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/wallets\/withdraw",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/wallets\/withdraw"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"symbol\":\"est\",\"address\":\"vljdpwozpnlfoeqqhpfkgsvbwmdjlemcmnunokdtrikb\",\"network\":\"ipsam\",\"amount\":45845822.6280122}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get fiat withdrawals",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/wallets\/fiat-withdrawals",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/wallets\/fiat-withdrawals"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get all wallets",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/wallets",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/wallets"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Public Endpoints",
            "description": "",
            "item": [
                {
                    "name": "Get current server time",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/server-time",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/server-time"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Time resource allows retrieving current server time\nand test connectivity to the Rest API.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "40"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "39"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"time\":\"2025-08-15T08:26:50.785408Z\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get active currencies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/currencies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/currencies"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get a list of active currencies available on the platform.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "200"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "198"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"name\":\"Terra\",\"symbol\":\"LUNA\",\"decimals\":6,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":5,\"deposit_status\":false,\"withdraw_status\":false,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.000000\",\"max_deposit\":\"0.000000\",\"min_withdraw\":\"3.820000\",\"max_withdraw\":\"90.000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"DigiLira\",\"symbol\":\"DTRY\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":8,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"10.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"100.00000000\",\"max_withdraw\":\"10000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"GAMI World\",\"symbol\":\"GAMI\",\"decimals\":6,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.000000\",\"max_deposit\":\"0.000000\",\"min_withdraw\":\"100.000000\",\"max_withdraw\":\"100000.000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Wing Finance\",\"symbol\":\"WING\",\"decimals\":9,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"10.00000000\",\"max_withdraw\":\"1000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Unifi Protocol DAO\",\"symbol\":\"UNFI\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.00\",\"withdraw_fee\":\"1.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"10.00000000\",\"max_withdraw\":\"1000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Mina\",\"symbol\":\"MINA\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":10,\"deposit_status\":false,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"1.00\",\"min_deposit\":\"0.00000001\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.01000000\",\"max_withdraw\":\"50.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":9}]},{\"name\":\"Immutable X\",\"symbol\":\"IMX\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"24.00000000\",\"max_withdraw\":\"4780.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Audius\",\"symbol\":\"AUDIO\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"40.00000000\",\"max_withdraw\":\"8060.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Spell Token\",\"symbol\":\"SPELL\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"10220.00000000\",\"max_withdraw\":\"2000000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Euro\",\"symbol\":\"EUR\",\"decimals\":0,\"type\":\"fiat\",\"status\":true,\"min_deposit_confirmation\":0,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"50\",\"max_deposit\":\"10000000\",\"min_withdraw\":\"50\",\"max_withdraw\":\"10000000\",\"has_payment_id\":0,\"networks\":[{\"id\":4}]},{\"name\":\"ApeCoin\",\"symbol\":\"APE\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":5,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"4.64000000\",\"max_withdraw\":\"880.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"USD Coin\",\"symbol\":\"USDC\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":5,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"10.00000000\",\"max_withdraw\":\"10000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Alchemy Pay\",\"symbol\":\"ACH\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"1306.00000000\",\"max_withdraw\":\"240000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Aave\",\"symbol\":\"AAVE\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.52000000\",\"max_withdraw\":\"45.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"EOS\",\"symbol\":\"EOS\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.00000000\",\"max_withdraw\":\"3800.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"The Graph\",\"symbol\":\"GRT\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"120.00000000\",\"max_withdraw\":\"23000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Axie Infinity\",\"symbol\":\"AXS\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.00800000\",\"max_withdraw\":\"180.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Turkish Lira\",\"symbol\":\"TRY\",\"decimals\":2,\"type\":\"fiat\",\"status\":true,\"min_deposit_confirmation\":0,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"50.00\",\"max_deposit\":\"10000000.00\",\"min_withdraw\":\"50.00\",\"max_withdraw\":\"10000000.00\",\"has_payment_id\":0,\"networks\":[{\"id\":4}]},{\"name\":\"Tezos\",\"symbol\":\"XTZ\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.10000000\",\"max_withdraw\":\"2900.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"UMA\",\"symbol\":\"UMA\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"6.94000000\",\"max_withdraw\":\"1300.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Decentraland\",\"symbol\":\"MANA\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"20.00000000\",\"max_withdraw\":\"4000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Alien Worlds\",\"symbol\":\"TLM\",\"decimals\":4,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.0000\",\"max_deposit\":\"0.0000\",\"min_withdraw\":\"3.8200\",\"max_withdraw\":\"83000.0000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Terra Classic\",\"symbol\":\"LUNAC\",\"decimals\":6,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":5,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.000000\",\"max_deposit\":\"0.000000\",\"min_withdraw\":\"3.820000\",\"max_withdraw\":\"90.000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Loopring\",\"symbol\":\"LRC\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"50.00000000\",\"max_withdraw\":\"9700.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Swipe\",\"symbol\":\"SXP\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.32000000\",\"max_withdraw\":\"7000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Lazio Fan Token\",\"symbol\":\"LAZIO\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.08200000\",\"max_withdraw\":\"2000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Smooth Love Potion\",\"symbol\":\"SLP\",\"decimals\":0,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":2,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0\",\"max_deposit\":\"0\",\"min_withdraw\":\"2476\",\"max_withdraw\":\"500000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Injective\",\"symbol\":\"INJ\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":5,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.07200000\",\"max_withdraw\":\"1500.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Holo\",\"symbol\":\"HOT\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"8836.00000000\",\"max_withdraw\":\"1666000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Santos FC Fan Token\",\"symbol\":\"SANTOS\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.07600000\",\"max_withdraw\":\"1700.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Gala\",\"symbol\":\"GALA\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"226.00000000\",\"max_withdraw\":\"43000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"The Sandbox\",\"symbol\":\"SAND\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"16.00000000\",\"max_withdraw\":\"3200.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Fantom\",\"symbol\":\"FTM\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"38.00000000\",\"max_withdraw\":\"7000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Oasis Network\",\"symbol\":\"ROSE\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":2,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"1.00000000\",\"max_withdraw\":\"37000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"EnjinCoin\",\"symbol\":\"ENJ\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"30.00000000\",\"max_withdraw\":\"5500.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Dent\",\"symbol\":\"DENT\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"17204.00000000\",\"max_withdraw\":\"3000000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Mines of Dalarnia\",\"symbol\":\"DAR\",\"decimals\":6,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":5,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.000000\",\"max_deposit\":\"0.000000\",\"min_withdraw\":\"44.000000\",\"max_withdraw\":\"8000.000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Reef Finance\",\"symbol\":\"REEF\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":2,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"4952.00000000\",\"max_withdraw\":\"1000000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Cocos-BCX\",\"symbol\":\"COCOS\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":5,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"36.00000000\",\"max_withdraw\":\"6500.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"FC Porto Fan Token\",\"symbol\":\"PORTO\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"1.00000000\",\"max_withdraw\":\"1500.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Ontology\",\"symbol\":\"ONT\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.76000000\",\"max_withdraw\":\"17000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Chiliz\",\"symbol\":\"CHZ\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"212.00000000\",\"max_withdraw\":\"41000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Bella Protocol\",\"symbol\":\"BEL\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"50.00000000\",\"max_withdraw\":\"10000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Avalanche\",\"symbol\":\"AVAX\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.00500000\",\"max_withdraw\":\"100.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"NEAR Protocol\",\"symbol\":\"NEAR\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.00\",\"withdraw_fee\":\"1.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.02600000\",\"max_withdraw\":\"500.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Cosmos\",\"symbol\":\"ATOM\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":3,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.01600000\",\"max_withdraw\":\"300.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Arpa Chain\",\"symbol\":\"ARPA\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":5,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"642.00000000\",\"max_withdraw\":\"100000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Mobox\",\"symbol\":\"MBOX\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.14000000\",\"max_withdraw\":\"3000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"API3\",\"symbol\":\"API3\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":18,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"10.00000000\",\"max_withdraw\":\"2000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Alpine F1 Team Fan Token\",\"symbol\":\"ALPINE\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.06600000\",\"max_withdraw\":\"1500.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Polygon\",\"symbol\":\"MATIC\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":2,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.28000000\",\"max_withdraw\":\"6000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"My Neighbor Alice\",\"symbol\":\"ALICE\",\"decimals\":6,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":2,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.000000\",\"max_deposit\":\"0.000000\",\"min_withdraw\":\"7.320000\",\"max_withdraw\":\"1400.000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"ChainLink\",\"symbol\":\"LINK\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":5,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"2.50\",\"withdraw_fee\":\"2.50\",\"min_deposit\":\"0.10000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.02800000\",\"max_withdraw\":\"600.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":1}]},{\"name\":\"Ravencoin\",\"symbol\":\"RVN\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":6,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.50\",\"withdraw_fee\":\"1.50\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.00000000\",\"max_withdraw\":\"42.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":1}]},{\"name\":\"Polkadot\",\"symbol\":\"DOT\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":5,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"2.50\",\"withdraw_fee\":\"2.50\",\"min_deposit\":\"0.10000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.10000000\",\"max_withdraw\":\"50.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"Shiba Inu\",\"symbol\":\"SHIB\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"0.00000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"2081400.00000000\",\"max_withdraw\":\"350000000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":3}]},{\"name\":\"Tron\",\"symbol\":\"TRX\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":2,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.00\",\"withdraw_fee\":\"1.00\",\"min_deposit\":\"0.00000100\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"15.00000000\",\"max_withdraw\":\"500.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":7}]},{\"name\":\"BUSD\",\"symbol\":\"BUSD\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"2.50\",\"withdraw_fee\":\"2.50\",\"min_deposit\":\"0.10000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.10000000\",\"max_withdraw\":\"50.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":6}]},{\"name\":\"BitTorent\",\"symbol\":\"BTT\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":5,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"2.50\",\"withdraw_fee\":\"2.50\",\"min_deposit\":\"0.10000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"63912.00000000\",\"max_withdraw\":\"4900000000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":8}]},{\"name\":\"Ripple\",\"symbol\":\"XRP\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.00\",\"withdraw_fee\":\"1.00\",\"min_deposit\":\"0.10000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.10000000\",\"max_withdraw\":\"1000.00000000\",\"has_payment_id\":1,\"networks\":[{\"id\":6}]},{\"name\":\"BNB\",\"symbol\":\"BNB\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"2.50\",\"withdraw_fee\":\"2.50\",\"min_deposit\":\"0.10000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.10000000\",\"max_withdraw\":\"50.00000000\",\"has_payment_id\":1,\"networks\":[{\"id\":5}]},{\"name\":\"Solana\",\"symbol\":\"SOL\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":4,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"1.00\",\"withdraw_fee\":\"1.00\",\"min_deposit\":\"0.10000000\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.10000000\",\"max_withdraw\":\"1000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":1}]},{\"name\":\"Dogecoin\",\"symbol\":\"DOGE\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":5,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"5.00\",\"withdraw_fee\":\"5.00\",\"min_deposit\":\"0.00000001\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"2.98000000\",\"max_withdraw\":\"1000.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":1}]},{\"name\":\"Cardano\",\"symbol\":\"ADA\",\"decimals\":18,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":5,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"2.50\",\"withdraw_fee\":\"2.50\",\"min_deposit\":\"0.00000001\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.40000000\",\"max_withdraw\":\"9170.00000000\",\"has_payment_id\":1,\"networks\":[{\"id\":6}]},{\"name\":\"Ethereum\",\"symbol\":\"ETH\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":10,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"1.00\",\"min_deposit\":\"0.00000001\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.01000000\",\"max_withdraw\":\"50.00000000\",\"has_payment_id\":0,\"networks\":[{\"id\":2}]},{\"name\":\"Bitcoin\",\"symbol\":\"BTC\",\"decimals\":8,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":2,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.60\",\"withdraw_fee\":\"1.00\",\"min_deposit\":\"0.00000001\",\"max_deposit\":\"0.00000000\",\"min_withdraw\":\"0.00100000\",\"max_withdraw\":\"0.20000000\",\"has_payment_id\":0,\"networks\":[{\"id\":1}]},{\"name\":\"Tether\",\"symbol\":\"USDT\",\"decimals\":6,\"type\":\"coin\",\"status\":true,\"min_deposit_confirmation\":5,\"deposit_status\":true,\"withdraw_status\":true,\"deposit_fee\":\"0.00\",\"withdraw_fee\":\"0.00\",\"min_deposit\":\"10.000000\",\"max_deposit\":\"0.000000\",\"min_withdraw\":\"10.000000\",\"max_withdraw\":\"10000.000000\",\"has_payment_id\":0,\"networks\":[{\"id\":8}]}],\"success\":true}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get market ticker information",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/markets\/ticker",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/markets\/ticker"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"market\":\"USDT-TRY\"}"
                        },
                        "description": "Get a high level overview of the state of the market for a specified active symbol or symbols.\nIf you want to get the latest price list of all symbols,\ndo not send the market parameter.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "200"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "197"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":{\"name\":\"USDT-TRY\",\"s\":true,\"sanitized_name\":\"USDTTRY\",\"base_currency\":\"USDT\",\"base_currency_name\":\"Tether\",\"base_currency_type\":\"coin\",\"base_currency_logo\":\"https:\\\/\\\/biqbang.com\\\/storage\\\/uploads\\\/9bc7bf581248b5e5dcb49b019e97d4da.png\",\"quote_currency\":\"TRY\",\"quote_currency_name\":\"Turkish Lira\",\"quote_currency_type\":\"fiat\",\"quote_currency_logo\":\"https:\\\/\\\/biqbang.com\\\/storage\\\/uploads\\\/74c5937fbdcf11d17baf0170251f6239.png\",\"base_precision\":0,\"quote_precision\":3,\"min_trade_size\":\"1.00000000\",\"max_trade_size\":\"1000.00000000\",\"min_trade_value\":\"10.00000000\",\"max_trade_value\":\"100000.00000000\",\"base_ticker_size\":\"1.00000000\",\"quote_ticker_size\":\"0.00100000\",\"status\":true,\"trade_status\":true,\"buy_order_status\":true,\"sell_order_status\":true,\"cancel_order_status\":true,\"chart_enabled\":true,\"last\":\"40.880\",\"change\":\"0.59\",\"high\":\"40.940\",\"low\":\"40.660\",\"volume\":\"74356792\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get market trades information",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/markets\/trades",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/markets\/trades"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"market\":\"USDT-TRY\"}"
                        },
                        "description": "Get a list of last 20 trades of market.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "200"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "196"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"success\":true}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Market OHLC data",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/markets\/candles\/:query",
                            "query": [
                                {
                                    "key": "market",
                                    "value": "USDT-TRY",
                                    "description": "Market name.",
                                    "disabled": false
                                },
                                {
                                    "key": "from",
                                    "value": "1650070910",
                                    "description": "Unix timestamp where OHLC data will start (UNIX Timestamp).",
                                    "disabled": false
                                },
                                {
                                    "key": "to",
                                    "value": "1657277910",
                                    "description": "Unix timestamp where OHLC data will stop (UNIX Timestamp).",
                                    "disabled": false
                                },
                                {
                                    "key": "interval",
                                    "value": "1D",
                                    "description": "Time frame interval.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/markets\/candles\/:query?market=USDT-TRY&from=1650070910&to=1657277910&interval=1D",
                            "variable": [
                                {
                                    "id": "query",
                                    "key": "query",
                                    "value": "omnis",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"market\":\"consequatur\"}"
                        },
                        "description": "OHLC (Open, High, Low, Close) and volume data for the specified trading pair.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "200"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "195"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 422,
                            "body": "{\"message\":\"The given data was invalid.\",\"errors\":{\"market\":[\"Invalid market name\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get market orderbook information",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/markets\/orderbook",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/markets\/orderbook"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"market\":\"USDT-TRY\"}"
                        },
                        "description": "Get a list of orderbook of market.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "200"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "194"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"bids\":[],\"asks\":[]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get market historical trades information",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/markets\/historical\/trades",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/markets\/historical\/trades"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"market\":\"USDT-TRY\"}"
                        },
                        "description": "Get a list of historical trades of market.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "200"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "193"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"trades\":[{\"created_at\":\"2025-08-15T08:26:49.475000Z\",\"price\":\"40.87000000\",\"quantity\":\"4.00000000\",\"side\":\"buy\"},{\"created_at\":\"2025-08-15T08:26:49.475000Z\",\"price\":\"40.88000000\",\"quantity\":\"3.00000000\",\"side\":\"sell\"},{\"created_at\":\"2025-08-15T08:26:49.796000Z\",\"price\":\"40.88000000\",\"quantity\":\"122.00000000\",\"side\":\"sell\"},{\"created_at\":\"2025-08-15T08:26:50.008000Z\",\"price\":\"40.88000000\",\"quantity\":\"2.00000000\",\"side\":\"sell\"},{\"created_at\":\"2025-08-15T08:26:50.013000Z\",\"price\":\"40.88000000\",\"quantity\":\"1.00000000\",\"side\":\"sell\"},{\"created_at\":\"2025-08-15T08:26:50.014000Z\",\"price\":\"40.88000000\",\"quantity\":\"1.00000000\",\"side\":\"sell\"},{\"created_at\":\"2025-08-15T08:26:50.016000Z\",\"price\":\"40.88000000\",\"quantity\":\"4.00000000\",\"side\":\"sell\"},{\"created_at\":\"2025-08-15T08:26:50.016000Z\",\"price\":\"40.88000000\",\"quantity\":\"3.00000000\",\"side\":\"sell\"},{\"created_at\":\"2025-08-15T08:26:50.018000Z\",\"price\":\"40.88000000\",\"quantity\":\"1.00000000\",\"side\":\"sell\"},{\"created_at\":\"2025-08-15T08:26:50.866000Z\",\"price\":\"40.87000000\",\"quantity\":\"499.00000000\",\"side\":\"buy\"}],\"success\":true}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Regulatory Reporting",
            "description": "\nAutomated regulatory compliance reporting, transaction monitoring, and audit trail\nmanagement for various jurisdictions including MiCA, Travel Rule, and AML requirements.",
            "item": [
                {
                    "name": "Submit Currency Transaction Report (CTR)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/regulatory\/ctr",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/regulatory\/ctr"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"transaction_ids\":[\"txn_123\",\"txn_456\"],\"reporting_entity\":{\"name\":\"BiqBang Exchange\",\"ein\":\"12-3456789\"},\"customer_info\":{\"name\":\"John Doe\",\"id_number\":\"123-45-6789\",\"address\":[]},\"jurisdiction\":\"US\"}"
                        },
                        "description": "File a Currency Transaction Report for transactions exceeding regulatory thresholds.\nRequired for transactions over $10,000 USD in most jurisdictions."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"report_id\": \"CTR_2025_0001234\",\n    \"report_type\": \"Currency Transaction Report\",\n    \"status\": \"submitted\",\n    \"submission_details\": {\n      \"submitted_at\": \"2025-01-30T15:00:00Z\",\n      \"submitted_by\": \"compliance_officer_001\",\n      \"submission_method\": \"electronic\",\n      \"confirmation_number\": \"FIN2025CTR0001234\"\n    },\n    \"transaction_summary\": {\n      \"total_amount\": \"25,678.90\",\n      \"currency\": \"USD\",\n      \"transaction_count\": 2,\n      \"date_range\": {\n        \"from\": \"2025-01-30T08:00:00Z\",\n        \"to\": \"2025-01-30T14:00:00Z\"\n      }\n    },\n    \"customer_details\": {\n      \"name\": \"John Doe\",\n      \"id_type\": \"SSN\",\n      \"id_number_masked\": \"***-**-6789\",\n      \"verified\": true,\n      \"risk_rating\": \"low\"\n    },\n    \"regulatory_info\": {\n      \"jurisdiction\": \"US\",\n      \"regulation\": \"Bank Secrecy Act\",\n      \"threshold\": \"10,000 USD\",\n      \"filing_deadline\": \"2025-01-31T23:59:59Z\",\n      \"penalty_for_non_filing\": \"Up to $250,000\"\n    },\n    \"audit_trail\": {\n      \"created\": \"2025-01-30T14:55:00Z\",\n      \"validated\": \"2025-01-30T14:58:00Z\",\n      \"approved\": \"2025-01-30T14:59:00Z\",\n      \"submitted\": \"2025-01-30T15:00:00Z\"\n    },\n    \"next_steps\": [\n      \"Await regulatory acknowledgment\",\n      \"File copy retained for 5 years\",\n      \"Customer notification sent\"\n    ],\n    \"documents\": {\n      \"report_pdf\": \"https:\/\/secure.biqbang.com\/reports\/CTR_2025_0001234.pdf\",\n      \"receipt\": \"https:\/\/secure.biqbang.com\/receipts\/CTR_2025_0001234_receipt.pdf\"\n    }\n  },\n  \"message\": \"Currency Transaction Report submitted successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"error\": \"Transaction amount below reporting threshold\",\n  \"code\": \"BELOW_THRESHOLD\",\n  \"details\": {\n    \"total_amount\": \"8,500.00\",\n    \"required_threshold\": \"10,000.00\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Submit Suspicious Activity Report (SAR)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/regulatory\/sar",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/regulatory\/sar"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"activity_type\":\"structuring\",\"transaction_ids\":[\"txn_789\",\"txn_012\"],\"suspicious_amount\":\"45000.00\",\"narrative\":\"fuga\",\"suspect_info\":[],\"filing_institution\":[]}"
                        },
                        "description": "File a Suspicious Activity Report for potentially illicit transactions or patterns.\nProtected endpoint with strict access controls and confidentiality requirements."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"report_id\": \"SAR_2025_0000567\",\n    \"report_type\": \"Suspicious Activity Report\",\n    \"status\": \"filed_confidential\",\n    \"filing_details\": {\n      \"filed_at\": \"2025-01-30T15:30:00Z\",\n      \"filed_by\": \"MLRO_001\",\n      \"confidentiality_notice\": \"This SAR is confidential. Disclosure prohibited by law.\",\n      \"retention_period\": \"5 years\"\n    },\n    \"activity_summary\": {\n      \"type\": \"structuring\",\n      \"severity\": \"high\",\n      \"amount_involved\": \"45,000.00\",\n      \"date_range\": \"2025-01-15 to 2025-01-30\",\n      \"pattern_detected\": \"Multiple deposits below CTR threshold\"\n    },\n    \"investigation_status\": {\n      \"internal_case_number\": \"INV_2025_0234\",\n      \"law_enforcement_notified\": false,\n      \"account_action\": \"enhanced_monitoring\",\n      \"customer_contacted\": false\n    },\n    \"regulatory_compliance\": {\n      \"filing_deadline_met\": true,\n      \"regulation\": \"31 CFR \u00a7 1024.320\",\n      \"safe_harbor_protection\": \"applicable\",\n      \"tipping_off_prohibition\": \"in_effect\"\n    },\n    \"next_actions\": [\n      \"Continue monitoring account\",\n      \"Await FinCEN acknowledgment\",\n      \"Update risk rating\",\n      \"Review in 90 days\"\n    ]\n  },\n  \"message\": \"Suspicious Activity Report filed successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Travel Rule Compliance Check",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/regulatory\/travel-rule",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/regulatory\/travel-rule"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"transaction_id\":\"txn_cross_123\",\"originator\":[],\"beneficiary\":[],\"amount\":\"5000.00\",\"asset\":\"BTC\",\"vasp_info\":[]}"
                        },
                        "description": "Verify and submit Travel Rule information for cross-border cryptocurrency transfers.\nEnsures compliance with FATF Recommendation 16."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"compliance_id\": \"TRAVEL_2025_00456\",\n    \"status\": \"compliant\",\n    \"verification_results\": {\n      \"originator_verified\": true,\n      \"beneficiary_verified\": true,\n      \"vasp_verified\": true,\n      \"threshold_check\": \"above_threshold\",\n      \"sanctions_screening\": \"clear\",\n      \"pep_screening\": \"clear\"\n    },\n    \"travel_rule_data\": {\n      \"message_type\": \"SWIFT_X\",\n      \"message_version\": \"1.0\",\n      \"originator\": {\n        \"name\": \"John Smith\",\n        \"account\": \"bc1q***...***\",\n        \"address\": \"123 Main St, New York, NY\",\n        \"national_id\": \"***-**-1234\"\n      },\n      \"beneficiary\": {\n        \"name\": \"Jane Doe\",\n        \"account\": \"0x***...***\",\n        \"vasp\": \"External Exchange Inc.\"\n      },\n      \"transfer_details\": {\n        \"amount\": \"5000.00\",\n        \"asset\": \"BTC\",\n        \"usd_value\": \"325,000.00\",\n        \"timestamp\": \"2025-01-30T16:00:00Z\"\n      }\n    },\n    \"compliance_checks\": {\n      \"fatf_compliant\": true,\n      \"jurisdiction_requirements_met\": true,\n      \"data_privacy_compliant\": true,\n      \"retention_period\": \"5 years\"\n    },\n    \"transmission_status\": {\n      \"sent_to_beneficiary_vasp\": true,\n      \"confirmation_received\": true,\n      \"transmission_method\": \"encrypted_api\",\n      \"transmission_time\": \"2025-01-30T16:01:00Z\"\n    },\n    \"audit_record\": {\n      \"record_id\": \"AUDIT_TR_2025_00456\",\n      \"immutable_log\": true,\n      \"blockchain_anchor\": \"0xabc123...def456\"\n    }\n  },\n  \"message\": \"Travel Rule compliance verified and transmitted\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "MiCA Compliance Report",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/regulatory\/mica",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/regulatory\/mica"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reporting_period\":\"Q1\",\"year\":2025,\"entity_type\":\"CASP\"}"
                        },
                        "description": "Generate Markets in Crypto-Assets (MiCA) regulation compliance report for EU operations.\nCovers all aspects of MiCA including stablecoins, market abuse, and operational resilience."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"report_id\": \"MICA_2025_Q1_001\",\n    \"regulation\": \"Markets in Crypto-Assets Regulation (EU) 2023\/1114\",\n    \"reporting_period\": \"Q1 2025\",\n    \"entity_classification\": \"Crypto-Asset Service Provider (CASP)\",\n    \"compliance_status\": {\n      \"overall\": \"compliant\",\n      \"score\": 94,\n      \"areas\": {\n        \"authorization\": \"compliant\",\n        \"operational_resilience\": \"compliant\",\n        \"market_abuse_prevention\": \"compliant\",\n        \"customer_protection\": \"compliant\",\n        \"stablecoin_requirements\": \"not_applicable\",\n        \"sustainability_disclosure\": \"compliant\"\n      }\n    },\n    \"key_metrics\": {\n      \"total_clients\": 45678,\n      \"eu_clients\": 12345,\n      \"transaction_volume\": \"\u20ac125,678,900\",\n      \"assets_under_custody\": \"\u20ac567,890,000\",\n      \"stablecoin_reserves\": \"\u20ac0\",\n      \"complaints_received\": 23,\n      \"complaints_resolved\": 21\n    },\n    \"operational_requirements\": {\n      \"prudential_requirements\": {\n        \"capital_requirement\": \"\u20ac1,000,000\",\n        \"current_capital\": \"\u20ac2,500,000\",",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Generate Audit Trail",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/regulatory\/audit-trail",
                            "query": [
                                {
                                    "key": "start_date",
                                    "value": "2025-01-01",
                                    "description": "Start date for audit trail.",
                                    "disabled": false
                                },
                                {
                                    "key": "end_date",
                                    "value": "2025-01-31",
                                    "description": "End date for audit trail.",
                                    "disabled": false
                                },
                                {
                                    "key": "entity_id",
                                    "value": "user_123",
                                    "description": "Entity to audit.",
                                    "disabled": false
                                },
                                {
                                    "key": "event_types%5B0%5D",
                                    "value": "transactions",
                                    "description": "Types of events to include.",
                                    "disabled": false
                                },
                                {
                                    "key": "event_types%5B1%5D",
                                    "value": "kyc",
                                    "description": "Types of events to include.",
                                    "disabled": false
                                },
                                {
                                    "key": "event_types%5B2%5D",
                                    "value": "account_changes",
                                    "description": "Types of events to include.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/regulatory\/audit-trail?start_date=2025-01-01&end_date=2025-01-31&entity_id=user_123&event_types%5B0%5D=transactions&event_types%5B1%5D=kyc&event_types%5B2%5D=account_changes"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"start_date\":\"2025-08-15T08:26:53\",\"end_date\":\"2108-04-23\",\"entity_id\":\"ex\",\"event_types\":[\"repellendus\"]}"
                        },
                        "description": "Create comprehensive audit trail for regulatory examination with immutable records\nand blockchain anchoring for data integrity."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"audit_id\": \"AUDIT_2025_00789\",\n    \"period\": {\n      \"from\": \"2025-01-01T00:00:00Z\",\n      \"to\": \"2025-01-31T23:59:59Z\"\n    },\n    \"summary\": {\n      \"total_events\": 1456,\n      \"users_affected\": 234,\n      \"high_risk_events\": 5,\n      \"compliance_violations\": 0\n    },\n    \"events\": [\n      {\n        \"event_id\": \"EVT_2025_001234\",\n        \"timestamp\": \"2025-01-15T10:30:00Z\",\n        \"event_type\": \"large_transaction\",\n        \"actor\": \"user_123\",\n        \"action\": \"withdrawal\",\n        \"details\": {\n          \"amount\": \"50,000.00\",\n          \"currency\": \"USD\",\n          \"destination\": \"External Wallet\"\n        },\n        \"compliance_checks\": {\n          \"aml_check\": \"passed\",\n          \"sanctions_check\": \"passed\",\n          \"travel_rule\": \"completed\"\n        },\n        \"risk_score\": 45,\n        \"ip_address\": \"192.168.1.1\",\n        \"device_fingerprint\": \"abc123def456\"\n      },\n      {\n        \"event_id\": \"EVT_2025_001235\",\n        \"timestamp\": \"2025-01-16T14:20:00Z\",\n        \"event_type\": \"kyc_update\",\n        \"actor\": \"user_456\",\n        \"action\": \"document_upload\",\n        \"details\": {\n          \"document_type\": \"passport\",\n          \"verification_status\": \"approved\",\n          \"reviewer\": \"compliance_officer_002\"\n        },\n        \"compliance_checks\": {\n          \"document_authenticity\": \"verified\",\n          \"biometric_match\": \"98.5%\"\n        }\n      }\n    ],\n    \"integrity_verification\": {\n      \"hash_chain_valid\": true,\n      \"blockchain_anchors\": [\n        {\n            \"block_number\": 18956789,\n            \"transaction_hash\": \"0xabc123...\",\n            \"timestamp\": \"2025-01-31T23:59:00Z\"\n        }\n      ],\n      \"tamper_detection\": \"no_anomalies\"\n    },\n    \"export_options\": {\n      \"formats\": [\"PDF\", \"CSV\", \"JSON\", \"XML\"],\n      \"encrypted_archive\": \"https:\/\/secure.biqbang.com\/audits\/AUDIT_2025_00789.zip\",\n      \"retention_period\": \"7 years\"\n    }\n  },\n  \"message\": \"Audit trail generated successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Real-time Transaction Monitoring",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/regulatory\/monitor",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/regulatory\/monitor"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"transaction\":[],\"rules\":[\"soluta\"]}"
                        },
                        "description": "Monitor transactions in real-time for compliance violations, unusual patterns,\nand regulatory reporting requirements."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"monitoring_id\": \"MON_2025_012345\",\n    \"transaction_id\": \"txn_abc123\",\n    \"status\": \"flagged\",\n    \"risk_assessment\": {\n      \"overall_risk\": \"medium\",\n      \"risk_score\": 65,\n      \"factors\": [\n        {\n          \"factor\": \"transaction_velocity\",\n          \"score\": 30,\n          \"details\": \"3 transactions in 1 hour\"\n        },\n        {\n          \"factor\": \"amount_threshold\",\n          \"score\": 20,\n          \"details\": \"Near reporting threshold\"\n        },\n        {\n          \"factor\": \"counterparty_risk\",\n          \"score\": 15,\n          \"details\": \"New counterparty\"\n        }\n      ]\n    },\n    \"compliance_alerts\": [\n      {\n          \"alert_type\": \"velocity_check\",\n          \"severity\": \"medium\",\n          \"message\": \"Multiple transactions detected within short timeframe\",\n          \"action_required\": \"Enhanced due diligence\"\n      }\n    ],\n    \"regulatory_requirements\": {\n      \"ctr_required\": false,\n      \"sar_recommended\": true,\n      \"travel_rule_applicable\": true,\n      \"enhanced_monitoring\": true\n    },\n    \"actions_taken\": [\n      \"Transaction flagged for review\",\n      \"Compliance team notified\",\n      \"Enhanced monitoring activated\"\n    ],\n    \"next_review\": \"2025-01-31T10:00:00Z\"\n  },\n  \"message\": \"Transaction monitoring completed\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Virtual Card Factory",
            "description": "\nAdvanced virtual card creation and management system. Create disposable cards, \nmerchant-specific cards, subscription management cards, and team cards with granular controls.",
            "item": [
                {
                    "name": "Create Disposable Virtual Card",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cards\/virtual\/disposable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cards\/virtual\/disposable"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":\"wlt_zk_1234567890abcdef\",\"amount\":\"50.00\",\"currency\":\"USD\",\"expiry_minutes\":30,\"merchant_lock\":\"amazon.com\",\"transaction_limit\":1,\"metadata\":{\"purpose\":\"free_trial\",\"service\":\"netflix\"}}"
                        },
                        "description": "Generate a single-use virtual card that automatically expires after one transaction\nor a specified time period. Perfect for untrusted merchants or trial subscriptions."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"card_id\": \"vcard_disp_abc123xyz\",\n    \"card_type\": \"disposable\",\n    \"card_details\": {\n      \"card_number\": \"4532 1234 5678 9012\",\n      \"cvv\": \"123\",\n      \"expiry\": \"12\/25\",\n      \"cardholder_name\": \"TEMP USER\",\n      \"billing_address\": {\n        \"street\": \"123 Virtual St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"zip\": \"10001\",\n        \"country\": \"US\"\n      }\n    },\n    \"limits\": {\n      \"amount\": \"50.00\",\n      \"currency\": \"USD\",\n      \"remaining\": \"50.00\",\n      \"transaction_limit\": 1,\n      \"transactions_used\": 0\n    },\n    \"expiry\": {\n      \"expires_at\": \"2025-01-30T12:30:00Z\",\n      \"minutes_remaining\": 30,\n      \"auto_expire_after_use\": true\n    },\n    \"merchant_lock\": {\n      \"enabled\": true,\n      \"merchant\": \"amazon.com\",\n      \"merchant_category\": null\n    },\n    \"security\": {\n      \"3ds_enabled\": true,\n      \"fraud_detection\": \"enhanced\",\n      \"instant_notifications\": true,\n      \"auto_lock_on_decline\": true\n    },\n    \"metadata\": {\n      \"purpose\": \"free_trial\",\n      \"service\": \"netflix\",\n      \"created_by\": \"user_automation\"\n    },\n    \"status\": \"active\",\n    \"created_at\": \"2025-01-30T12:00:00Z\"\n  },\n  \"message\": \"Disposable virtual card created successfully\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"error\": \"Insufficient balance for card creation\",\n  \"code\": \"INSUFFICIENT_BALANCE\",\n  \"details\": {\n    \"required\": \"50.00 USD\",\n    \"available\": \"25.00 USD\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create Merchant-Specific Card",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cards\/virtual\/merchant",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cards\/virtual\/merchant"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":\"wlt_zk_1234567890abcdef\",\"merchants\":[\"amazon.com\",\"ebay.com\",\"walmart.com\"],\"categories\":[\"5411\",\"5912\",\"5999\"],\"monthly_limit\":\"500.00\",\"per_transaction_limit\":\"100.00\",\"currency\":\"USD\",\"card_name\":\"Online Shopping Card\",\"notification_webhook\":\"https:\\\/\\\/myapp.com\\\/webhooks\\\/card\"}"
                        },
                        "description": "Generate a virtual card locked to specific merchants or merchant categories.\nIdeal for budgeting and preventing unauthorized use."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"card_id\": \"vcard_merch_def456uvw\",\n    \"card_type\": \"merchant_specific\",\n    \"card_name\": \"Online Shopping Card\",\n    \"card_details\": {\n      \"card_number_masked\": \"4532 **** **** 3456\",\n      \"expiry\": \"12\/27\",\n      \"cardholder_name\": \"JOHN DOE\"\n    },\n    \"merchant_restrictions\": {\n      \"allowed_merchants\": [\n        {\"name\": \"amazon.com\", \"status\": \"active\"},\n        {\"name\": \"ebay.com\", \"status\": \"active\"},\n        {\"name\": \"walmart.com\", \"status\": \"active\"}\n      ],\n      \"allowed_categories\": [\n        {\"code\": \"5411\", \"description\": \"Grocery Stores\"},\n        {\"code\": \"5912\", \"description\": \"Drug Stores\"},\n        {\"code\": \"5999\", \"description\": \"Miscellaneous Retail\"}\n      ],\n      \"block_all_others\": true\n    },\n    \"spending_limits\": {\n      \"monthly_limit\": \"500.00\",\n      \"monthly_spent\": \"0.00\",\n      \"monthly_remaining\": \"500.00\",\n      \"per_transaction\": \"100.00\",\n      \"daily_limit\": \"200.00\",\n      \"daily_spent\": \"0.00\"\n    },\n    \"usage_stats\": {\n      \"total_transactions\": 0,\n      \"total_spent\": \"0.00\",\n      \"last_used\": null,\n      \"most_used_merchant\": null\n    },\n    \"notifications\": {\n      \"webhook_url\": \"https:\/\/myapp.com\/webhooks\/card\",\n      \"email_alerts\": true,\n      \"push_notifications\": true,\n      \"sms_alerts\": false\n    },\n    \"status\": \"active\",\n    \"created_at\": \"2025-01-30T12:15:00Z\",\n    \"valid_until\": \"2027-12-31T23:59:59Z\"\n  },\n  \"message\": \"Merchant-specific card created successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create Subscription Management Card",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cards\/virtual\/subscription",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cards\/virtual\/subscription"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":\"wlt_zk_1234567890abcdef\",\"subscription_name\":\"Netflix Premium\",\"amount\":\"19.99\",\"billing_cycle\":\"monthly\",\"merchant\":\"netflix.com\",\"auto_cancel_on_increase\":true,\"increase_tolerance_percent\":10,\"trial_period_days\":30}"
                        },
                        "description": "Generate a virtual card optimized for managing recurring subscriptions with\nautomatic limits, renewal tracking, and cancellation protection."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"card_id\": \"vcard_sub_ghi789rst\",\n    \"card_type\": \"subscription\",\n    \"subscription_details\": {\n      \"name\": \"Netflix Premium\",\n      \"merchant\": \"netflix.com\",\n      \"amount\": \"19.99\",\n      \"currency\": \"USD\",\n      \"billing_cycle\": \"monthly\",\n      \"next_billing_date\": \"2025-02-28T00:00:00Z\"\n    },\n    \"card_details\": {\n      \"card_number_masked\": \"4532 **** **** 5678\",\n      \"expiry\": \"12\/28\",\n      \"locked_to_merchant\": true\n    },\n    \"protection_features\": {\n      \"auto_cancel_on_increase\": true,\n      \"increase_tolerance\": \"10%\",\n      \"max_allowed_amount\": \"21.99\",\n      \"free_trial_detection\": true,\n      \"trial_end_date\": \"2025-02-28T00:00:00Z\",\n      \"auto_pause_available\": true\n    },\n    \"billing_history\": {\n      \"total_paid\": \"0.00\",\n      \"payment_count\": 0,\n      \"last_payment\": null,\n      \"average_amount\": \"0.00\",\n      \"price_changes\": []\n    },\n    \"management_features\": {\n      \"pause_subscription\": \"available\",\n      \"skip_next_payment\": \"available\",\n      \"change_billing_date\": \"available\",\n      \"instant_cancellation\": \"available\",\n      \"spending_alerts\": \"enabled\"\n    },\n    \"analytics\": {\n      \"cost_per_day\": \"0.67\",\n      \"annual_cost\": \"239.88\",\n      \"category\": \"Entertainment\",\n      \"usage_value_score\": null\n    },\n    \"status\": \"trial\",\n    \"created_at\": \"2025-01-30T12:30:00Z\"\n  },\n  \"message\": \"Subscription management card created successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create Team\/Family Card",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cards\/virtual\/team",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cards\/virtual\/team"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wallet_id\":\"wlt_zk_1234567890abcdef\",\"card_holder_name\":\"Jane Doe\",\"card_holder_email\":\"jane@example.com\",\"card_type\":\"employee\",\"monthly_limit\":\"1000.00\",\"allowed_categories\":[\"5812\",\"5411\",\"5541\"],\"requires_approval_above\":\"100.00\",\"valid_until\":\"2025-12-31\"}"
                        },
                        "description": "Generate virtual cards for team members or family with individual limits,\nspending controls, and centralized management."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"card_id\": \"vcard_team_jkl012mno\",\n    \"card_type\": \"team_card\",\n    \"card_holder\": {\n      \"name\": \"Jane Doe\",\n      \"email\": \"jane@example.com\",\n      \"role\": \"employee\",\n      \"department\": \"Marketing\"\n    },\n    \"card_details\": {\n      \"card_number_masked\": \"4532 **** **** 7890\",\n      \"expiry\": \"12\/25\",\n      \"cardholder_name\": \"JANE DOE\"\n    },\n    \"spending_controls\": {\n      \"monthly_limit\": \"1000.00\",\n      \"monthly_spent\": \"0.00\",\n      \"monthly_remaining\": \"1000.00\",\n      \"daily_limit\": \"200.00\",\n      \"per_transaction_limit\": \"500.00\",\n      \"requires_approval_above\": \"100.00\"\n    },\n    \"allowed_categories\": [\n      {\"code\": \"5812\", \"name\": \"Restaurants\", \"allowed\": true},\n      {\"code\": \"5411\", \"name\": \"Grocery Stores\", \"allowed\": true},\n      {\"code\": \"5541\", \"name\": \"Gas Stations\", \"allowed\": true}\n    ],\n    \"approval_workflow\": {\n      \"enabled\": true,\n      \"threshold\": \"100.00\",\n      \"approvers\": [\"admin@company.com\", \"finance@company.com\"],\n      \"auto_approve_recurring\": true\n    },\n    \"expense_tracking\": {\n      \"auto_categorization\": true,\n      \"receipt_required\": true,\n      \"project_codes_enabled\": true,\n      \"integration\": \"quickbooks\"\n    },\n    \"usage_analytics\": {\n      \"total_transactions\": 0,\n      \"total_spent\": \"0.00\",\n      \"average_transaction\": \"0.00\",\n      \"top_categories\": [],\n      \"compliance_score\": 100\n    },\n    \"permissions\": {\n      \"can_view_balance\": true,\n      \"can_request_increase\": true,\n      \"can_dispute_transactions\": true,\n      \"can_download_statements\": false\n    },\n    \"status\": \"active\",\n    \"valid_until\": \"2025-12-31T23:59:59Z\",\n    \"created_at\": \"2025-01-30T13:00:00Z\"\n  },\n  \"message\": \"Team card created successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Manage Virtual Card Controls",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/cards\/virtual\/controls",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/cards\/virtual\/controls"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"card_id\":\"vcard_team_jkl012mno\",\"action\":\"update_limit\",\"parameters\":{\"new_limit\":\"2000.00\"}}"
                        },
                        "description": "Update spending limits, merchant restrictions, and other controls for any virtual card."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"card_id\": \"vcard_team_jkl012mno\",\n    \"action\": \"update_limit\",\n    \"previous_state\": {\n      \"monthly_limit\": \"1000.00\"\n    },\n    \"new_state\": {\n      \"monthly_limit\": \"2000.00\"\n    },\n    \"effective_immediately\": true,\n    \"notification_sent\": true,\n    \"updated_at\": \"2025-01-30T13:15:00Z\"\n  },\n  \"message\": \"Card controls updated successfully\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Wearable Payments",
            "description": "Smartwatch and wearable device payment integration",
            "item": [
                {
                    "name": "Register Wearable Device",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/wearables\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/wearables\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"device_type\":\"numquam\",\"device_id\":\"quod\",\"biometric_enabled\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Process Wearable Payment",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/wearables\/pay",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/wearables\/pay"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wearable_id\":\"adipisci\",\"amount\":\"qui\",\"merchant_id\":\"sunt\",\"auth_method\":\"sed\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Fitness Rewards Integration",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/wearables\/fitness",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/wearables\/fitness"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"wearable_id\":\"tenetur\",\"activity_type\":\"corrupti\",\"value\":8}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer"
    }
}