API DETAIL

企业经营异常记录列表接口

根据企业ID或统一社会信用代码查询企业经营异常列表,分页查询,每页默认30条。

分类:企业信息 方法:GET MCP Tool:yuandian_rh_enterpriseAbnormalOperation 静态 API 文档

首屏摘要

接口名称企业经营异常记录列表接口
接口描述根据企业ID或统一社会信用代码查询企业经营异常列表,分页查询,每页默认30条。
分类企业信息
调用地址https://open.chineselaw.com/open/rh_enterpriseAbnormalOperation
文档摘要企业经营异常记录列表接口 1. 基本信息 **接口名称**:企业经营异常记录列表接口 **接口用途**:根据企业ID或统一社会信用代码查询企业经营异常列表,分页查询,每页默认30条。 2. 请求信息 **HTTP Method**:GET **URL**:{{API_URL}} 3. 请求参数(Query) 参数名 类型 是否必填 说明 ---------- ------ -------- ---------------- id string 否 企业ID tyshxydm…

请求参数

3. 请求参数(Query)

参数名 类型 是否必填 说明
id string 企业ID
tyshxydm string 统一社会信用代码
pageNo int 页码,默认1

idtyshxydm 不能同时为空。

响应参数

5. 响应说明

5.1 通用返回结构

字段名 类型 说明
status string success / notFound
code number 成功 200
message string 提示信息
data object 数据结果

5.2 data 对象说明(概要)

字段名 类型 说明
id string 企业ID
name string 企业名称
total number 总数
pageNo number 当前结果页码
pageSize number 每页结果列表数量
hasMore boolean 是否还有下一页
list object[] 当前结果列表

错误码

暂无错误码说明

调用示例

CURL

curl --location --request GET 'https://open.chineselaw.com/open/rh_enterpriseAbnormalOperation?id=37a3747f-1ef4-4b36-81ba-5de44d63db1f&pageNo=1' \
--header 'X-API-Key: 你的api_key' \
--header 'Accept: application/json'

JAVA

import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.time.Duration;

public class EnterpriseAbnormalOperationExample {
    public static void main(String[] args) throws Exception {
        String apiKey = "你的api_key";
        String url = "https://open.chineselaw.com/open/rh_enterpriseAbnormalOperation?id=37a3747f-1ef4-4b36-81ba-5de44d63db1f&pageNo=1";

        HttpRequest request = HttpRequest.newBuilder()
                .uri(URI.create(url))
                .timeout(Duration.ofSeconds(60))
                .header("X-API-Key", apiKey)
                .header("Accept", "application/json")
                .GET()
                .build();

        HttpClient client = HttpClient.newHttpClient();
        HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
        System.out.println(response.statusCode());
        System.out.println(response.body());
    }
}

PYTHON

import requests

url = "https://open.chineselaw.com/open/rh_enterpriseAbnormalOperation"
API_KEY = "你的api_key"
headers = {
    "X-API-Key": API_KEY,
    "Accept": "application/json",
}
params = {
    'id': '37a3747f-1ef4-4b36-81ba-5de44d63db1f',
    'pageNo': '1',
}
response = requests.get(url, params=params, headers=headers, timeout=60)
response.raise_for_status()
print(response.json())

JAVASCRIPT

const API_KEY = "你的api_key";
const url = new URL("https://open.chineselaw.com/open/rh_enterpriseAbnormalOperation");
url.searchParams.set('id', '37a3747f-1ef4-4b36-81ba-5de44d63db1f');
url.searchParams.set('pageNo', '1');

const res = await fetch(url, {
  method: "GET",
  headers: {
    "X-API-Key": API_KEY,
    "Accept": "application/json",
  },
});
if (!res.ok) throw new Error(`HTTP ${res.status}`);
console.log(await res.json());

MCP Tool 名称

MCP Serveryuandian-company(企业信息 Server)
Streamable HTTP 入口https://open.chineselaw.com/mcp/company/stream
MCP Toolyuandian_rh_enterpriseAbnormalOperation

响应示例

## 6. 响应示例

```JSON
{
  "code": 200,
  "data": {
    "id": "37a3747f-1ef4-4b36-81ba-5de44d63db1f",
    "name": "济南宏盛永物业管理有限公司",
    "total": 1,
    "pageNo": 1,
    "pageSize": 50,
    "hasMore": false,
    "list": [
      {
        "列入日期": "2023年02月13日",
        "列入经营异常名录原因": "公示企业信息隐瞒真实情况、弄虚作假的",
        "做出列入决定机关": "济南市历下区市场监督管理局",
        "移除日期": "2023年02月17日",
        "移除经营异常名录原因": "列入经营异常名录3年内且依照《经营异常名录管理办法》第八条规定被列入经营异常名录的企业更正其公示的信息后,申请移出",
        "做出移出决定机关": "济南市历下区市场监督管理局"
      }
    ]
  },
  "message": "请求成功",
  "status": "success"
}
```

