预设查询
查询参数
沙箱配额:剩余 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);