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

# Plattform-Metadaten

> Deployment-Konstanten lesen. Derzeit nur die Abrechnungswährung.

**`GET`** `https://api-datahub.octoparse.com/v1/meta`

Authentifizierung: keine. Anonymer Zugriff erlaubt.

Liefert Konstanten auf Deployment-Ebene. Derzeit nur die Abrechnungswährung (ISO-4217-Code). Betragsfelder (`unit_price`, `amount`, `total_spent`) tragen selbst keine Einheit; die Einheit kommt von hier. Das internationale Deployment verwendet `USD`.

Der anonyme Lesezugriff existiert, damit Marktkarten die Währung von Einstiegspreisen auch dann anzeigen können, wenn der Betrachter abgemeldet ist.

## Anfrage

### Beispielanfrage

```bash theme={null}
curl   "https://api-datahub.octoparse.com/v1/meta"
```

## Antwort

### 200 Erfolg

```json theme={null}
{
  "data": {
    "currency": "USD"
  }
}
```

Payload ist in `data` gewrappt. Felder:

<ResponseField name="currency" type="string">
  Abrechnungswährung, ISO-4217-Code.
</ResponseField>

## Client-Bibliotheken

<CodeGroup>
  ```python Python theme={null}
  meta = client.meta()
  print(meta["currency"])
  ```

  ```js JavaScript theme={null}
  const meta = await client.meta();
  console.log(meta.currency);
  ```
</CodeGroup>
