Rendery3D LogoRendery3D

Endpoint Reference

GET /api/enterprise/v1/me

Returns authenticated account context for the API key owner.

Overview

Use this endpoint as a health check before generation calls.

Required scope: usage:read

Request

curl -X GET "https://rendery3d.com/api/enterprise/v1/me" \
  -H "Authorization: Bearer $RENDERY3D_API_KEY"

Try This Endpoint

Enter your API key and run a real request from this browser session.

Required scope: usage:read

Generated cURL

curl -X GET "https://rendery3d.com/api/enterprise/v1/me" \
  -H "Authorization: Bearer $RENDERY3D_API_KEY"

Response 200

{
  "user": {
    "id": "8a0c...",
    "email": "[email protected]",
    "tier": "enterprise"
  },
  "subscription": {
    "plan": "enterprise",
    "status": "active",
    "currentPeriodEnd": null,
    "cancelAtPeriodEnd": false
  },
  "credits": {
    "premium": 100,
    "purchasedPremium": 200,
    "standard": 500,
    "resetAt": "2026-02-01T00:00:00.000Z"
  }
}

Errors

  • 401 missing/invalid/revoked/expired key
  • 403 missing scope or plan access
  • 429 rate limit exceeded
  • 500 internal error