{"id":26500103,"url":"https://github.com/marco5dev/cybertools","last_synced_at":"2026-05-09T19:32:05.097Z","repository":{"id":281671781,"uuid":"940309051","full_name":"Marco5dev/CyberTools","owner":"Marco5dev","description":null,"archived":false,"fork":false,"pushed_at":"2025-04-17T00:25:09.000Z","size":159,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-25T19:58:14.840Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://cyber-tools-beryl.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Marco5dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-28T00:36:32.000Z","updated_at":"2025-04-17T00:25:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"f53cacb8-cbcc-4cb3-9c47-ef46a204d0dc","html_url":"https://github.com/Marco5dev/CyberTools","commit_stats":null,"previous_names":["marco5dev/cybertools"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Marco5dev/CyberTools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Marco5dev%2FCyberTools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Marco5dev%2FCyberTools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Marco5dev%2FCyberTools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Marco5dev%2FCyberTools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Marco5dev","download_url":"https://codeload.github.com/Marco5dev/CyberTools/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Marco5dev%2FCyberTools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32832895,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-20T15:28:44.591Z","updated_at":"2026-05-09T19:32:05.086Z","avatar_url":"https://github.com/Marco5dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DevTools API Usage Examples\n\n### JSON Tools API Examples [[JSON Formatter]]\n\n```bash\n# 1. Format JSON\ncurl -X POST http://localhost:3000/api/v1/json/format \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"json\": {\"name\": \"test\", \"nested\": {\"value\": 123}},\n    \"spaces\": 2,\n    \"minify\": false\n  }'\n\n# 2. Validate JSON\ncurl -X POST http://localhost:3000/api/v1/json/validate \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"json\": \"{\\\"name\\\": \\\"test\\\", \\\"value\\\": 123}\"\n  }'\n```\n\n### UUID Tools API Examples [[UUID Generator]]\n\n```bash\n# 1. Generate UUID v4\ncurl http://localhost:3000/api/v1/uuid/v4\n\n# 2. Generate UUID v1\ncurl http://localhost:3000/api/v1/uuid/v1\n\n# 3. Validate UUID\ncurl -X POST http://localhost:3000/api/v1/uuid/validate \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"uuid\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }'\n```\n\n### Time Tools API Examples [[Timestamp Converter]]\n\n```bash\n# 1. Convert Timestamp to Date\ncurl -X POST http://localhost:3000/api/v1/time/convert \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"input\": \"1677686400000\",\n    \"operation\": \"toDate\",\n    \"timezone\": \"America/New_York\"\n  }'\n\n# 2. Convert Date to Timestamp\ncurl -X POST http://localhost:3000/api/v1/time/convert \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"input\": \"2023-03-01T12:00:00Z\",\n    \"operation\": \"toTimestamp\"\n  }'\n\n# 3. Get Current Time\ncurl \"http://localhost:3000/api/v1/time/now?timezone=Europe/London\"\n\n# 4. List Available Timezones\ncurl http://localhost:3000/api/v1/time/timezones\n```\n\n### Encoding Tools API Examples [[Base64 Encoder]] \u0026 [[URL Encoder]]\n\n```bash\n# 1. Base64 Encode\ncurl -X POST http://localhost:3000/api/v1/encoding/base64 \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"input\": \"Hello, World!\",\n    \"operation\": \"encode\"\n  }'\n\n# 2. Base64 Decode\ncurl -X POST http://localhost:3000/api/v1/encoding/base64 \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"input\": \"SGVsbG8sIFdvcmxkIQ==\",\n    \"operation\": \"decode\"\n  }'\n\n# 3. URL Full Encode\ncurl -X POST http://localhost:3000/api/v1/encoding/url \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"url\": \"https://example.com/path?param=Hello World!\",\n    \"operation\": \"encode\",\n    \"mode\": \"full\"\n  }'\n\n# 4. URL Component Encode\ncurl -X POST http://localhost:3000/api/v1/encoding/url \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"url\": \"Hello World!\",\n    \"operation\": \"encode\",\n    \"mode\": \"component\"\n  }'\n\n# 5. URL Decode\ncurl -X POST http://localhost:3000/api/v1/encoding/url \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"url\": \"https://example.com/path?param=Hello%20World%21\",\n    \"operation\": \"decode\"\n  }'\n```\n\n### Root API Example \n\n```bash\n# Get API Information\ncurl http://localhost:3000/api/v1\n```\n\nEach example includes:\n\n- Full curl command\n- Required headers\n- Request body (if needed)\n- Correct endpoint path\n- Required parameters\n\nYou can test these endpoints using:\n\n- cURL in command line\n- Postman\n- Any HTTP client that supports JSON\n\nRemember to:\n\n1. Start the server first\n2. Use the correct port number\n3. Include Content-Type header for POST requests\n4. Properly escape JSON in curl commands\n5. URL encode special characters in URLs\n\n**Related:** [[API Authentication]]\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarco5dev%2Fcybertools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarco5dev%2Fcybertools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarco5dev%2Fcybertools/lists"}