RENDERS

Mint a signed URL-render link

Returns an HMAC-signed `GET /api/v1/img/{template}` URL for CMS / Open Graph `<img>` tags. The fetch itself needs no API key. Pass `jobs` (1–50) to mint many URLs in one call. Minting does not consume a credit; the first unique GET of each URL does. Repeats are cache hits.

post/api/v1/img/sign

Returns an HMAC-signed GET /api/v1/img/{template} URL for CMS / Open Graph <img> tags. The fetch itself needs no API key. Pass jobs (1–50) to mint many URLs in one call. Minting does not consume a credit; the first unique GET of each URL does. Repeats are cache hits.

Authorization

AuthorizationBearer <token>

API key as Authorization: Bearer <key>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/api/v1/img/sign" \  -H "Content-Type: application/json" \  -d '{    "template": "060ce75e-87d6-4677-b330-eaee58e54138"  }'
{  "url": "http://example.com",  "expiresAt": "2019-08-24T14:15:22Z"}