Skip to main content
POST
/
public
/
v1
/
query
/
get_user
Get User
curl --request POST \
  --url https://api.turnkey.com/public/v1/query/get_user \
  --header 'Content-Type: application/json' \
  --header 'X-Stamp: <api-key>' \
  --data '
{
  "organizationId": "<string>",
  "userId": "<string>"
}
'
{
  "user": {
    "userId": "<string>",
    "userName": "<string>",
    "authenticators": [
      {
        "transports": [],
        "attestationType": "<string>",
        "aaguid": "<string>",
        "credentialId": "<string>",
        "model": "<string>",
        "credential": {
          "publicKey": "<string>"
        },
        "authenticatorId": "<string>",
        "authenticatorName": "<string>",
        "createdAt": {
          "seconds": "<string>",
          "nanos": "<string>"
        },
        "updatedAt": {
          "seconds": "<string>",
          "nanos": "<string>"
        }
      }
    ],
    "apiKeys": [
      {
        "credential": {
          "publicKey": "<string>"
        },
        "apiKeyId": "<string>",
        "apiKeyName": "<string>",
        "createdAt": {
          "seconds": "<string>",
          "nanos": "<string>"
        },
        "updatedAt": {
          "seconds": "<string>",
          "nanos": "<string>"
        },
        "expirationSeconds": "<string>"
      }
    ],
    "userTags": [
      "<string>"
    ],
    "oauthProviders": [
      {
        "providerId": "<string>",
        "providerName": "<string>",
        "issuer": "<string>",
        "audience": "<string>",
        "subject": "<string>",
        "createdAt": {
          "seconds": "<string>",
          "nanos": "<string>"
        },
        "updatedAt": {
          "seconds": "<string>",
          "nanos": "<string>"
        }
      }
    ],
    "createdAt": {
      "seconds": "<string>",
      "nanos": "<string>"
    },
    "updatedAt": {
      "seconds": "<string>",
      "nanos": "<string>"
    },
    "userEmail": "<string>",
    "userPhoneNumber": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://turnkey-0e7c1f5b-bc-add-sdk-typedoc.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Stamp
string
header
required

Body

application/json
organizationId
string
required

Unique identifier for a given Organization.

userId
string
required

Unique identifier for a given User.

Response

200 - application/json

A successful response.

user
object
required