> ## Documentation Index
> Fetch the complete documentation index at: https://razorpay-881012b3.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Other Features

<div style={{display:"flex",flexWrap:"wrap",alignItems:"center",gap:"0.35rem 0.9rem",border:"1px solid rgba(128,128,128,0.28)",borderRadius:"0.5rem",padding:"0.45rem 0.75rem",margin:"0 0 1.25rem",fontSize:"0.875rem"}}>
  <span style={{fontWeight:600}}>Available in</span>
  <span>🇮🇳 India</span>
</div>

## Linked Account API Access

You can access the various Razorpay APIs as a linked account. This allows
you to, for example, fetch a list of all the payments received by a linked
account using the `GET \payments` API. To achieve this, you need to send the
linked account ID in the `X-Razorpay-Account` API request header, as shown in
the cURL example given below:

```bash theme={null}
curl https://api.razorpay.com/v1/payments \
   -u {KEY}:{SECRET} \
   -H "X-Razorpay-Account: acc_a1b2c3d4e5f6g7"
```

The request given above will fetch the list of payments for account\_id -
`acc_a1b2c3d4e5f6g7`