完整文档

企业经营异常记录列表接口

1. 基本信息

  • 接口名称:企业经营异常记录列表接口
  • 接口用途:根据企业ID或统一社会信用代码查询企业经营异常列表,分页查询,每页默认30条。

2. 请求信息

  • HTTP Method:GET
  • URLhttps://open.chineselaw.com/open/rh_enterpriseAbnormalOperation

3. 请求参数(Query)

参数名 类型 是否必填 说明
id string 企业ID
tyshxydm string 统一社会信用代码
pageNo int 页码,默认1

idtyshxydm 不能同时为空。

4. 请求示例

GET https://open.chineselaw.com/open/rh_enterpriseAbnormalOperation?id=37a3747f-1ef4-4b36-81ba-5de44d63db1f&pageNo=1

5. 响应说明

5.1 通用返回结构

字段名 类型 说明
status string success / notFound
code number 成功 200
message string 提示信息
data object 数据结果

5.2 data 对象说明(概要)

字段名 类型 说明
id string 企业ID
name string 企业名称
total number 总数
pageNo number 当前结果页码
pageSize number 每页结果列表数量
hasMore boolean 是否还有下一页
list object[] 当前结果列表

6. 响应示例

{
  "code": 200,
  "data": {
    "id": "37a3747f-1ef4-4b36-81ba-5de44d63db1f",
    "name": "济南宏盛永物业管理有限公司",
    "total": 1,
    "pageNo": 1,
    "pageSize": 50,
    "hasMore": false,
    "list": [
      {
        "列入日期": "2023年02月13日",
        "列入经营异常名录原因": "公示企业信息隐瞒真实情况、弄虚作假的",
        "做出列入决定机关": "济南市历下区市场监督管理局",
        "移除日期": "2023年02月17日",
        "移除经营异常名录原因": "列入经营异常名录3年内且依照《经营异常名录管理办法》第八条规定被列入经营异常名录的企业更正其公示的信息后,申请移出",
        "做出移出决定机关": "济南市历下区市场监督管理局"
      }
    ]
  },
  "message": "请求成功",
  "status": "success"
}

7. 代码示例

7.1 CURL

curl --location --request GET 'https://open.chineselaw.com/open/rh_enterpriseAbnormalOperation?id=37a3747f-1ef4-4b36-81ba-5de44d63db1f&pageNo=1' \
--header 'X-API-Key: 你的api_key' \
--header 'Accept: application/json'

7.2 Python

import requests

url = "https://open.chineselaw.com/open/rh_enterpriseAbnormalOperation"
API_KEY = "你的api_key"
headers = {
    "X-API-Key": API_KEY,
    "Accept": "application/json",
}
params = {
    'id': '37a3747f-1ef4-4b36-81ba-5de44d63db1f',
    'pageNo': '1',
}
response = requests.get(url, params=params, headers=headers, timeout=60)
response.raise_for_status()
print(response.json())

7.3 Java

import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.time.Duration;

public class EnterpriseAbnormalOperationExample {
    public static void main(String[] args) throws Exception {
        String apiKey = "你的api_key";
        String url = "https://open.chineselaw.com/open/rh_enterpriseAbnormalOperation?id=37a3747f-1ef4-4b36-81ba-5de44d63db1f&pageNo=1";

        HttpRequest request = HttpRequest.newBuilder()
                .uri(URI.create(url))
                .timeout(Duration.ofSeconds(60))
                .header("X-API-Key", apiKey)
                .header("Accept", "application/json")
                .GET()
                .build();

        HttpClient client = HttpClient.newHttpClient();
        HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
        System.out.println(response.statusCode());
        System.out.println(response.body());
    }
}

7.4 JavaScript

const API_KEY = "你的api_key";
const url = new URL("https://open.chineselaw.com/open/rh_enterpriseAbnormalOperation");
url.searchParams.set('id', '37a3747f-1ef4-4b36-81ba-5de44d63db1f');
url.searchParams.set('pageNo', '1');

const res = await fetch(url, {
  method: "GET",
  headers: {
    "X-API-Key": API_KEY,
    "Accept": "application/json",
  },
});
if (!res.ok) throw new Error(`HTTP ${res.status}`);
console.log(await res.json());