PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
curl -X GET "https://api.pinecone.io/admin/users" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
-H "accept: application/json" \
-H "X-Pinecone-Api-Version: 2026-04"
{
"data": [
{
"id": "e2e92523-85dc-4142-b8c2-e681be8b78df",
"email": "alice@example.com",
"name": "Alice Example",
"created_at": "2026-04-10T15:23:00Z",
"updated_at": "2026-04-12T09:11:00Z"
}
],
"pagination": {
"next": "eyJsYXN0X2lkIjoiZTJlOTI1MjMifQ=="
}
}
Users
List users in the organization
List users who are members of the caller’s organization. Results are paginated. Optional filters:
email— case-insensitive match on the user’s email address. Pagination tokens apply to the full query, includingemail. See query parameters for cursor rules. Role bindings are not included. UseGET /admin/role-bindingswithprincipal_typeandprincipal_idto list them.
GET
/
admin
/
users
PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
curl -X GET "https://api.pinecone.io/admin/users" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
-H "accept: application/json" \
-H "X-Pinecone-Api-Version: 2026-04"
{
"data": [
{
"id": "e2e92523-85dc-4142-b8c2-e681be8b78df",
"email": "alice@example.com",
"name": "Alice Example",
"created_at": "2026-04-10T15:23:00Z",
"updated_at": "2026-04-12T09:11:00Z"
}
],
"pagination": {
"next": "eyJsYXN0X2lkIjoiZTJlOTI1MjMifQ=="
}
}
PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
curl -X GET "https://api.pinecone.io/admin/users" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
-H "accept: application/json" \
-H "X-Pinecone-Api-Version: 2026-04"
{
"data": [
{
"id": "e2e92523-85dc-4142-b8c2-e681be8b78df",
"email": "alice@example.com",
"name": "Alice Example",
"created_at": "2026-04-10T15:23:00Z",
"updated_at": "2026-04-12T09:11:00Z"
}
],
"pagination": {
"next": "eyJsYXN0X2lkIjoiZTJlOTI1MjMifQ=="
}
}
Authorizations
An access token must be provided in the Authorization header using the Bearer scheme.
Headers
Required date-based version header
Query Parameters
Case-insensitive filter on the user's email address. Malformed email returns 400 INVALID_ARGUMENT.
Maximum string length:
254The number of results to return per page. When omitted, the server defaults to 100. Out-of-range values return 400 OUT_OF_RANGE.
Required range:
1 <= x <= 100Cursor from pagination.next of a prior response. Must be reused with the same query context (path parameters, filters, and limit).
Response
A paginated list of users.
Was this page helpful?
⌘I