> For the complete documentation index, see [llms.txt](https://talque.gitbook.io/public/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://talque.gitbook.io/public/json-api/lecture/list.md).

# List

## List lectures

<mark style="color:green;">`POST`</mark> `https://event.talque.com/api/v1/lecture/list`

This endpoint allows you to list all scheduled lectures in the organization, possibly filtered by tags.

#### Request Body

| Name                                    | Type   | Description                                                                      |
| --------------------------------------- | ------ | -------------------------------------------------------------------------------- |
| tags                                    | array  | Only return records that match all tags (use empty array to return all lectures) |
| orgId<mark style="color:red;">\*</mark> | string | Organization identifier.                                                         |

{% tabs %}
{% tab title="200 List of lectures successfully retrieved." %}

```javascript
{
    "lectures":[
        {
            "backgroundImage":null,
            "customData":{
                "data":[
                    {
                        "id":"B2ulKb4421KiWpuR4fPz",
                        "type":"TranslatedTextData",
                        "value":{
                            "DE_DE":"Mein Untertitel",
                            "EN_US":"Very Punny"
                        }
                    }
                ]
            },
            "description":{
                "DE_DE":"Sehr *Abstrakt*",
                "EN_US":"Very *abstract*"
            },
            "descriptionHtml":{
                "DE_DE":"<div class=\"msg_div\">\n<p class=\"msg_p\">Sehr <strong class=\"msg_strong\">Abstrakt<\/strong><\/p>\n<\/div>",
                "EN_US":"<div class=\"msg_div\">\n<p class=\"msg_p\">Very <strong class=\"msg_strong\">abstract<\/strong><\/p>\n<\/div>"
            },
            "format":"work",
            "isHighlight":true,
            "isPublic": true,
            "isPublished": true,
            "languageOther":{},
            "languages":[
                "RUS"
            ],
            "lectureId":"G337ySpYCDEQy9qtIdMg",
            "mtime":1540299331270,
            "name":{
                "DE_DE":"Workshop Titel",
                "EN_US":"Workshop title"
            },
            "period":{
                "duration":60,
                "end":1540300500000,
                "isTimed":true,
                "periodType":"TIME",
                "start":1540296900000
            },
            "roomId":null,
            "speakerRole":{
                "GTOD9d0P9IJQGI5f8DeZ":"MODERATOR"
            },
            "speakers":[
                "8f7dBiIGtWOttptVLagH",
                "GTOD9d0P9IJQGI5f8DeZ"
            ],
            "tags":[
                "top"
            ],
            "topics":[
                "fin"
            ]
        },
        {
            "backgroundImage":null,
            "customData":{
                "data":[
                    {
                        "id":"B2ulKb4421KiWpuR4fPz",
                        "type":"TranslatedTextData",
                        "value":{
                            "DE_DE":"Mein Untertitel",
                            "EN_US":"Very Punny"
                        }
                    }
                ]
            },
            "description":{
                "DE_DE":"Sehr *Abstrakt*",
                "EN_US":"Very *abstract*"
            },
            "descriptionHtml":{
                "DE_DE":"<div class=\"msg_div\">\n<p class=\"msg_p\">Sehr <strong class=\"msg_strong\">Abstrakt<\/strong><\/p>\n<\/div>",
                "EN_US":"<div class=\"msg_div\">\n<p class=\"msg_p\">Very <strong class=\"msg_strong\">abstract<\/strong><\/p>\n<\/div>"
            },
            "format":"talk",
            "isHighlight":true,
            "isPublic": true,
            "isPublished": true,
            "languageOther":{},
            "languages":[
                "RUS"
            ],
            "lectureId":"fMfhFCuBCXHd6dgbJvWx",
            "mtime":1540299331223,
            "name":{
                "DE_DE":"Vortragstitel",
                "EN_US":"Talk title"
            },
            "period":{
                "duration":60,
                "end":1539870900000,
                "isTimed":true,
                "periodType":"TIME",
                "start":1539867300000
            },
            "roomId":null,
            "speakerRole":{
                "GTOD9d0P9IJQGI5f8DeZ":"MODERATOR"
            },
            "speakers":[
                "8f7dBiIGtWOttptVLagH",
                "GTOD9d0P9IJQGI5f8DeZ"
            ],
            "tags":[
                "top"
            ],
            "topics":[
                "fin"
            ]
        }
    ],
    "reason":"SUCCESS",
    "reasonEnum":"LectureListReason",
    "success":true
}
```

{% endtab %}

{% tab title="404 Could not find an organization matching this query." %}

```javascript
{
    "message":"orgId does not exist",
    "reason":"NOT_FOUND",
    "reasonEnum":"LectureListReason",
    "success":false
}
```

{% endtab %}
{% endtabs %}

### Example Request

```javascript
{
    "orgId": "qRY08MFxsIo97DecfEPk",
    "tags": []
}
```

### Example Response

```json
{
  "lectures": [
    {
      "isHighlight": false,
      "description": {
        "DE_DE": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.",
        "EN_US": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet."
      },
      "tags": [],
      "topics": [],
      "customData": {
        "data": []
      },
      "period": {
        "duration": 120,
        "start": 1717167600000,
        "end": 1717174800000,
        "periodType": "TIME"
      },
      "mtime": 1678106830105,
      "vendors": [
        "IO8WdkXAwIDGdvpJ0s9X"
      ],
      "roomId": "OFDQB3uxbQm7gstgTxlD",
      "partCollection": {
        "files": [],
        "customData": {
          "data": []
        },
        "parts": [],
        "adminDeck": null,
        "deck": null
      },
      "speakers": [],
      "name": {
        "DE_DE": "Norah di Flora - Koncert",
        "EN_US": "Norah di Flora - Concert"
      },
      "format": "yze",
      "isPublished": true,
      "languages": [],
      "descriptionHtml": null,
      "backgroundImage": null,
      "languageOther": {},
      "lectureId": "MUxL57F2TjFzPduHoFw0",
      "speakerRole": {},
      "isPublic": true,
      "isBlocker": false
    },
    {
      "isHighlight": false,
      "description": {
        "EN_US": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur."
      },
      "tags": [
        "hig"
      ],
      "topics": [
        "iww",
        "rsh"
      ],
      "customData": {
        "data": []
      },
      "period": {
        "duration": 360,
        "start": 1694584800000,
        "end": 1694606400000,
        "periodType": "TIME"
      },
      "mtime": 1687941578785,
      "vendors": [],
      "roomId": "lekZJw8DiFKOtzzwQ2MZ",
      "partCollection": {
        "files": [],
        "customData": {
          "data": []
        },
        "parts": [],
        "adminDeck": null,
        "deck": null
      },
      "speakers": [
        "JXz3oOSROax2LDNAxAOj"
      ],
      "name": {
        "EN_US": "Panel-Discussion"
      },
      "format": "top",
      "isPublished": true,
      "languages": [],
      "descriptionHtml": null,
      "backgroundImage": "https://lh3.googleusercontent.com/ZIancbPC-8ssSN6KbcoaHve20vifh5KI5ePKncsm_LoKcShpCymcDaWdVETKckz4ges1eActhGR5RQ3m4156bc49XFqwZHrL6vo",
      "languageOther": {},
      "lectureId": "p7c7ihiVN3Ifr1p4UATy",
      "speakerRole": {},
      "isPublic": true,
      "isBlocker": false
    }
  ],
  "reason": "SUCCESS",
  "orgId": "qRY08MFxsIo97DecfEPk",
  "success": true,
  "reasonEnum": "LectureListReason"
}

```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://talque.gitbook.io/public/json-api/lecture/list.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
