---
title: "Gets the information about replicas of a Service Fabric service partition."
method: GET
path: "/Partitions/{partitionId}/$/GetReplicas"
tags: ["Replica"]
---

# Gets the information about replicas of a Service Fabric service partition.

`GET /Partitions/{partitionId}/$/GetReplicas`

The GetReplicas endpoint returns information about the replicas of the specified partition. The response includes the ID, role, status, health, node name, uptime, and other details about the replica.

## Path parameters

- `partitionId` string, uuid, required

## Query parameters

- `api-version` '6.0', required
- `ContinuationToken` string
- `timeout` integer

## Response `200`

Information about the replicas of the specified partition.

- PagedReplicaInfoList — The list of replicas in the cluster for a given partition. The list is paged when all of the results cannot fit in a single message. The next set of results can be obtained by executing the same query with the continuation token provided in this list.
  - `ContinuationToken` string — The continuation token parameter is used to obtain next set of results. The continuation token is included in the response of the API when the results from the system do not fit in a single response. When this value is passed to the next API call, the API returns next set of results. If there are no further results, then the continuation token is not included in the response.
  - `Items` ReplicaInfo[] — List of replica information.
    - `ServiceKind` 'Invalid' | 'Stateless' | 'Stateful', required — The kind of service (Stateless or Stateful).
    - `ReplicaStatus` 'Invalid' | 'InBuild' | 'Standby' | 'Ready' | 'Down' | 'Dropped' — The status of a replica of a service.
    - `HealthState` 'Invalid' | 'Ok' | 'Warning' | 'Error' | 'Unknown' — The health state of a Service Fabric entity such as Cluster, Node, Application, Service, Partition, Replica etc.
    - `NodeName` string — The name of a Service Fabric node.
    - `Address` string — The address the replica is listening on.
    - `LastInBuildDurationInSeconds` string — The last in build duration of the replica in seconds.

## Other responses

- `default` — The detailed error response.

---

[API](https://skmtc.net/azure/apis/servicefabric-servicefabric.md) · [All operations](https://skmtc.net/azure/apis/servicefabric-servicefabric/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/azure/servicefabric-servicefabric/revisions/8fd479ce0f16/schema)
