首页产品服务法规检索 API Playground

法规检索 API Playground

在线体验法规检索API,一键生成多语言代码

预设查询

查询参数

沙箱配额:剩余 42/50 次(今日)
代码实例
const response = await fetch('https://api.legal-skill.com/v1/regulations/search', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    keyword: '公司法',
    category: 'company_law',
    limit: 10,
    sort_by: 'effective_date',
    order: 'desc'
  })
});
const data = await response.json();
console.log(data);

立即开通

开通法规检索 API,快速集成法律数据能力

前往开通