API DETAIL

企业法院公告列表接口

根据企业ID或统一社会信用代码查询企业法院公告列表,分页查询,每页默认30条。

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

首屏摘要

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

请求参数

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_enterpriseCourtNotice?id=a418bc20-09b4-480e-ae69-58719e189b77&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 EnterpriseCourtNoticeExample {
    public static void main(String[] args) throws Exception {
        String apiKey = "你的api_key";
        String url = "https://open.chineselaw.com/open/rh_enterpriseCourtNotice?id=a418bc20-09b4-480e-ae69-58719e189b77&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_enterpriseCourtNotice"
API_KEY = "你的api_key"
headers = {
    "X-API-Key": API_KEY,
    "Accept": "application/json",
}
params = {
    'id': 'a418bc20-09b4-480e-ae69-58719e189b77',
    '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_enterpriseCourtNotice");
url.searchParams.set('id', 'a418bc20-09b4-480e-ae69-58719e189b77');
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_enterpriseCourtNotice

响应示例

## 6. 响应示例

```JSON
{
  "code": 200,
  "data": {
    "id": "a418bc20-09b4-480e-ae69-58719e189b77",
    "name": "云南三君入围文化传播有限公司",
    "total": 4,
    "pageNo": 1,
    "pageSize": 50,
    "hasMore": false,
    "list": [
      {
        "起诉方": [
          "廖鑫羽"
        ],
        "应诉方": [
          "云南三君入围文化传播有限公司"
        ],
        "审理法院": "昆明市西山区人民法院",
        "公告内容": "<p>本院受理原告廖鑫羽与被告云南三君入围文化传播有限公司追索劳动报酬纠纷一案,案号:(2022)云0112民初2866号,原告请求判决:一、被告支付原告截至2021年8月20日欠发工资2431.8元及资金占用利息;二、本案诉讼费用由被告承担。因无法采用《中华人民共和国民事诉讼法》规定的其他方式进行送达,现依法向你公告送达起诉状副本、应诉讼通知书、举证通知书(一)、举证通知书(二)、当事人诉讼权利义务告知书及开庭传票。自本公告发出之日起,经过30日即视为送达,提出答辩状及举证期的期限为公告送达期满后的15日,并定于期满后的第七日上午9时20分(遇法定节假日顺延)在本院第十二号法庭公开开庭审理,逾期将依法缺席裁判。</p>"
      }
      ...
    ]
  },
  "message": "请求成功",
  "status": "success"
}
```

完整文档

企业法院公告列表接口

1. 基本信息

  • 接口名称:企业法院公告列表接口
  • 接口用途:根据企业ID或统一社会信用代码查询企业法院公告列表,分页查询,每页默认30条。

2. 请求信息

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

3. 请求参数(Query)

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

idtyshxydm 不能同时为空。

4. 请求示例

GET https://open.chineselaw.com/open/rh_enterpriseCourtNotice?id=a418bc20-09b4-480e-ae69-58719e189b77&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": "a418bc20-09b4-480e-ae69-58719e189b77",
    "name": "云南三君入围文化传播有限公司",
    "total": 4,
    "pageNo": 1,
    "pageSize": 50,
    "hasMore": false,
    "list": [
      {
        "起诉方": [
          "廖鑫羽"
        ],
        "应诉方": [
          "云南三君入围文化传播有限公司"
        ],
        "审理法院": "昆明市西山区人民法院",
        "公告内容": "<p>本院受理原告廖鑫羽与被告云南三君入围文化传播有限公司追索劳动报酬纠纷一案,案号:(2022)云0112民初2866号,原告请求判决:一、被告支付原告截至2021年8月20日欠发工资2431.8元及资金占用利息;二、本案诉讼费用由被告承担。因无法采用《中华人民共和国民事诉讼法》规定的其他方式进行送达,现依法向你公告送达起诉状副本、应诉讼通知书、举证通知书(一)、举证通知书(二)、当事人诉讼权利义务告知书及开庭传票。自本公告发出之日起,经过30日即视为送达,提出答辩状及举证期的期限为公告送达期满后的15日,并定于期满后的第七日上午9时20分(遇法定节假日顺延)在本院第十二号法庭公开开庭审理,逾期将依法缺席裁判。</p>"
      }
      ...
    ]
  },
  "message": "请求成功",
  "status": "success"
}

7. 代码示例

7.1 CURL

curl --location --request GET 'https://open.chineselaw.com/open/rh_enterpriseCourtNotice?id=a418bc20-09b4-480e-ae69-58719e189b77&pageNo=1' \
--header 'X-API-Key: 你的api_key' \
--header 'Accept: application/json'

7.2 Python

import requests

url = "https://open.chineselaw.com/open/rh_enterpriseCourtNotice"
API_KEY = "你的api_key"
headers = {
    "X-API-Key": API_KEY,
    "Accept": "application/json",
}
params = {
    'id': 'a418bc20-09b4-480e-ae69-58719e189b77',
    '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 EnterpriseCourtNoticeExample {
    public static void main(String[] args) throws Exception {
        String apiKey = "你的api_key";
        String url = "https://open.chineselaw.com/open/rh_enterpriseCourtNotice?id=a418bc20-09b4-480e-ae69-58719e189b77&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_enterpriseCourtNotice");
url.searchParams.set('id', 'a418bc20-09b4-480e-ae69-58719e189b77');
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());