***

title: LAML Bins
slug: /reference/python/rest/compat/laml-bins
description: Manage LAML bins (cXML/LaML scripts) with CRUD operations.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

[restclient]: /docs/server-sdks/reference/python/rest/client

[list]: /docs/server-sdks/reference/python/rest/compat/laml-bins/list

[create]: /docs/server-sdks/reference/python/rest/compat/laml-bins/create

[get]: /docs/server-sdks/reference/python/rest/compat/laml-bins/get

[update]: /docs/server-sdks/reference/python/rest/compat/laml-bins/update

[delete]: /docs/server-sdks/reference/python/rest/compat/laml-bins/delete

Manage LAML bins with CRUD operations. LAML bins store reusable cXML/LaML scripts
that can be referenced by URL in call and message handling.

Access via `client.compat.laml_bins` on a [`RestClient`][restclient] instance.

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

bins = client.compat.laml_bins.list()
```

## **Methods**

<CardGroup cols={3}>
  <Card title="list" href="/docs/server-sdks/reference/python/rest/compat/laml-bins/list">
    List LAML bins in the account.
  </Card>

  <Card title="create" href="/docs/server-sdks/reference/python/rest/compat/laml-bins/create">
    Create a new LAML bin.
  </Card>

  <Card title="get" href="/docs/server-sdks/reference/python/rest/compat/laml-bins/get">
    Retrieve a single LAML bin by SID.
  </Card>

  <Card title="update" href="/docs/server-sdks/reference/python/rest/compat/laml-bins/update">
    Update a LAML bin.
  </Card>

  <Card title="delete" href="/docs/server-sdks/reference/python/rest/compat/laml-bins/delete">
    Delete a LAML bin.
  </Card>
</CardGroup>