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

# List Objects

Retrieve a list of all available entities in your organization. This endpoint is used by the Airbyte connector to discover which Superleap objects can be used as data sources.

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token for authentication, [click here](https://app.superleap.com/settings/apiAccess) to generate one
</ParamField>

### Example Request

```bash theme={null}
curl --location --request POST 'https://app.superleap.com/api/v1/airbyte/objects/list/' \
--header 'Authorization: Bearer SUPERSECRETREDACTEDKEY' \
--data ''
```

### Example Response

```json theme={null}
{
    "success": true,
    "data": [
        {
            "entity_identifier": "lead",
            "label": "Lead",
            "description": "",
            "has_nested_entities": false,
            "is_writable": false
        },
        {
            "entity_identifier": "opportunity",
            "label": "Opportunity",
            "description": "",
            "has_nested_entities": false,
            "is_writable": false
        },
        {
            "entity_identifier": "companies",
            "label": "Company",
            "description": "",
            "has_nested_entities": false,
            "is_writable": false
        },
        {
            "entity_identifier": "user",
            "label": "User",
            "description": "",
            "has_nested_entities": false,
            "is_writable": false
        },
        {
            "entity_identifier": "call_log",
            "label": "Calllog",
            "description": "",
            "has_nested_entities": false,
            "is_writable": false
        }
    ]
}
```

### Response Fields

| Field     | Type    | Description                        |
| --------- | ------- | ---------------------------------- |
| `success` | boolean | Whether the request was successful |
| `data`    | array   | List of entity objects             |

### Entity Object

| Field                 | Type    | Description                                                                      |
| --------------------- | ------- | -------------------------------------------------------------------------------- |
| `entity_identifier`   | string  | Unique slug identifier for the entity (used as `object_slug` in other endpoints) |
| `label`               | string  | Human-readable display name of the entity                                        |
| `description`         | string  | Description of the entity                                                        |
| `has_nested_entities` | boolean | Whether this entity contains nested sub-entities                                 |
| `is_writable`         | boolean | Whether Airbyte can write data to this entity                                    |
