{
    "info": {
        "name": "Complete Crypto System API",
        "description": "Full cryptocurrency platform with coins, markets, wallets, transactions, and portfolio tracking",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
    },
    "item": [
        {
            "name": "\ud83d\udd10 Authentication",
            "description": "Authentication endpoints for user registration and login",
            "item": [
                {
                    "name": "Register",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Test User\",\n    \"email\": \"test@example.com\",\n    \"password\": \"password123\"\n}"
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/auth/register",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "auth",
                                "register"
                            ]
                        }
                    }
                },
                {
                    "name": "Login",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"robert@crypto.com\",\n    \"password\": \"password123\"\n}"
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/auth/login",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "auth",
                                "login"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Alerts",
            "description": "User price alerts",
            "item": [
                {
                    "name": "Get All Alerts",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/alerts",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "alerts"
                            ]
                        },
                        "description": "Retrieve a paginated list of all alerts"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Robert Johnson\",\n            \"cryptocurrency_symbol\": \"BTC\",\n            \"alert_type\": \"above\",\n            \"target_price\": 45000,\n            \"current_price\": 43250.5,\n            \"is_triggered\": false,\n            \"created_at\": \"2024-01-18T10:00:00Z\",\n            \"triggered_at\": null\n        },\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Robert Johnson\",\n            \"cryptocurrency_symbol\": \"BTC\",\n            \"alert_type\": \"above\",\n            \"target_price\": 45000,\n            \"current_price\": 43250.5,\n            \"is_triggered\": false,\n            \"created_at\": \"2024-01-18T10:00:00Z\",\n            \"triggered_at\": null\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Alert by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/alerts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "alerts",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single alert by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"alert_type\": \"above\",\n    \"target_price\": 45000,\n    \"current_price\": 43250.5,\n    \"is_triggered\": false,\n    \"created_at\": \"2024-01-18T10:00:00Z\",\n    \"triggered_at\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Create Alert",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"alert_type\": \"above\",\n    \"target_price\": 45000,\n    \"current_price\": 43250.5,\n    \"is_triggered\": false,\n    \"triggered_at\": null\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/alerts",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "alerts"
                            ]
                        },
                        "description": "Create a new alert"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"alert_type\": \"above\",\n    \"target_price\": 45000,\n    \"current_price\": 43250.5,\n    \"is_triggered\": false,\n    \"created_at\": \"2024-01-18T10:00:00Z\",\n    \"triggered_at\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Update Alert",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"alert_type\": \"above\",\n    \"target_price\": 45000,\n    \"current_price\": 43250.5,\n    \"is_triggered\": false,\n    \"triggered_at\": null\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/alerts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "alerts",
                                "1"
                            ]
                        },
                        "description": "Update an existing alert"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"alert_type\": \"above\",\n    \"target_price\": 45000,\n    \"current_price\": 43250.5,\n    \"is_triggered\": false,\n    \"created_at\": \"2024-01-18T10:00:00Z\",\n    \"triggered_at\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Alert",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/alerts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "alerts",
                                "1"
                            ]
                        },
                        "description": "Delete a alert by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Alert deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Cryptocurrencies",
            "description": "Available cryptocurrencies and tokens",
            "item": [
                {
                    "name": "Get All Cryptocurrencies",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/cryptocurrencies",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "cryptocurrencies"
                            ]
                        },
                        "description": "Retrieve a paginated list of all cryptocurrencies"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"symbol\": \"BTC\",\n            \"name\": \"Bitcoin\",\n            \"logo\": \"\\u20bf\",\n            \"current_price\": 43250.5,\n            \"market_cap\": 847500000000,\n            \"volume_24h\": 28500000000,\n            \"price_change_24h\": 1234.5,\n            \"price_change_percentage_24h\": 2.939999999999999946709294817992486059665679931640625,\n            \"circulating_supply\": 19600000,\n            \"total_supply\": 21000000,\n            \"rank\": 1\n        },\n        {\n            \"symbol\": \"BTC\",\n            \"name\": \"Bitcoin\",\n            \"logo\": \"\\u20bf\",\n            \"current_price\": 43250.5,\n            \"market_cap\": 847500000000,\n            \"volume_24h\": 28500000000,\n            \"price_change_24h\": 1234.5,\n            \"price_change_percentage_24h\": 2.939999999999999946709294817992486059665679931640625,\n            \"circulating_supply\": 19600000,\n            \"total_supply\": 21000000,\n            \"rank\": 1\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Cryptocurrencie by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/cryptocurrencies/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "cryptocurrencies",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single cryptocurrencie by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"symbol\": \"BTC\",\n    \"name\": \"Bitcoin\",\n    \"logo\": \"\\u20bf\",\n    \"current_price\": 43250.5,\n    \"market_cap\": 847500000000,\n    \"volume_24h\": 28500000000,\n    \"price_change_24h\": 1234.5,\n    \"price_change_percentage_24h\": 2.939999999999999946709294817992486059665679931640625,\n    \"circulating_supply\": 19600000,\n    \"total_supply\": 21000000,\n    \"rank\": 1\n}"
                        }
                    ]
                },
                {
                    "name": "Create Cryptocurrencie",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"symbol\": \"BTC\",\n    \"name\": \"Bitcoin\",\n    \"logo\": \"\\u20bf\",\n    \"current_price\": 43250.5,\n    \"market_cap\": 847500000000,\n    \"volume_24h\": 28500000000,\n    \"price_change_24h\": 1234.5,\n    \"price_change_percentage_24h\": 2.939999999999999946709294817992486059665679931640625,\n    \"circulating_supply\": 19600000,\n    \"total_supply\": 21000000,\n    \"rank\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/cryptocurrencies",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "cryptocurrencies"
                            ]
                        },
                        "description": "Create a new cryptocurrencie"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"symbol\": \"BTC\",\n    \"name\": \"Bitcoin\",\n    \"logo\": \"\\u20bf\",\n    \"current_price\": 43250.5,\n    \"market_cap\": 847500000000,\n    \"volume_24h\": 28500000000,\n    \"price_change_24h\": 1234.5,\n    \"price_change_percentage_24h\": 2.939999999999999946709294817992486059665679931640625,\n    \"circulating_supply\": 19600000,\n    \"total_supply\": 21000000,\n    \"rank\": 1\n}"
                        }
                    ]
                },
                {
                    "name": "Update Cryptocurrencie",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"symbol\": \"BTC\",\n    \"name\": \"Bitcoin\",\n    \"logo\": \"\\u20bf\",\n    \"current_price\": 43250.5,\n    \"market_cap\": 847500000000,\n    \"volume_24h\": 28500000000,\n    \"price_change_24h\": 1234.5,\n    \"price_change_percentage_24h\": 2.939999999999999946709294817992486059665679931640625,\n    \"circulating_supply\": 19600000,\n    \"total_supply\": 21000000,\n    \"rank\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/cryptocurrencies/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "cryptocurrencies",
                                "1"
                            ]
                        },
                        "description": "Update an existing cryptocurrencie"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"symbol\": \"BTC\",\n    \"name\": \"Bitcoin\",\n    \"logo\": \"\\u20bf\",\n    \"current_price\": 43250.5,\n    \"market_cap\": 847500000000,\n    \"volume_24h\": 28500000000,\n    \"price_change_24h\": 1234.5,\n    \"price_change_percentage_24h\": 2.939999999999999946709294817992486059665679931640625,\n    \"circulating_supply\": 19600000,\n    \"total_supply\": 21000000,\n    \"rank\": 1\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Cryptocurrencie",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/cryptocurrencies/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "cryptocurrencies",
                                "1"
                            ]
                        },
                        "description": "Delete a cryptocurrencie by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Cryptocurrencie deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Exchanges",
            "description": "Cryptocurrency exchanges information",
            "item": [
                {
                    "name": "Get All Exchanges",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/exchanges",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "exchanges"
                            ]
                        },
                        "description": "Retrieve a paginated list of all exchanges"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"name\": \"Binance\",\n            \"country\": \"Global\",\n            \"logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=ex1\",\n            \"trust_score\": 10,\n            \"volume_24h_btc\": 125000,\n            \"year_established\": 2017\n        },\n        {\n            \"name\": \"Binance\",\n            \"country\": \"Global\",\n            \"logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=ex1\",\n            \"trust_score\": 10,\n            \"volume_24h_btc\": 125000,\n            \"year_established\": 2017\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Exchange by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/exchanges/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "exchanges",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single exchange by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Binance\",\n    \"country\": \"Global\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=ex1\",\n    \"trust_score\": 10,\n    \"volume_24h_btc\": 125000,\n    \"year_established\": 2017\n}"
                        }
                    ]
                },
                {
                    "name": "Create Exchange",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Binance\",\n    \"country\": \"Global\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=ex1\",\n    \"trust_score\": 10,\n    \"volume_24h_btc\": 125000,\n    \"year_established\": 2017\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/exchanges",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "exchanges"
                            ]
                        },
                        "description": "Create a new exchange"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Binance\",\n    \"country\": \"Global\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=ex1\",\n    \"trust_score\": 10,\n    \"volume_24h_btc\": 125000,\n    \"year_established\": 2017\n}"
                        }
                    ]
                },
                {
                    "name": "Update Exchange",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Binance\",\n    \"country\": \"Global\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=ex1\",\n    \"trust_score\": 10,\n    \"volume_24h_btc\": 125000,\n    \"year_established\": 2017\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/exchanges/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "exchanges",
                                "1"
                            ]
                        },
                        "description": "Update an existing exchange"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Binance\",\n    \"country\": \"Global\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=ex1\",\n    \"trust_score\": 10,\n    \"volume_24h_btc\": 125000,\n    \"year_established\": 2017\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Exchange",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/exchanges/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "exchanges",
                                "1"
                            ]
                        },
                        "description": "Delete a exchange by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Exchange deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Markets",
            "description": "Trading pairs and market data",
            "item": [
                {
                    "name": "Get All Markets",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/markets",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "markets"
                            ]
                        },
                        "description": "Retrieve a paginated list of all markets"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"pair\": \"BTC\\/USDT\",\n            \"base_currency\": \"BTC\",\n            \"quote_currency\": \"USDT\",\n            \"last_price\": 43250.5,\n            \"bid\": 43248.300000000002910383045673370361328125,\n            \"ask\": 43252.699999999997089616954326629638671875,\n            \"volume_24h\": 15600,\n            \"high_24h\": 43890,\n            \"low_24h\": 42540\n        },\n        {\n            \"pair\": \"BTC\\/USDT\",\n            \"base_currency\": \"BTC\",\n            \"quote_currency\": \"USDT\",\n            \"last_price\": 43250.5,\n            \"bid\": 43248.300000000002910383045673370361328125,\n            \"ask\": 43252.699999999997089616954326629638671875,\n            \"volume_24h\": 15600,\n            \"high_24h\": 43890,\n            \"low_24h\": 42540\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Market by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/markets/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "markets",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single market by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"pair\": \"BTC\\/USDT\",\n    \"base_currency\": \"BTC\",\n    \"quote_currency\": \"USDT\",\n    \"last_price\": 43250.5,\n    \"bid\": 43248.300000000002910383045673370361328125,\n    \"ask\": 43252.699999999997089616954326629638671875,\n    \"volume_24h\": 15600,\n    \"high_24h\": 43890,\n    \"low_24h\": 42540\n}"
                        }
                    ]
                },
                {
                    "name": "Create Market",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"pair\": \"BTC\\/USDT\",\n    \"base_currency\": \"BTC\",\n    \"quote_currency\": \"USDT\",\n    \"last_price\": 43250.5,\n    \"bid\": 43248.300000000002910383045673370361328125,\n    \"ask\": 43252.699999999997089616954326629638671875,\n    \"volume_24h\": 15600,\n    \"high_24h\": 43890,\n    \"low_24h\": 42540\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/markets",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "markets"
                            ]
                        },
                        "description": "Create a new market"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"pair\": \"BTC\\/USDT\",\n    \"base_currency\": \"BTC\",\n    \"quote_currency\": \"USDT\",\n    \"last_price\": 43250.5,\n    \"bid\": 43248.300000000002910383045673370361328125,\n    \"ask\": 43252.699999999997089616954326629638671875,\n    \"volume_24h\": 15600,\n    \"high_24h\": 43890,\n    \"low_24h\": 42540\n}"
                        }
                    ]
                },
                {
                    "name": "Update Market",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"pair\": \"BTC\\/USDT\",\n    \"base_currency\": \"BTC\",\n    \"quote_currency\": \"USDT\",\n    \"last_price\": 43250.5,\n    \"bid\": 43248.300000000002910383045673370361328125,\n    \"ask\": 43252.699999999997089616954326629638671875,\n    \"volume_24h\": 15600,\n    \"high_24h\": 43890,\n    \"low_24h\": 42540\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/markets/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "markets",
                                "1"
                            ]
                        },
                        "description": "Update an existing market"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"pair\": \"BTC\\/USDT\",\n    \"base_currency\": \"BTC\",\n    \"quote_currency\": \"USDT\",\n    \"last_price\": 43250.5,\n    \"bid\": 43248.300000000002910383045673370361328125,\n    \"ask\": 43252.699999999997089616954326629638671875,\n    \"volume_24h\": 15600,\n    \"high_24h\": 43890,\n    \"low_24h\": 42540\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Market",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/markets/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "markets",
                                "1"
                            ]
                        },
                        "description": "Delete a market by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Market deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "News",
            "description": "Cryptocurrency news and updates",
            "item": [
                {
                    "name": "Get All News",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/news",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "news"
                            ]
                        },
                        "description": "Retrieve a paginated list of all news"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"title\": \"Bitcoin Surges Past $43K Amid Institutional Buying\",\n            \"summary\": \"Bitcoin price jumps 3% as institutional investors increase their holdings...\",\n            \"url\": \"https:\\/\\/cryptonews.com\\/news\\/btc-surge\",\n            \"image\": \"https:\\/\\/picsum.photos\\/600\\/400?random=news1\",\n            \"source\": \"CryptoNews\",\n            \"related_cryptocurrencies\": [\n                \"BTC\"\n            ],\n            \"published_at\": \"2024-01-22T08:30:00Z\"\n        },\n        {\n            \"title\": \"Bitcoin Surges Past $43K Amid Institutional Buying\",\n            \"summary\": \"Bitcoin price jumps 3% as institutional investors increase their holdings...\",\n            \"url\": \"https:\\/\\/cryptonews.com\\/news\\/btc-surge\",\n            \"image\": \"https:\\/\\/picsum.photos\\/600\\/400?random=news1\",\n            \"source\": \"CryptoNews\",\n            \"related_cryptocurrencies\": [\n                \"BTC\"\n            ],\n            \"published_at\": \"2024-01-22T08:30:00Z\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get New by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/news/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "news",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single new by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"title\": \"Bitcoin Surges Past $43K Amid Institutional Buying\",\n    \"summary\": \"Bitcoin price jumps 3% as institutional investors increase their holdings...\",\n    \"url\": \"https:\\/\\/cryptonews.com\\/news\\/btc-surge\",\n    \"image\": \"https:\\/\\/picsum.photos\\/600\\/400?random=news1\",\n    \"source\": \"CryptoNews\",\n    \"related_cryptocurrencies\": [\n        \"BTC\"\n    ],\n    \"published_at\": \"2024-01-22T08:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create New",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Bitcoin Surges Past $43K Amid Institutional Buying\",\n    \"summary\": \"Bitcoin price jumps 3% as institutional investors increase their holdings...\",\n    \"url\": \"https:\\/\\/cryptonews.com\\/news\\/btc-surge\",\n    \"image\": \"https:\\/\\/picsum.photos\\/600\\/400?random=news1\",\n    \"source\": \"CryptoNews\",\n    \"related_cryptocurrencies\": [\n        \"BTC\"\n    ],\n    \"published_at\": \"2024-01-22T08:30:00Z\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/news",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "news"
                            ]
                        },
                        "description": "Create a new new"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"title\": \"Bitcoin Surges Past $43K Amid Institutional Buying\",\n    \"summary\": \"Bitcoin price jumps 3% as institutional investors increase their holdings...\",\n    \"url\": \"https:\\/\\/cryptonews.com\\/news\\/btc-surge\",\n    \"image\": \"https:\\/\\/picsum.photos\\/600\\/400?random=news1\",\n    \"source\": \"CryptoNews\",\n    \"related_cryptocurrencies\": [\n        \"BTC\"\n    ],\n    \"published_at\": \"2024-01-22T08:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update New",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Bitcoin Surges Past $43K Amid Institutional Buying\",\n    \"summary\": \"Bitcoin price jumps 3% as institutional investors increase their holdings...\",\n    \"url\": \"https:\\/\\/cryptonews.com\\/news\\/btc-surge\",\n    \"image\": \"https:\\/\\/picsum.photos\\/600\\/400?random=news1\",\n    \"source\": \"CryptoNews\",\n    \"related_cryptocurrencies\": [\n        \"BTC\"\n    ],\n    \"published_at\": \"2024-01-22T08:30:00Z\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/news/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "news",
                                "1"
                            ]
                        },
                        "description": "Update an existing new"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"title\": \"Bitcoin Surges Past $43K Amid Institutional Buying\",\n    \"summary\": \"Bitcoin price jumps 3% as institutional investors increase their holdings...\",\n    \"url\": \"https:\\/\\/cryptonews.com\\/news\\/btc-surge\",\n    \"image\": \"https:\\/\\/picsum.photos\\/600\\/400?random=news1\",\n    \"source\": \"CryptoNews\",\n    \"related_cryptocurrencies\": [\n        \"BTC\"\n    ],\n    \"published_at\": \"2024-01-22T08:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete New",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/news/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "news",
                                "1"
                            ]
                        },
                        "description": "Delete a new by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"New deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Portfolios",
            "description": "User portfolio summary",
            "item": [
                {
                    "name": "Get All Portfolios",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/portfolios",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "portfolios"
                            ]
                        },
                        "description": "Retrieve a paginated list of all portfolios"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Robert Johnson\",\n            \"total_value_usd\": 125670.5,\n            \"total_invested_usd\": 110000,\n            \"profit_loss_usd\": 15670.5,\n            \"profit_loss_percentage\": 14.25,\n            \"holdings\": [\n                {\n                    \"symbol\": \"BTC\",\n                    \"amount\": 2.45000000000000017763568394002504646778106689453125,\n                    \"value_usd\": 105962.5\n                },\n                {\n                    \"symbol\": \"ETH\",\n                    \"amount\": 5.79999999999999982236431605997495353221893310546875,\n                    \"value_usd\": 13605.350000000000363797880709171295166015625\n                }\n            ]\n        },\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Robert Johnson\",\n            \"total_value_usd\": 125670.5,\n            \"total_invested_usd\": 110000,\n            \"profit_loss_usd\": 15670.5,\n            \"profit_loss_percentage\": 14.25,\n            \"holdings\": [\n                {\n                    \"symbol\": \"BTC\",\n                    \"amount\": 2.45000000000000017763568394002504646778106689453125,\n                    \"value_usd\": 105962.5\n                },\n                {\n                    \"symbol\": \"ETH\",\n                    \"amount\": 5.79999999999999982236431605997495353221893310546875,\n                    \"value_usd\": 13605.350000000000363797880709171295166015625\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Portfolio by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/portfolios/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "portfolios",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single portfolio by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"total_value_usd\": 125670.5,\n    \"total_invested_usd\": 110000,\n    \"profit_loss_usd\": 15670.5,\n    \"profit_loss_percentage\": 14.25,\n    \"holdings\": [\n        {\n            \"symbol\": \"BTC\",\n            \"amount\": 2.45000000000000017763568394002504646778106689453125,\n            \"value_usd\": 105962.5\n        },\n        {\n            \"symbol\": \"ETH\",\n            \"amount\": 5.79999999999999982236431605997495353221893310546875,\n            \"value_usd\": 13605.350000000000363797880709171295166015625\n        }\n    ]\n}"
                        }
                    ]
                },
                {
                    "name": "Create Portfolio",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"total_value_usd\": 125670.5,\n    \"total_invested_usd\": 110000,\n    \"profit_loss_usd\": 15670.5,\n    \"profit_loss_percentage\": 14.25,\n    \"holdings\": [\n        {\n            \"symbol\": \"BTC\",\n            \"amount\": 2.45000000000000017763568394002504646778106689453125,\n            \"value_usd\": 105962.5\n        },\n        {\n            \"symbol\": \"ETH\",\n            \"amount\": 5.79999999999999982236431605997495353221893310546875,\n            \"value_usd\": 13605.350000000000363797880709171295166015625\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/portfolios",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "portfolios"
                            ]
                        },
                        "description": "Create a new portfolio"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"total_value_usd\": 125670.5,\n    \"total_invested_usd\": 110000,\n    \"profit_loss_usd\": 15670.5,\n    \"profit_loss_percentage\": 14.25,\n    \"holdings\": [\n        {\n            \"symbol\": \"BTC\",\n            \"amount\": 2.45000000000000017763568394002504646778106689453125,\n            \"value_usd\": 105962.5\n        },\n        {\n            \"symbol\": \"ETH\",\n            \"amount\": 5.79999999999999982236431605997495353221893310546875,\n            \"value_usd\": 13605.350000000000363797880709171295166015625\n        }\n    ]\n}"
                        }
                    ]
                },
                {
                    "name": "Update Portfolio",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"total_value_usd\": 125670.5,\n    \"total_invested_usd\": 110000,\n    \"profit_loss_usd\": 15670.5,\n    \"profit_loss_percentage\": 14.25,\n    \"holdings\": [\n        {\n            \"symbol\": \"BTC\",\n            \"amount\": 2.45000000000000017763568394002504646778106689453125,\n            \"value_usd\": 105962.5\n        },\n        {\n            \"symbol\": \"ETH\",\n            \"amount\": 5.79999999999999982236431605997495353221893310546875,\n            \"value_usd\": 13605.350000000000363797880709171295166015625\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/portfolios/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "portfolios",
                                "1"
                            ]
                        },
                        "description": "Update an existing portfolio"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"total_value_usd\": 125670.5,\n    \"total_invested_usd\": 110000,\n    \"profit_loss_usd\": 15670.5,\n    \"profit_loss_percentage\": 14.25,\n    \"holdings\": [\n        {\n            \"symbol\": \"BTC\",\n            \"amount\": 2.45000000000000017763568394002504646778106689453125,\n            \"value_usd\": 105962.5\n        },\n        {\n            \"symbol\": \"ETH\",\n            \"amount\": 5.79999999999999982236431605997495353221893310546875,\n            \"value_usd\": 13605.350000000000363797880709171295166015625\n        }\n    ]\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Portfolio",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/portfolios/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "portfolios",
                                "1"
                            ]
                        },
                        "description": "Delete a portfolio by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Portfolio deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Price-history",
            "description": "Historical price data",
            "item": [
                {
                    "name": "Get All Price-history",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/price-history",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "price-history"
                            ]
                        },
                        "description": "Retrieve a paginated list of all price-history"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"cryptocurrency_symbol\": \"BTC\",\n            \"timestamp\": \"2024-01-20T00:00:00Z\",\n            \"price_usd\": 42540,\n            \"volume_24h\": 27800000000,\n            \"market_cap\": 834000000000\n        },\n        {\n            \"cryptocurrency_symbol\": \"BTC\",\n            \"timestamp\": \"2024-01-20T00:00:00Z\",\n            \"price_usd\": 42540,\n            \"volume_24h\": 27800000000,\n            \"market_cap\": 834000000000\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Price-history by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/price-history/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "price-history",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single price-history by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"timestamp\": \"2024-01-20T00:00:00Z\",\n    \"price_usd\": 42540,\n    \"volume_24h\": 27800000000,\n    \"market_cap\": 834000000000\n}"
                        }
                    ]
                },
                {
                    "name": "Create Price-history",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"timestamp\": \"2024-01-20T00:00:00Z\",\n    \"price_usd\": 42540,\n    \"volume_24h\": 27800000000,\n    \"market_cap\": 834000000000\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/price-history",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "price-history"
                            ]
                        },
                        "description": "Create a new price-history"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"timestamp\": \"2024-01-20T00:00:00Z\",\n    \"price_usd\": 42540,\n    \"volume_24h\": 27800000000,\n    \"market_cap\": 834000000000\n}"
                        }
                    ]
                },
                {
                    "name": "Update Price-history",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"timestamp\": \"2024-01-20T00:00:00Z\",\n    \"price_usd\": 42540,\n    \"volume_24h\": 27800000000,\n    \"market_cap\": 834000000000\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/price-history/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "price-history",
                                "1"
                            ]
                        },
                        "description": "Update an existing price-history"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"timestamp\": \"2024-01-20T00:00:00Z\",\n    \"price_usd\": 42540,\n    \"volume_24h\": 27800000000,\n    \"market_cap\": 834000000000\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Price-history",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/price-history/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "price-history",
                                "1"
                            ]
                        },
                        "description": "Delete a price-history by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Price-history deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Transactions",
            "description": "Buy, sell, and transfer transactions",
            "item": [
                {
                    "name": "Get All Transactions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/transactions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "transactions"
                            ]
                        },
                        "description": "Retrieve a paginated list of all transactions"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"transaction_hash\": \"0x3f4d2a1c8b5e9f6a3d2c1b4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4\",\n            \"user_id\": 1,\n            \"user_name\": \"Robert Johnson\",\n            \"type\": \"buy\",\n            \"cryptocurrency_symbol\": \"BTC\",\n            \"amount\": 0.25,\n            \"price_usd\": 43100,\n            \"total_usd\": 10775,\n            \"from_wallet\": \"USD Wallet\",\n            \"to_wallet\": \"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa\",\n            \"status\": \"confirmed\",\n            \"created_at\": \"2024-01-20T10:30:00Z\",\n            \"confirmed_at\": \"2024-01-20T10:35:00Z\"\n        },\n        {\n            \"transaction_hash\": \"0x3f4d2a1c8b5e9f6a3d2c1b4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4\",\n            \"user_id\": 1,\n            \"user_name\": \"Robert Johnson\",\n            \"type\": \"buy\",\n            \"cryptocurrency_symbol\": \"BTC\",\n            \"amount\": 0.25,\n            \"price_usd\": 43100,\n            \"total_usd\": 10775,\n            \"from_wallet\": \"USD Wallet\",\n            \"to_wallet\": \"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa\",\n            \"status\": \"confirmed\",\n            \"created_at\": \"2024-01-20T10:30:00Z\",\n            \"confirmed_at\": \"2024-01-20T10:35:00Z\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Transaction by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/transactions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "transactions",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single transaction by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"transaction_hash\": \"0x3f4d2a1c8b5e9f6a3d2c1b4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4\",\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"type\": \"buy\",\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"amount\": 0.25,\n    \"price_usd\": 43100,\n    \"total_usd\": 10775,\n    \"from_wallet\": \"USD Wallet\",\n    \"to_wallet\": \"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa\",\n    \"status\": \"confirmed\",\n    \"created_at\": \"2024-01-20T10:30:00Z\",\n    \"confirmed_at\": \"2024-01-20T10:35:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create Transaction",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"transaction_hash\": \"0x3f4d2a1c8b5e9f6a3d2c1b4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4\",\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"type\": \"buy\",\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"amount\": 0.25,\n    \"price_usd\": 43100,\n    \"total_usd\": 10775,\n    \"from_wallet\": \"USD Wallet\",\n    \"to_wallet\": \"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa\",\n    \"status\": \"confirmed\",\n    \"confirmed_at\": \"2024-01-20T10:35:00Z\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/transactions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "transactions"
                            ]
                        },
                        "description": "Create a new transaction"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"transaction_hash\": \"0x3f4d2a1c8b5e9f6a3d2c1b4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4\",\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"type\": \"buy\",\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"amount\": 0.25,\n    \"price_usd\": 43100,\n    \"total_usd\": 10775,\n    \"from_wallet\": \"USD Wallet\",\n    \"to_wallet\": \"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa\",\n    \"status\": \"confirmed\",\n    \"created_at\": \"2024-01-20T10:30:00Z\",\n    \"confirmed_at\": \"2024-01-20T10:35:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update Transaction",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"transaction_hash\": \"0x3f4d2a1c8b5e9f6a3d2c1b4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4\",\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"type\": \"buy\",\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"amount\": 0.25,\n    \"price_usd\": 43100,\n    \"total_usd\": 10775,\n    \"from_wallet\": \"USD Wallet\",\n    \"to_wallet\": \"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa\",\n    \"status\": \"confirmed\",\n    \"confirmed_at\": \"2024-01-20T10:35:00Z\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/transactions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "transactions",
                                "1"
                            ]
                        },
                        "description": "Update an existing transaction"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"transaction_hash\": \"0x3f4d2a1c8b5e9f6a3d2c1b4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4\",\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"type\": \"buy\",\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"amount\": 0.25,\n    \"price_usd\": 43100,\n    \"total_usd\": 10775,\n    \"from_wallet\": \"USD Wallet\",\n    \"to_wallet\": \"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa\",\n    \"status\": \"confirmed\",\n    \"created_at\": \"2024-01-20T10:30:00Z\",\n    \"confirmed_at\": \"2024-01-20T10:35:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Transaction",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/transactions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "transactions",
                                "1"
                            ]
                        },
                        "description": "Delete a transaction by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Transaction deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Users",
            "description": "Platform users",
            "item": [
                {
                    "name": "Get All Users",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/users",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "users"
                            ]
                        },
                        "description": "Retrieve a paginated list of all users"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"name\": \"Robert Johnson\",\n            \"email\": \"robert@crypto.com\",\n            \"password\": \"$2y$12$j1O8T17Lx7IK529rKa0gS.g\\/cfriqUZylGT9SKKKZ9aAXMTHr828W\",\n            \"api_token\": \"466c251a43d04a3dd83c5464b55c259c621b525a643f7b84ccb47ea3b39243e0\",\n            \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=51\",\n            \"kyc_verified\": true,\n            \"joined_at\": \"2023-06-15\",\n            \"total_balance_usd\": 125670.5,\n            \"wallets_count\": 5\n        },\n        {\n            \"name\": \"Robert Johnson\",\n            \"email\": \"robert@crypto.com\",\n            \"password\": \"$2y$12$j1O8T17Lx7IK529rKa0gS.g\\/cfriqUZylGT9SKKKZ9aAXMTHr828W\",\n            \"api_token\": \"466c251a43d04a3dd83c5464b55c259c621b525a643f7b84ccb47ea3b39243e0\",\n            \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=51\",\n            \"kyc_verified\": true,\n            \"joined_at\": \"2023-06-15\",\n            \"total_balance_usd\": 125670.5,\n            \"wallets_count\": 5\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get User by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/users/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "users",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single user by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Robert Johnson\",\n    \"email\": \"robert@crypto.com\",\n    \"password\": \"$2y$12$j1O8T17Lx7IK529rKa0gS.g\\/cfriqUZylGT9SKKKZ9aAXMTHr828W\",\n    \"api_token\": \"466c251a43d04a3dd83c5464b55c259c621b525a643f7b84ccb47ea3b39243e0\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=51\",\n    \"kyc_verified\": true,\n    \"joined_at\": \"2023-06-15\",\n    \"total_balance_usd\": 125670.5,\n    \"wallets_count\": 5\n}"
                        }
                    ]
                },
                {
                    "name": "Create User",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Robert Johnson\",\n    \"email\": \"robert@crypto.com\",\n    \"password\": \"$2y$12$j1O8T17Lx7IK529rKa0gS.g\\/cfriqUZylGT9SKKKZ9aAXMTHr828W\",\n    \"api_token\": \"466c251a43d04a3dd83c5464b55c259c621b525a643f7b84ccb47ea3b39243e0\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=51\",\n    \"kyc_verified\": true,\n    \"joined_at\": \"2023-06-15\",\n    \"total_balance_usd\": 125670.5,\n    \"wallets_count\": 5\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/users",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "users"
                            ]
                        },
                        "description": "Create a new user"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Robert Johnson\",\n    \"email\": \"robert@crypto.com\",\n    \"password\": \"$2y$12$j1O8T17Lx7IK529rKa0gS.g\\/cfriqUZylGT9SKKKZ9aAXMTHr828W\",\n    \"api_token\": \"466c251a43d04a3dd83c5464b55c259c621b525a643f7b84ccb47ea3b39243e0\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=51\",\n    \"kyc_verified\": true,\n    \"joined_at\": \"2023-06-15\",\n    \"total_balance_usd\": 125670.5,\n    \"wallets_count\": 5\n}"
                        }
                    ]
                },
                {
                    "name": "Update User",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Robert Johnson\",\n    \"email\": \"robert@crypto.com\",\n    \"password\": \"$2y$12$j1O8T17Lx7IK529rKa0gS.g\\/cfriqUZylGT9SKKKZ9aAXMTHr828W\",\n    \"api_token\": \"466c251a43d04a3dd83c5464b55c259c621b525a643f7b84ccb47ea3b39243e0\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=51\",\n    \"kyc_verified\": true,\n    \"joined_at\": \"2023-06-15\",\n    \"total_balance_usd\": 125670.5,\n    \"wallets_count\": 5\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/users/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "users",
                                "1"
                            ]
                        },
                        "description": "Update an existing user"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Robert Johnson\",\n    \"email\": \"robert@crypto.com\",\n    \"password\": \"$2y$12$j1O8T17Lx7IK529rKa0gS.g\\/cfriqUZylGT9SKKKZ9aAXMTHr828W\",\n    \"api_token\": \"466c251a43d04a3dd83c5464b55c259c621b525a643f7b84ccb47ea3b39243e0\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=51\",\n    \"kyc_verified\": true,\n    \"joined_at\": \"2023-06-15\",\n    \"total_balance_usd\": 125670.5,\n    \"wallets_count\": 5\n}"
                        }
                    ]
                },
                {
                    "name": "Delete User",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/users/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "users",
                                "1"
                            ]
                        },
                        "description": "Delete a user by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"User deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Wallets",
            "description": "User cryptocurrency wallets",
            "item": [
                {
                    "name": "Get All Wallets",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/wallets",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "wallets"
                            ]
                        },
                        "description": "Retrieve a paginated list of all wallets"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Robert Johnson\",\n            \"cryptocurrency_id\": 1,\n            \"cryptocurrency_symbol\": \"BTC\",\n            \"address\": \"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa\",\n            \"balance\": 2.45000000000000017763568394002504646778106689453125,\n            \"balance_usd\": 105962.5,\n            \"created_at\": \"2023-06-15T10:00:00Z\"\n        },\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Robert Johnson\",\n            \"cryptocurrency_id\": 1,\n            \"cryptocurrency_symbol\": \"BTC\",\n            \"address\": \"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa\",\n            \"balance\": 2.45000000000000017763568394002504646778106689453125,\n            \"balance_usd\": 105962.5,\n            \"created_at\": \"2023-06-15T10:00:00Z\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Wallet by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/wallets/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "wallets",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single wallet by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"cryptocurrency_id\": 1,\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"address\": \"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa\",\n    \"balance\": 2.45000000000000017763568394002504646778106689453125,\n    \"balance_usd\": 105962.5,\n    \"created_at\": \"2023-06-15T10:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create Wallet",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"cryptocurrency_id\": 1,\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"address\": \"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa\",\n    \"balance\": 2.45000000000000017763568394002504646778106689453125,\n    \"balance_usd\": 105962.5\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/wallets",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "wallets"
                            ]
                        },
                        "description": "Create a new wallet"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"cryptocurrency_id\": 1,\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"address\": \"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa\",\n    \"balance\": 2.45000000000000017763568394002504646778106689453125,\n    \"balance_usd\": 105962.5,\n    \"created_at\": \"2023-06-15T10:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update Wallet",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"cryptocurrency_id\": 1,\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"address\": \"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa\",\n    \"balance\": 2.45000000000000017763568394002504646778106689453125,\n    \"balance_usd\": 105962.5\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/wallets/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "wallets",
                                "1"
                            ]
                        },
                        "description": "Update an existing wallet"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Robert Johnson\",\n    \"cryptocurrency_id\": 1,\n    \"cryptocurrency_symbol\": \"BTC\",\n    \"address\": \"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa\",\n    \"balance\": 2.45000000000000017763568394002504646778106689453125,\n    \"balance_usd\": 105962.5,\n    \"created_at\": \"2023-06-15T10:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Wallet",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/crypto/wallets/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "crypto",
                                "wallets",
                                "1"
                            ]
                        },
                        "description": "Delete a wallet by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Wallet deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        }
    ],
    "variable": [
        {
            "key": "baseUrl",
            "value": "https://jsonvibe.com",
            "type": "string"
        },
        {
            "key": "token",
            "value": "466c251a43d04a3dd83c5464b55c259c621b525a643f7b84ccb47ea3b39243e0",
            "type": "string"
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "token",
                "value": "{{token}}",
                "type": "string"
            }
        ]
    }
}