Skip to Content
CORE APIIdentity

Identity

GET/v1/me

Check merchant identity and granted scopes. There is no request body. Sign with {timestamp}. (trailing dot).

Example

curl -X GET https://api.transacty.ai/v1/me \
  -H "X-Transacty-Key: $TRANSACTY_KEY" \
  -H "X-Transacty-Timestamp: $TS" \
  -H "X-Transacty-Signature: $SIG" \
  -H "Content-Type: application/json"

Response fields

FieldTypeDescription
merchantIdstringMerchant unique identifier
merchantSlugstringMerchant slug
slugstringSame as merchantSlug
businessNamestringBusiness display name
scopesstring[]Granted API scopes
environmentstringThe key’s mode: test or live (not a query parameter)

Typical live key scopes: payin:create, payout:create, balance:read. * is for non-production only.

A 401 Unauthorized means you should check your apiKey, secret, timestamp (Unix seconds, ±5 minutes), and request signature.

Last updated on