Skip to main content
GET
/
segments
/
:segment_id
import { Resend } from 'resend';

const resend = new Resend('re_xxxxxxxxx');

const { data, error } = await resend.segments.get(
  '78261eea-8f8b-4381-83c6-79fa7120f1cf',
);
$resend = Resend::client('re_xxxxxxxxx');

$resend->segments->get('78261eea-8f8b-4381-83c6-79fa7120f1cf');
import resend

resend.api_key = 're_xxxxxxxxx'

segment = resend.Segments.get('78261eea-8f8b-4381-83c6-79fa7120f1cf')
require "resend"

Resend.api_key = "re_xxxxxxxxx"

segment = Resend::Segments.get("78261eea-8f8b-4381-83c6-79fa7120f1cf")
package main

import (
	"context"
	"fmt"

	"github.com/resend/resend-go/v3"
)

func main() {
	ctx := context.TODO()
	client := resend.NewClient("re_xxxxxxxxx")

	segment, err := client.Segments.GetWithContext(ctx, "78261eea-8f8b-4381-83c6-79fa7120f1cf")
	if err != nil {
		panic(err)
	}
	fmt.Println(segment)
}
use resend_rs::{Resend, Result};

#[tokio::main]
async fn main() -> Result<()> {
  let resend = Resend::new("re_xxxxxxxxx");

  let _segment = resend
    .segments
    .get("78261eea-8f8b-4381-83c6-79fa7120f1cf")
    .await?;

  Ok(())
}
import com.resend.*;

public class Main {
    public static void main(String[] args) {
        Resend resend = new Resend("re_xxxxxxxxx");

        GetSegmentResponseSuccess response = resend.segments().get("78261eea-8f8b-4381-83c6-79fa7120f1cf");
    }
}
using Resend;

IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI

var resp = await resend.SegmentRetrieveAsync( new Guid( "b6d24b8e-af0b-4c3c-be0c-359bbd97381e" ) );
Console.WriteLine( "Segment Id={0}", resp.Content.Id );
curl -X GET 'https://api.resend.com/segments/78261eea-8f8b-4381-83c6-79fa7120f1cf' \
     -H 'Authorization: Bearer re_xxxxxxxxx'
resend segments get 78261eea-8f8b-4381-83c6-79fa7120f1cf
{
  "object": "segment",
  "id": "78261eea-8f8b-4381-83c6-79fa7120f1cf",
  "name": "Registered Users",
  "created_at": "2026-10-06 22:59:55.977+00"
}

Path Parameters

import { Resend } from 'resend';

const resend = new Resend('re_xxxxxxxxx');

const { data, error } = await resend.segments.get(
  '78261eea-8f8b-4381-83c6-79fa7120f1cf',
);
$resend = Resend::client('re_xxxxxxxxx');

$resend->segments->get('78261eea-8f8b-4381-83c6-79fa7120f1cf');
import resend

resend.api_key = 're_xxxxxxxxx'

segment = resend.Segments.get('78261eea-8f8b-4381-83c6-79fa7120f1cf')
require "resend"

Resend.api_key = "re_xxxxxxxxx"

segment = Resend::Segments.get("78261eea-8f8b-4381-83c6-79fa7120f1cf")
package main

import (
	"context"
	"fmt"

	"github.com/resend/resend-go/v3"
)

func main() {
	ctx := context.TODO()
	client := resend.NewClient("re_xxxxxxxxx")

	segment, err := client.Segments.GetWithContext(ctx, "78261eea-8f8b-4381-83c6-79fa7120f1cf")
	if err != nil {
		panic(err)
	}
	fmt.Println(segment)
}
use resend_rs::{Resend, Result};

#[tokio::main]
async fn main() -> Result<()> {
  let resend = Resend::new("re_xxxxxxxxx");

  let _segment = resend
    .segments
    .get("78261eea-8f8b-4381-83c6-79fa7120f1cf")
    .await?;

  Ok(())
}
import com.resend.*;

public class Main {
    public static void main(String[] args) {
        Resend resend = new Resend("re_xxxxxxxxx");

        GetSegmentResponseSuccess response = resend.segments().get("78261eea-8f8b-4381-83c6-79fa7120f1cf");
    }
}
using Resend;

IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI

var resp = await resend.SegmentRetrieveAsync( new Guid( "b6d24b8e-af0b-4c3c-be0c-359bbd97381e" ) );
Console.WriteLine( "Segment Id={0}", resp.Content.Id );
curl -X GET 'https://api.resend.com/segments/78261eea-8f8b-4381-83c6-79fa7120f1cf' \
     -H 'Authorization: Bearer re_xxxxxxxxx'
resend segments get 78261eea-8f8b-4381-83c6-79fa7120f1cf
{
  "object": "segment",
  "id": "78261eea-8f8b-4381-83c6-79fa7120f1cf",
  "name": "Registered Users",
  "created_at": "2026-10-06 22:59:55.977+00"
}