API DETAIL

企业软件著作权信息列表接口

根据企业ID或统一社会信用代码查询企业软件著作权信息列表,分页查询,每页默认30条。

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

首屏摘要

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

请求参数

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_enterpriseSoftRight?id=078361f3-cee8-48c1-9af0-dcba3fa9a492&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 EnterpriseSoftRightExample {
    public static void main(String[] args) throws Exception {
        String apiKey = "你的api_key";
        String url = "https://open.chineselaw.com/open/rh_enterpriseSoftRight?id=078361f3-cee8-48c1-9af0-dcba3fa9a492&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_enterpriseSoftRight"
API_KEY = "你的api_key"
headers = {
    "X-API-Key": API_KEY,
    "Accept": "application/json",
}
params = {
    'id': '078361f3-cee8-48c1-9af0-dcba3fa9a492',
    '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_enterpriseSoftRight");
url.searchParams.set('id', '078361f3-cee8-48c1-9af0-dcba3fa9a492');
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_enterpriseSoftRight

响应示例

## 6. 响应示例

```JSON
{
  "code": 200,
  "data": {
    "id": "a80a4cc8-9954-4dd3-bcaf-aebb99487b14",
    "name": "北京百度网讯科技有限公司",
    "total": 922,
    "pageNo": 1,
    "pageSize": 50,
    "hasMore": true,
    "list": [
      {
        "软件全称": "交通运营助手平台",
        "软件简称": "运营助手",
        "登记号": "2026SR0423878",
        "版本号": "V2.9",
        "著作权人(国籍)": "北京百度网讯科技有限公司",
        "登记日期": "2026年03月12日"
      },
      {
        "软件全称": "城市级信控场景优化系统",
        "软件简称": "信控场景优化",
        "登记号": "2026SR0425278",
        "版本号": "V1.0",
        "著作权人(国籍)": "北京百度网讯科技有限公司",
        "登记日期": "2026年03月12日"
      }
      ...
    ]
  },
  "message": "请求成功",
  "status": "success"
}
```

完整文档

企业软件著作权信息列表接口

1. 基本信息

  • 接口名称:企业软件著作权信息列表接口
  • 接口用途:根据企业ID或统一社会信用代码查询企业软件著作权信息列表,分页查询,每页默认30条。

2. 请求信息

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

3. 请求参数(Query)

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

idtyshxydm 不能同时为空。

4. 请求示例

GET https://open.chineselaw.com/open/rh_enterpriseSoftRight?id=078361f3-cee8-48c1-9af0-dcba3fa9a492&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": "a80a4cc8-9954-4dd3-bcaf-aebb99487b14",
    "name": "北京百度网讯科技有限公司",
    "total": 922,
    "pageNo": 1,
    "pageSize": 50,
    "hasMore": true,
    "list": [
      {
        "软件全称": "交通运营助手平台",
        "软件简称": "运营助手",
        "登记号": "2026SR0423878",
        "版本号": "V2.9",
        "著作权人(国籍)": "北京百度网讯科技有限公司",
        "登记日期": "2026年03月12日"
      },
      {
        "软件全称": "城市级信控场景优化系统",
        "软件简称": "信控场景优化",
        "登记号": "2026SR0425278",
        "版本号": "V1.0",
        "著作权人(国籍)": "北京百度网讯科技有限公司",
        "登记日期": "2026年03月12日"
      }
      ...
    ]
  },
  "message": "请求成功",
  "status": "success"
}

7. 代码示例

7.1 CURL

curl --location --request GET 'https://open.chineselaw.com/open/rh_enterpriseSoftRight?id=078361f3-cee8-48c1-9af0-dcba3fa9a492&pageNo=1' \
--header 'X-API-Key: 你的api_key' \
--header 'Accept: application/json'

7.2 Python

import requests

url = "https://open.chineselaw.com/open/rh_enterpriseSoftRight"
API_KEY = "你的api_key"
headers = {
    "X-API-Key": API_KEY,
    "Accept": "application/json",
}
params = {
    'id': '078361f3-cee8-48c1-9af0-dcba3fa9a492',
    '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 EnterpriseSoftRightExample {
    public static void main(String[] args) throws Exception {
        String apiKey = "你的api_key";
        String url = "https://open.chineselaw.com/open/rh_enterpriseSoftRight?id=078361f3-cee8-48c1-9af0-dcba3fa9a492&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_enterpriseSoftRight");
url.searchParams.set('id', '078361f3-cee8-48c1-9af0-dcba3fa9a492');
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());