Rendery3D LogoRendery3D

API Documentation

Enterprise API

Learn how to authenticate, call endpoints, and run secure production integrations.

Base URL

https://rendery3d.com/api/enterprise/v1

Authentication

Send your API key in the Authorization header using Bearer format.

Authorization: Bearer r3d_live_xxxxxxxxxxxxxxxx_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Quickstart

First call /me to validate auth and scope, then call generation endpoints.

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

Scopes

  • usage:read
  • amazon:listing-images:write
  • amazon:listing-copy:write

Endpoints

Error Handling

  • 400 invalid request payload
  • 401 missing/invalid/revoked key
  • 402 insufficient credits
  • 403 missing scope or plan access
  • 429 per-key rate limit exceeded
  • 500/502 internal or provider failure

Security Checklist

  • Keep API keys server-side only and store them in a secret manager.
  • Rotate keys on a fixed schedule and revoke keys on service ownership changes.
  • Use least-privilege scopes for each integration.
  • Send x-request-id for traceability in logs.