Allowed Configuration
The API is read-only — only
GET requests are permitted. OPTIONS is allowed for
CORS preflight checks.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Cross-origin request configuration for browser-based integrations
| Property | Value |
|---|---|
| Allowed methods | GET, OPTIONS |
| Allowed origins | * |
| Allowed headers | Content-Type, Authorization, X-API-Key |
| Preflight cache | 3600 seconds (1 hour) |
GET requests are permitted. OPTIONS is allowed for
CORS preflight checks.const response = await fetch(
'https://api.law4devs.eu/v1/frameworks',
{
headers: {
'X-API-Key': import.meta.env.VITE_LAW4DEVS_API_KEY,
},
}
);
const data = await response.json();
console.log(data.data);
Was this page helpful?
