# Api_List **Repository Path**: Jruing/Api_List ## Basic Information - **Project Name**: Api_List - **Description**: 学习爬虫过程中遇到的各种api - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-04-28 - **Last Updated**: 2020-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Api_List #### 介绍 学习爬虫过程中遇到的各种api # API大全 ## 日常实用类 ### 手机归属地查询 > 查询手机号码归属地 ```python https://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=telphoneNumber ``` 请求方式 GET | 参数名称 | 必选参数 | 参数类型 | | -------------- | -------- | -------- | | telphoneNumber | 是 | String | 返回结果 ```json __GetZoneResult_ = { mts:'1388888', province:'云南', catName:'中国移动', telString:'13888888888', areaVid:'30515', ispVid:'3236139', carrier:'云南移动' } ``` ___ ### IP地址查询 > 查询IP地址 ```python http://ip.taobao.com/service/getIpInfo.php?ip=IPaddress ``` 请求方式 GET | 参数名称 | 必选参数 | 参数类型 | | :-------: | :------: | :------: | | IPaddress | 是 | String | 返回结果 ```json { code: 0, data: { ip: "63.223.108.42", country: "美国", area: "", region: "华盛顿", city: "西雅图", county: "XX", isp: "电讯盈科", country_id: "US", area_id: "", region_id: "US_147", city_id: "US_1107", county_id: "xx", isp_id: "3000107" } } ``` ___ ### 通过经纬度查询实际地理位置 > 通过经纬度查询实际地理位置 ```python https://ditu.amap.com/service/regeo?longitude=lng&latitude=lat ``` 请求方式 GET | 参数名称 | 必选参数 | 参数类型 | | :------: | :------: | :------: | | lng | 是 | String | | lat | 是 | String | 返回结果 ```json { status: "1", data: { province: "江苏省", cross_list: [], code: "1", tel: "0512", cityadcode: "320500", areacode: "0512", timestamp: "1554800765.06", sea_area: { adcode: "", name: "" }, pos: "在陆家镇人民政府附近, 在绿溪路旁边, 靠近联谊路--绿溪路路口", road_list: [], hn: "20号", result: "true", message: "Successful.", desc: "江苏省,苏州市,昆山市", city: "苏州市", districtadcode: "320583", district: "昆山市", countrycode: "CN", country: "中国", provinceadcode: "320000", version: "2.0-3.0.9092.1828", adcode: "320583", poi_list: [] } } ``` ___ ### QQ头像昵称获取 > QQ头像获取接口 ```python http://users.qzone.qq.com/fcg-bin/cgi_get_portrait.fcg?uins=QQNumber ``` 请求方式 GET | 请求参数 | 必选参数 | 参数类型 | | -------- | -------- | -------- | | QQNumber | 是 | String | 返回结果 ```python { 1099301992: [ "http://qlogo1.store.qq.com/qzone/1099301992/1099301992/100",# 头像url 29817, -1, 0, 0, 0, "Jruing", NickName 0 ] } ``` ___