公共 API 整理

IP相关

查询当前公网IP

CURL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
curl myip.ipip.net
# 当前 IP:58.240.94.149 来自于:中国 江苏 南京 联通

curl ip-api.com
{
"status" : "success",
"continent" : "Asia",
"continentCode": "AS",
"country" : "China",
"countryCode" : "CN",
"region" : "JS",
"regionName" : "Jiangsu",
"city" : "Nanjing",
"district" : "",
"zip" : "",
"lat" : 32.0617,
"lon" : 118.7778,
"timezone" : "Asia/Shanghai",
"offset" : 28800,
"currency" : "CNY",
"isp" : "CNC Group Jiangsu province network",
"org" : "",
"as" : "AS4837 CHINA UNICOM China169 Backbone",
"asname" : "CHINA169-Backbone",
"mobile" : false,
"proxy" : false,
"hosting" : false,
"query" : "58.240.94.149"
}

# JSON 版本
curl myip.ipip.net/json
curl ip-api.com/json

查询指定IP信息

CURL
1
2
curl ip-api.com/[ip]
curl ip-api.com/json/[ip]

大文件下载测速链接

来源 下载链接
Bandwagon 100mb.bin
nForce 100mb.bin

Leetcode

查询「每日一题」

POST https://leetcode-cn.com/graphql

REQUEST - graphql
1
2
3
4
5
6
7
8
query questionOfToday {
todayRecord {
question {
questionFrontendId
questionTitleSlug
}
}
}
RESPONSE
1
2
3
4
5
6
7
8
9
10
11
12
{
"data": {
"todayRecord": [
{
"question": {
"questionFrontendId": "1047",
"questionTitleSlug": "remove-all-adjacent-duplicates-in-string"
}
}
]
}
}
CURL
1
2
3
curl --location --request POST 'https://leetcode-cn.com/graphql' \
--header 'Content-Type: application/json' \
--data-raw '{ "query": "query questionOfToday { todayRecord { question { questionFrontendId questionTitleSlug }}}" }'

其他资源

  • https://github.com/public-apis/public-apis
    这是一个国外开源的仓库,里面包含了大量国外的公共 API 资源:
    public-apis toc
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    - Animals
    - Anime
    - Anti-Malware
    - Art & Design
    - Books
    - Business
    - Calendar
    - Cloud Storage & File Sharing
    - Continuous Integration
    - Cryptocurrency
    - Currency Exchange
    - Data Validation
    - Development
    - Dictionaries
    - Documents & Productivity
    - Environment
    - Events
    - Finance
    - Food & Drink
    - Games & Comics
    - Geocoding
    - Government
    - Health
    - Jobs
    - Machine Learning
    - Music
    - News
    - Open Data
    - Open Source Projects
    - Patent
    - Personality
    - Photography
    - Science & Math
    - Security
    - Shopping
    - Social
    - Sports & Fitness
    - Test Data
    - Text Analysis
    - Tracking
    - Transportation
    - URL Shorteners
    - Vehicle
    - Video
    - Weather
Posted on

2021-03-17

Updated on

2021-03-17

Licensed under

Comments