Topo
Ops, algo deu errado!

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

  1. Markdown files live in resources/docs/{locale} (for example resources/docs/en/Home.md).
  2. Create additional .md files to add new entries—file names become menu labels automatically.
  3. Standard CommonMark syntax is supported. You can still use Blade directives such as @if when you need dynamic sections.
  4. 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.