> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tokenlab.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# World löschen

> Löscht eine World Labs Marble World

Lösche eine über TokenLab erstellte Marble World. TokenLab leitet die Löschung an World Labs weiter und markiert den lokalen World-Datensatz als gelöscht.

Das Löschen ist dauerhaft.

## Pfadparameter

<ParamField path="id" type="string" required>
  World-Labs-Welt-ID.
</ParamField>

## Antwort

<ResponseField name="deleted" type="boolean">
  Ob die Löschung akzeptiert wurde.
</ResponseField>

<ResponseField name="world_id" type="string">
  World-Labs-Welt-ID.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.tokenlab.sh/v1/worlds/world_123" \
    -H "Authorization: Bearer sk-your-api-key"
  ```

  ```python Python theme={null}
  import requests

  response = requests.delete(
      "https://api.tokenlab.sh/v1/worlds/world_123",
      headers={"Authorization": "Bearer sk-your-api-key"},
  )
  print(response.json())
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.tokenlab.sh/v1/worlds/world_123', {
    method: 'DELETE',
    headers: { Authorization: 'Bearer sk-your-api-key' }
  });
  console.log(await response.json());
  ```
</RequestExample>
