# Retrieving Users

The retrieving users' endpoint allows you to retrieve a user by their ID.

<Tabs>

```csharp label="C#"
await client.Users.GetAsync("123");
```

```js label="JavaScript"
client.user("123").get();
```

```python label="Python"
client.users.get("123")
```

```ruby label="Ruby"
client.users.get("123")
```

```php label="PHP"
$client->users()->get('42');
```

```java label="Java"
client.user("123").get().join();
```

```go label="Go"
resp, err := client.Users().Delete(context.TODO(), "123")
	if err != nil {
		panic(err)
	}
```

</Tabs>


---

This page was last updated at 2026-05-22T16:31:48.602Z.

For the most recent version of this documentation, visit [https://getstream.io/activity-feeds/docs/php/v2/users-read/](https://getstream.io/activity-feeds/docs/php/v2/users-read/).