OpenDataBio Documentation
Note
Use this space to publish installation-specific guidance for your users. A code of conduct, onboarding instructions, and contact points are good examples of the content that lives here.
The OpenDataBio documentation site hosts the official manuals for installing and operating the platform. Link users there for core product guides.
Customising these pages
- Markdown files live in
resources/docs/{locale}(for exampleresources/docs/en/Home.md). - Create additional
.mdfiles to add new entries—file names become menu labels automatically. - Standard CommonMark syntax is supported. You can still use Blade directives such as
@ifwhen you need dynamic sections. - After editing, deploy or reload the application; no extra build step is required.
Testing the API
Signed-in users can experiment with the API using their personal token. The snippet below fetches five public datasets:
curl \
-H "Authorization: Bearer YOUR_TOKEN" \
"https://opendb.inpa.gov.br/api/v0/datasets?limit=5"
Keep the limit parameter low while you explore the responses. Full endpoint documentation is available on the public API reference.