> For the complete documentation index, see [llms.txt](https://dibd-bhashini.gitbook.io/bhashini-apis/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dibd-bhashini.gitbook.io/bhashini-apis/transliteration-compute-call/response-payload.md).

# Response Payload

This sub-page lets the integrator to actually be able to obtain the inference response with the output of individual tasks or tasks sequence in the order requested by the integrator.

## Complete Payload

<details>

<summary>Transliteration</summary>

{% code lineNumbers="true" %}

```json
{
    "pipelineResponse": [
        {
            "taskType": "transliteration",
            "config": null,
            "output": [
                {
                    "source": "ki",
                    "target": [
                        "की",
                        "कि",
                        "काई",
                        "कीई",
                        "काइ",
                        "कीइ",
                        "कै"
                    ]
                }
            ],
            "audio": null
        }
    ]
}
```

{% endcode %}

</details>

The above JSON Response shows the output of the Transliteration task requested by the integrator in that order. Below we will discuss the individual task response as well as combination of tasks in specific sequence.

##
