# Integrations

The Integration Wizard's UI is the in-app consumer of two endpoints exposed by `IntegrationController.java`; you can call them directly to script integration-snippet generation. For the wizard purpose, the `META-INF/wizard/*.yaml` manifest registry, static-parameter substitution (today only `platform_url`), and the wizard-vs-`collector_config.yaml` boundary, see the [Integration Wizard](/integrations/integrations/integration-wizard.md) page.

| Method | Path                                 | Operation ID             | Purpose                                                                                                                                                                                                                                                                                                           |
| ------ | ------------------------------------ | ------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `GET`  | `/api/integrations`                  | `getIntegrationPreviews` | Lists every integration registered on this platform (`IntegrationPreviewList` of `{id, name, description, installed}`). The `installed` flag is currently always `false` — it's a UI affordance reserved for future state-tracking.                                                                               |
| `GET`  | `/api/integrations/{integration_id}` | `getIntegration`         | Returns the full `Integration` overview: the preview plus the ordered list of content blocks (each with title, content, and code snippets). Snippet arguments carry `parameter`, `name`, `type` (`INTEGER` / `STRING` / `BOOLEAN` / `FLOAT`), `isStatic`, and — when static — `staticValue` resolved server-side. |

## See also

* [API Reference hub](/developer-guides/api-reference.md) — the full per-feature index.
* [Integration Wizard](/integrations/integrations/integration-wizard.md) — feature description, manifest registry, static-parameter substitution.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.opendatadiscovery.org/developer-guides/api-reference/integrations.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
