> For the complete documentation index, see [llms.txt](https://docs.popl.co/introduction/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.popl.co/introduction/members/get-members.md).

# Get Members

List Members - GET /api/pub/members/listMembers

**Description**: Gets all members within main team

**Parameters**: None

```
GET https://api.popl.co/api/pub/members/listMembers

{
    "message": "Success",
    "data": {
        "teamMembers": [
            {
                "memberId": 37,
                "email": "nick@popl.co",
                "name": "Nick Eischens",
                "jobTitle": "COO",
                "url": "https://popl.co/card/"
            },
            {
                "memberId": 2138,
                "email": "zoe@popl.co",
                "name": "Zoë Martine",
                "jobTitle": "Account Executive",
                "url": "https://popl.co/card/"
            },
        ]
    }
}
```
