# Omgevingsloketinzage Omgeving Vlaanderen — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and retrieve Flemish environmental permits by location or keyword, accessing detailed project information, procedural phases, and building action specifics directly from the government portal. Find everything you need to know about environmental permits and their status in Flanders in one place.

**Category:** Government & Public Data | **Website:** [omgevingsloketinzage.omgeving.vlaanderen.be/](https://omgevingsloketinzage.omgeving.vlaanderen.be/) | **Docs:** [parse.bot/marketplace/af849438-a28f-4b48-82d1-20ec38371188/omgevingsloketinzage-omgeving-vlaanderen-be-api](https://parse.bot/marketplace/af849438-a28f-4b48-82d1-20ec38371188/omgevingsloketinzage-omgeving-vlaanderen-be-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-omgevingsloketinzage-omgeving-vlaanderen-be-api-af849438/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_permit_details

Retrieve comprehensive details for a single environmental permit including project overview (authority, decision, appeal deadline), procedural phases with sub-items, content version references, building actions with addresses and spatial data, and general project information. Accepts either a UUID from search results or an OMV project number; when a project number is provided, it is resolved to a UUID server-side before fetching details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `project_number` | string | No | OMV reference number (e.g. '2026025273') |
| `uuid` | string | No | Project UUID from search_permits results content[*].uuid |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-omgevingsloketinzage-omgeving-vlaanderen-be-api-af849438/get_permit_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"project_number":"<string>","uuid":"<string>"}'
```

### search_permits

Full-text search over Flemish environmental permits by municipality name, project name, or address. Results are paginated and sorted alphabetically by project name. Each result contains a UUID usable for detail retrieval. Returns up to size results per page; iterate pages via the 0-based page parameter until last is true.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (0-based) |
| `query` | string | Yes | Municipality name or project keyword to search for |
| `size` | integer | No | Results per page |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-omgevingsloketinzage-omgeving-vlaanderen-be-api-af849438/search_permits \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>","size":"<integer>"}'
```
