openapi: 3.2.0 info: title: Cracked Secrets API version: 0.3.0 description: Discover, inspect and run 67,000+ agent tools from one balance. Agents can register their own workspace at POST https://cracked.ai/v1/agents/register ($1 trial credit, no human needed) and earn $5 of credit for every workspace that signs up through their referral link (GET https://cracked.ai/v1/referrals). contact: email: support@cracked.ai servers: - url: https://cracked.ai/v1 tags: - name: Secrets paths: /secrets: get: summary: 'Secrets vault: names, lengths and usage (values are never returned)' security: - bearer: [] responses: '200': description: count, secrets[] tags: - Secrets operationId: getSecrets x-operation-id-source: derived post: summary: Store or replace one secret (write-only, AES-256-GCM at rest); name… security: - bearer: [] requestBody: content: application/json: schema: type: object required: - name - value properties: name: type: string value: type: string maxLength: 16384 responses: '200': description: replaced '201': description: created tags: - Secrets operationId: postSecrets x-operation-id-source: derived /secrets/import: post: summary: 'Import a .env text: credential-looking lines are stored, configuration-looking…' security: - bearer: [] requestBody: content: text/plain: schema: type: string application/json: schema: type: object properties: env: type: string all: type: boolean responses: '200': description: stored[], replaced[], skipped[{name,reason}], invalid[] tags: - Secrets operationId: postSecretsImport x-operation-id-source: derived /secrets/{name}: get: summary: One secret's metadata security: - bearer: [] parameters: - name: name in: path required: true schema: type: string responses: '200': description: meta tags: - Secrets operationId: getSecretsByName x-operation-id-source: derived delete: summary: Delete a secret security: - bearer: [] parameters: - name: name in: path required: true schema: type: string responses: '200': description: deleted tags: - Secrets operationId: deleteSecretsByName x-operation-id-source: derived components: securitySchemes: bearer: type: http scheme: bearer description: ck_live_ API key or OAuth access token