{"id":26664514,"url":"https://github.com/luckdataio/luckdata-douyin-api-free","last_synced_at":"2026-01-05T23:03:20.999Z","repository":{"id":279913619,"uuid":"940417930","full_name":"luckdataio/LuckData-Douyin-API-Free","owner":"luckdataio","description":"By using LuckData Douyin API, you can easily get hot video list, hot challenge list, total ranking list, user info, retweets, likes and comments, trending and so on.","archived":false,"fork":false,"pushed_at":"2025-02-28T06:24:57.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-28T13:39:01.547Z","etag":null,"topics":["api","douyin","douyin-api","douyinapi"],"latest_commit_sha":null,"homepage":"https://luckdata.io/marketplace/detail/douyin-API","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/luckdataio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-02-28T06:18:58.000Z","updated_at":"2025-02-28T06:25:43.000Z","dependencies_parsed_at":"2025-03-01T08:15:29.187Z","dependency_job_id":null,"html_url":"https://github.com/luckdataio/LuckData-Douyin-API-Free","commit_stats":null,"previous_names":["luckdataio/luckdata-douyin-api-free"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luckdataio%2FLuckData-Douyin-API-Free","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luckdataio%2FLuckData-Douyin-API-Free/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luckdataio%2FLuckData-Douyin-API-Free/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luckdataio%2FLuckData-Douyin-API-Free/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/luckdataio","download_url":"https://codeload.github.com/luckdataio/LuckData-Douyin-API-Free/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245500940,"owners_count":20625683,"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","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","douyin","douyin-api","douyinapi"],"created_at":"2025-03-25T16:35:53.021Z","updated_at":"2026-01-05T23:03:20.929Z","avatar_url":"https://github.com/luckdataio.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# LuckData-Douyin-API-Free\nBy using LuckData Douyin API, you can easily get hot video list, hot challenge list, total ranking list, user info, retweets, likes and comments, trending and so on.\n# How to Use\nStep 1: Click “Get Started”\nStep 2: Purchase a plan and complete the payment\nStep 3: Choose your preferred run mode\nStep 4: Click \"Test Endpoint\"\n# How to get a free Luckdata walmart API key?\nRegister for a Luckdata account and apply for the Douyin API. Luckdata will grant 100 free points for one month, which can be used with a limit of one request per second. If you need higher points and more request capacity, a paid version is required. Alternatively, you can wait for the next month to receive another 100 free points for use.\n# GET Douyin rankings Code Snippets\n## python\n\u003cpre\u003eimport requests\n\nheaders = {\n    'X-Luckdata-Api-Key': 'your_luckdata_api_key'\n}\n\njson_data={}\n\nresponse = requests.get(\n    'https://luckdata.io/api/douyin-API/get_xv5p?city=110000\u0026type=rise_heat\u0026end_date=20241224\u0026page_size=10\u0026start_date=20241223',\n    headers=headers,\n    \n)\nprint(response.json())\u003c/pre\u003e\n## Java\n\u003cpre\u003eimport java.io.IOException;\nimport java.net.URI;\nimport java.net.http.HttpClient;\nimport java.net.http.HttpRequest;\nimport java.net.http.HttpResponse;\n\nHttpClient client = HttpClient.newHttpClient();\n\nHttpRequest request = HttpRequest.newBuilder()\n    .uri(URI.create(\"https://luckdata.io/api/douyin-API/get_xv5p?city=110000\u0026type=rise_heat\u0026end_date=20241224\u0026page_size=10\u0026start_date=20241223\"))\n    .GET()\n    \n    .setHeader(\"X-Luckdata-Api-Key\", \"your_luckdata_api_key\")\n    .build();\n\nHttpResponse\u003cString\u003e response = client.send(request, HttpResponse.BodyHandlers.ofString());\u003c/pre\u003e\n## go\n\u003cpre\u003epackage main\n\nimport (\n  \"fmt\"\n  \"io\"\n  \"log\"\n  \"net/http\"\n  \"strings\"\n)\n\nfunc main() {\n  client := \u0026http.Client{}\n  var data = nil\n  req, err := http.NewRequest(\"GET\", \"https://luckdata.io/api/douyin-API/get_xv5p?city=110000\u0026type=rise_heat\u0026end_date=20241224\u0026page_size=10\u0026start_date=20241223\", data)\n  if err != nil {\n    log.Fatal(err)\n  }\n  \n  req.Header.Set(\"X-Luckdata-Api-Key\", \"your_luckdata_api_key\")\n  resp, err := client.Do(req)\n  if err != nil {\n    log.Fatal(err)\n  }\n  defer resp.Body.Close()\n  bodyText, err := io.ReadAll(resp.Body)\n  if err != nil {\n    log.Fatal(err)\n  }\n  fmt.Printf(\"%s\\n\", bodyText)\n}\u003c/pre\u003e\n## shell\n\u003cpre\u003ecurl -X GET \"https://luckdata.io/api/douyin-API/get_xv5p?city=110000\u0026type=rise_heat\u0026end_date=20241224\u0026page_size=10\u0026start_date=20241223\"  -H \"X-Luckdata-Api-Key\":\"your_luckdata_api_key\" \u003c/pre\u003e\n\nmroe\nFor more information about luckdata Douyin API, please click:\u003ca href=\"https://luckdata.io/marketplace/detail/douyin-API\"\u003eluckdata Douyin API\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluckdataio%2Fluckdata-douyin-api-free","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fluckdataio%2Fluckdata-douyin-api-free","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluckdataio%2Fluckdata-douyin-api-free/lists"}