Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl https://api.bodhveda.com/recipients/recipient_123 \ -H "Authorization: Bearer bv_xxxxxxxxx"
import { Bodhveda } from "@bodhveda/js"; const bodhveda = new Bodhveda("bv_xxxxxxxxx"); const recipient = await bodhveda.recipients.get("recipient_123");
import ( "context" bodhveda "github.com/MudgalLabs/bodhveda/sdk/go" ) ctx := context.Background() client := bodhveda.NewClient("bv_xxxxxxxxx", nil) recipient, _ := client.Recipients.Get(ctx, "recipient_123")
{ "data": { "id": "recipient_123", "name": "John Doe", "created_at": "2025-11-07T05:31:56Z", "updated_at": "2025-11-07T05:31:56Z" } }
{ "message": "Recipient not found" }
Retrieve a recipient.
Bearer authentication header of the form Bearer bv_xxxxxxxxx, where bv_xxxxxxxxx is your API Key with Full access scope.
Bearer bv_xxxxxxxxx
bv_xxxxxxxxx
Full access
The unique identifier of the recipient.
Recipient found