简要描述

  • 调用接口查看公司列表

接口版本

版本号 制定人 制定日期 修订日期
V 1.0 xxxx-xx-xx

请求URL:

请求方式:

  • GET

请求参数:

参数名 是否必须 类型 说明
access_token string 获取到的授权码access_token
keyword string 搜索关键字(如:爱家家庭服务)
num string 每页显示条数,留空默认每页10条,控制了每页最多可显示20条
page string 查询第几页数据,留空默认第1页,控制最多翻10页,建议补全关键字

返回示例:

正确时返回一:

  1. {
  2. "code": 200,
  3. "msg": "查询成功!",
  4. "data": {
  5. "companys": [
  6. {
  7. "urlcode": "e2b1498a29e228129a1c1b911e5811ee",
  8. "company_name": "广州市正新人力资源服务有限公司潮州分公司",
  9. "province": "广东",
  10. "city": "潮州市",
  11. "area": null,
  12. "unified_social_credit_code": "91445100354627855T",
  13. "legal_representative": "卢楚云",
  14. "registered_capital": "",
  15. "phone_number": "0768-3996808",
  16. "registered_address": "潮州市枫溪区瓷兴路枫溪商城八栋143号铺",
  17. "is_authentication": null,//是否已认领
  18. "platform": null,//使用平台数
  19. "association": null,//加入协会数
  20. "grade": null,//企业等级
  21. "haoping": null,//好评数
  22. "zhongping": null,//中评数
  23. "chaping": null,//差评数
  24. "tousu": null//投诉数
  25. },
  26. {
  27. "urlcode": "66549629394d913dc3d45a8078ee1624",
  28. "company_name": "广州市开物物业管理有限公司潮州分公司",
  29. "province": "广东",
  30. "city": "潮州市",
  31. "area": null,
  32. "unified_social_credit_code": "91445100MA4UR8M51E",
  33. "legal_representative": "叶盛灵",
  34. "registered_capital": "",
  35. "phone_number": "0768-2319992",
  36. "registered_address": "广东省潮州市韩山师范学院东区B幢一层",
  37. "is_authentication": null,
  38. "platform": null,
  39. "association": null,
  40. "grade": null,
  41. "haoping": null,
  42. "zhongping": null,
  43. "chaping": null,
  44. "tousu": null
  45. }
  46. ],
  47. "page": "1",
  48. "num": "2",
  49. "page_num": 2,
  50. "耗时": 0.092999999999999999
  51. }
  52. }

错误时返回:

  1. {
  2. "code": 400,
  3. "msg": "access_token 无效!",
  4. "data": {
  5. "status": "error"
  6. }
  7. }

说明:出现此错误时,请重新请求授权。