> For AI agents: the complete documentation index is available at [llms.txt](https://docs.snaptrade.com/llms.txt). Markdown versions of documentation pages are available by appending .md to the URL path.

# Request IDs

Each SnapTrade API request has an associated request identifier.

You can find this value in the response headers, under `X-Request-ID`. For example, running a simple `curl` request and glancing at the headers for the response will give something like this:

    curl -v https://api.snaptrade.com/api/v1

    ...

    < date: Fri, 13 Oct 2023 00:32:06 GMT
    < content-type: application/json
    < content-length: 71
    < server: gunicorn
    < vary: Accept, DNT, origin, Cookie
    < allow: GET, HEAD, OPTIONS
    < x-frame-options: DENY
    < x-request-id: 27fcf193c58c4a646aa9fd90e833ab29
    < x-content-type-options: nosniff
    < referrer-policy: same-origin
    < cross-origin-opener-policy: same-origin

If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.
