Full use of https!
当前接口累计调用35278次 今日调用193次
支持邮箱,QQ号,LOL,手机号,身份证 Time:2023-04-28 18:48:31
接口地址: https://api.hotaru.icu/api/sed
返回类型: application/json
请求方式: GET/POST
请求示例: https://api.hotaru.icu/api/sed?msg=2857262080&format=json
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
msg | 是 | string | 查询值,支持邮箱,QQ号,LOL,手机号,身份证 |
format | 否 | string | 返回格式,选填json或text,默认json |
返回参数说明:
名称 | 类型 | 说明 |
---|---|---|
takeTime | number | 花费时间,单位:s |
count | number | 数据量 |
phone | string | 手机号 |
location | string | 运营商 |
id | string | LOLid |
area | string | LOL区域 |
string | QQ号 |
返回示例:
{
"code": 500,
"message": "success",
"takeTime": 2.4121599197387695,
"count": 3,
"data": {
"qq": "2857262080",
"phone": "17373522664",
"location": "湖南省郴州市电信"
}
}
状态码说明:
名称 | 说明 |
---|---|
500 | success |
501 | error |
调用示例:
PHP:<?php $result = file_get_contents("https://api.hotaru.icu/api/sed?msg=2857262080&format=json"); var_dump($result); ?>
JavaScript:const url = "https://api.hotaru.icu/api/sed?msg=2857262080&format=json"; fetch(url) .then(res => res.json) .(res => { console.log(res); });
Python:import requests url="https://api.hotaru.icu/api/sed?msg=2857262080&format=json" payload={} r = requests.get(url,params=payload) print(r);
lua:local httputil = HttpUtil() local url = "https://api.hotaru.icu/api/sed?msg=2857262080&format=json" local resStr local res,code = httputil.httpPost(url,str) if code ~= 200 then ngx.log(ngx.WARN,"code:"..code) return resStr end resStr = res
C/C++:#include <iostream> #include <string> #include "curl/curl.h" using namespace std; #pragma comment(lib, "ws2_32.lib") #pragma comment(lib, "wldap32.lib") #pragma comment(lib, "libcurl.lib") size_t req_reply(void *ptr, size_t size, size_t nmemb, void *stream) { cout << "----->reply" << endl; string *str = (string*)stream; cout << *str << endl; (*str).append((char*)ptr, size*nmemb); return size * nmemb; } CURLcode curl_get_req(const std::string &url, std::string &response) { CURL *curl = curl_easy_init(); CURLcode res; if (curl) { curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false); curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, false); curl_easy_setopt(curl, CURLOPT_VERBOSE, 1); curl_easy_setopt(curl, CURLOPT_READFUNCTION, NULL); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, req_reply); curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&response); curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1); curl_easy_setopt(curl, CURLOPT_HEADER, 1); curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 3); curl_easy_setopt(curl, CURLOPT_TIMEOUT, 3); res = curl_easy_perform(curl); } curl_easy_cleanup(curl); return res; } int main() { curl_global_init(CURL_GLOBAL_ALL); string getUrlStr = "https://api.hotaru.icu/api/sed?msg=2857262080&format=json"; string getResponseStr; auto res = curl_get_req(getUrlStr, getResponseStr); if (res != CURLE_OK) cerr << "curl_easy_perform() failed: " + string(curl_easy_strerror(res)) << endl; else cout << getResponseStr << endl; curl_global_cleanup(); system("pause"); return 0; }
Java:package com.jl.chromeTest; import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import java.net.URLConnection; import java.nio.charset.StandardCharsets; public class Test { @org.junit.Test public void test() throws Exception{ String result = get("https://api.hotaru.icu/api/sed?msg=2857262080&format=json"); System.out.println("result====="+result); } public String get(String url) throws Exception { String content = null; URLConnection urlConnection = new URL(url).openConnection(); HttpURLConnection connection = (HttpURLConnection) urlConnection; connection.setRequestMethod("GET"); connection.connect(); int responseCode = connection.getResponseCode(); if (responseCode == HttpURLConnection.HTTP_OK) { BufferedReader bufferedReader = new BufferedReader(new InputStreamReader (connection.getInputStream(), StandardCharsets.UTF_8)); StringBuilder bs = new StringBuilder(); String l; while ((l = bufferedReader.readLine()) != null) { bs.append(l).append("\n"); } content = bs.toString(); } return content; } }
CS:HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://api.hotaru.icu/api/sed?msg=2857262080&format=json"); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); String result = new StreamReader(response.GetResponseStream()).ReadToEnd();
Golang:func httpGet() { resp, err := http.Get("https://api.hotaru.icu/api/sed?msg=2857262080&format=json") if err != nil { } defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body) if err != nil { } fmt.Println(string(body)) }
EPL:.版本 2 .局部变量 待返回, 文本型 待返回 = 编码_utf8到gb2312 (到文本 (网页_访问_对象 (“https://api.hotaru.icu/api/sed?msg=2857262080&format=json”)))