{"id":22544018,"url":"https://github.com/vanillaiice/snaparser_server","last_synced_at":"2025-10-30T05:44:52.471Z","repository":{"id":230334994,"uuid":"778829560","full_name":"vanillaiice/snaparser_server","owner":"vanillaiice","description":"Server that handles parsing of snapchat history files.","archived":false,"fork":false,"pushed_at":"2024-04-04T07:55:22.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-28T08:15:36.919Z","etag":null,"topics":["api","go","golang","server","snapchat"],"latest_commit_sha":null,"homepage":"https://snaparser.vanillaiice.xyz/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vanillaiice.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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}},"created_at":"2024-03-28T13:45:25.000Z","updated_at":"2024-04-08T22:37:22.000Z","dependencies_parsed_at":"2024-04-04T08:43:27.000Z","dependency_job_id":null,"html_url":"https://github.com/vanillaiice/snaparser_server","commit_stats":null,"previous_names":["vanillaiice/snaparser-server"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/vanillaiice/snaparser_server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vanillaiice%2Fsnaparser_server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vanillaiice%2Fsnaparser_server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vanillaiice%2Fsnaparser_server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vanillaiice%2Fsnaparser_server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vanillaiice","download_url":"https://codeload.github.com/vanillaiice/snaparser_server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vanillaiice%2Fsnaparser_server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278802801,"owners_count":26048566,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"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":["api","go","golang","server","snapchat"],"created_at":"2024-12-07T14:05:57.640Z","updated_at":"2025-10-07T15:50:12.404Z","avatar_url":"https://github.com/vanillaiice.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Snaparser Server\n\nSnaparser server is a server that handles parsing of snapchat history files. \n\n# Installation\n\n## Go install\n\n```\n$ go install github.com/vanillaiice/snaparser_server/cmd/snaparser_server@latest\n```\n\n## Docker\n\n### Pull image\n\n```sh\n$ docker pull vanillaiice/snaparser_server:latest\n```\n\n### Build image\n\n```\n$ git clone https://github.com/snaparser_server\n$ cd snaparser_server\n$ docker build -t snaparser_server .\n```\n\n# Usage\n\nTo download your chat history data, follow the guide available on snapchat's \n[website](https://help.snapchat.com/hc/en-us/articles/7012305371156-How-do-I-download-my-data-from-Snapchat-). \nYou can then do the following:\n\n## Using go\n\n```sh\n# Generic Usage\n$ snaparser_server [global options] command [command options]\n\n# Run the server\n$ snaparser_server --http --endpoint \"/parse\"\n# or pass a config file in TOML format\n$ snaparser_server --load config.toml\n\n# You can use curl to communicate with the server\n# and parse your snapchat history file.\n$ curl -F 'file=@chat_history.json;type=application/json' http://localhost:8888/parse -o chats.zip\n```\n\n## Using Docker\n\n```sh\n# run server with http and enable logging\n$ docker run --rm -p 8888:8888 vanillaiice/snaparser_server -t -g\n\n# run server with https on custom port\n$ docker run --rm -p 1234:1234 -v $PWD/server.crt:/server.crt -v $PWD/server.key:/server.key vanillaiice/snaparser_server -c server.crt -k server.key -g -p 1234\n\n# run server and pass a toml config file\n$ docker run --rm -p 8888:8888 -v $PWD/config.toml:/config.toml vanillaiice/snaparser_server --load config.toml\n\n# cleaner way to pass files\n$ mkdir data \u0026\u0026 cp config.toml server.key server.crt data\n$ docker run --rm -p 8888:8888 -v $PWD/data:/data vanillaiice/snaparser_server --load data/config.toml\n```\n\n# Flags\n\n```sh\nNAME:\n   snaparser_server - backend server for snaparser\n\nUSAGE:\n   snaparser_server [global options] command [command options]\n\nVERSION:\n   0.0.1\n\nAUTHOR:\n   vanillaiice \u003cvanillaiice1@proton.me\u003e\n\nCOMMANDS:\n   help, h  Shows a list of commands or help for one command\n\nGLOBAL OPTIONS:\n   --allowed-origins ORIGIN(S), -o ORIGIN(S) [ --allowed-origins ORIGIN(S), -o ORIGIN(S) ]  allow ORIGIN(S)\n   --allowed-methods METHOD(S), -m METHOD(S) [ --allowed-methods METHOD(S), -m METHOD(S) ]  allow METHOD(S) (default: \"POST\")\n   --port PORT, -p PORT                                                                     listen on PORT (default: 8888)\n   --endpoint PATH, -e PATH                                                                 upload endpoint PATH (default: \"/upload\")\n   --limiter value, -i value                                                                HTTP rate limiter type (none, lenient, normal, strict) (default:\n \"none\")\n   --log, -g                                                                                enable logging (default: false)\n   --http, -t                                                                               use HTTP instead of HTTPS (default: false)\n   --key-file PATH, -k PATH                                                                 SSL secret key file PATH\n   --cert-file PATH, -c PATH                                                                SSL certificate file PATH\n   --load FILE, -l FILE                                                                     load TOML configuration from FILE\n   --help, -h                                                                               show help\n   --version, -v                                                                            print the version\n```\n\n# Author\n\nvanillaiice\n\n# License\n\nGPLv3\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvanillaiice%2Fsnaparser_server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvanillaiice%2Fsnaparser_server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvanillaiice%2Fsnaparser_server/lists"}