> For the complete documentation index, see [llms.txt](https://doc.vapi.co/tr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.vapi.co/tr/en/getting-started/response-structure.md).

# Response Structure

### <mark style="color:green;">Successful Response Structure</mark>

<mark style="color:green;">Record-Based qery</mark>

<table><thead><tr><th width="136"></th><th></th></tr></thead><tbody><tr><td>success</td><td>When the request is successful <mark style="color:green;"><strong>true</strong></mark></td></tr><tr><td>data</td><td>Metod response</td></tr></tbody></table>

<mark style="color:green;">List query</mark>

<table><thead><tr><th width="153"></th><th></th></tr></thead><tbody><tr><td>success</td><td>When the request is successful <mark style="color:green;"><strong>true</strong></mark></td></tr><tr><td>data</td><td>Metod response</td></tr><tr><td>_links</td><td><p>Pagination Links</p><p></p><p><em>self:  the current page</em></p><p><em>first: the first page</em></p><p><em>next: the next page</em></p><p><em>last: the last page</em></p><pre class="language-json"><code class="lang-json">"_links": {
        "self": {
            "href": "https://api.vapi.co/&#x3C;method>?page=1&#x26;per-page=500"
        },
        "first": {
            "href": "https://api.vapi.co/&#x3C;method>?page=1&#x26;per-page=500"
        },
         "next": {
            "href": "https://api.vapi.co/&#x3C;method>?page=2&#x26;per-page=500"
        },
        "last": {
            "href": "https://api.vapi.co/&#x3C;method>?page=1&#x26;per-page=500"
        }
    },
</code></pre></td></tr><tr><td>_meta</td><td><p>Pagination Information</p><pre class="language-json"><code class="lang-json">    "_meta": {
        "totalCount": 65,
        "pageCount": 1,
        "currentPage": 1,
        "perPage": 500
    },
</code></pre></td></tr></tbody></table>

### <mark style="color:red;">Failed Response Structure</mark>

<table><thead><tr><th width="136"></th><th></th></tr></thead><tbody><tr><td>success</td><td>When the request is successful <mark style="color:green;"><strong>true</strong></mark></td></tr><tr><td>data</td><td><p>All queried data are stored in this parameter. </p><pre class="language-json"><code class="lang-json">"name": "Unauthorized",
"message": "Your request was made with invalid credentials.",
"code": 0,
"status": 401
</code></pre></td></tr></tbody></table>
