Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.law4devs.eu/llms.txt

Use this file to discover all available pages before exploring further.

Swagger UI provides a browser-based interface where you can browse every endpoint, read its documentation, and make live API calls — all without writing any code. URL: https://api.law4devs.eu/docs

Authenticating in Swagger UI

Before you can use “Try it out”, you need to provide your API key:
1

Open Swagger UI

Navigate to https://api.law4devs.eu/docs in your browser.
2

Click Authorize

Click the Authorize button (lock icon) in the top-right of the page.
3

Enter your API key

In the dialog that appears, paste your API key into the X-API-Key field and click Authorize.
X-API-Key: YOUR_API_KEY
4

Close and try an endpoint

Close the dialog. Expand any endpoint, click Try it out, fill in any parameters, and hit Execute.

Example: Listing Frameworks

  1. Expand GET /v1/frameworks
  2. Click Try it out
  3. Set per_page to 5
  4. Click Execute
You’ll see the full request URL, the curl command you can copy, and the live JSON response directly below.

When to Use Swagger UI

Prototyping

Try endpoints before writing SDK code — verify responses and parameters quickly.

Debugging

Reproduce API issues interactively to isolate whether the problem is client-side.

Exploration

Discover all available endpoints and their parameters in one place.

Sharing

Share a specific endpoint with a colleague by copying the URL from the address bar.