{ "opencollection": "1.0.0", "info": { "name": "Replicate Accounts Secrets API", "version": "1.0.0-a1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Secrets", "type": "folder" }, "items": [ { "info": { "name": "Get the Signing Secret for the Default Webhook", "type": "http" }, "http": { "method": "GET", "url": "https://api.replicate.com/v1/webhooks/default/secret" }, "docs": "Get the signing secret for the default webhook endpoint. This is used to verify that webhook requests are coming from Replicate.\n\nExample cURL request:\n\n```console\ncurl -s \\\n -H \"Authorization: Bearer $REPLICATE_API_TOKEN\" \\\n https://api.replicate.com/v1/webhooks/default/secret\n```\n\nThe response will be a JSON object with a `key` property:\n\n```json\n{\n \"key\": \"...\"\n}\n```\n" } ] } ], "bundled": true }