For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dashboard
User GuideDeveloper GuidesAPI Reference
User GuideDeveloper GuidesAPI Reference
    • Overview
  • Runtype API
      • GETList secrets (metadata only)
      • POSTCreate a secret
      • GETGet secret metadata
      • PUTUpdate or rotate a secret
      • DELDelete a secret
      • POSTCheck which secret keys exist, are missing, or revoked
      • POSTGet intake manifest for secret configuration
      • POSTSubmit secret values from intake screen
      • POSTGenerate dashboard URL for configuring missing secrets
Dashboard
LogoLogo
Runtype APISecrets

Get intake manifest for secret configuration

POST
/v1/secrets/intake/manifest
POST
/v1/secrets/intake/manifest
$curl -X POST https://api.runtype.com/v1/secrets/intake/manifest \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "source": {
> "type": "manual"
> }
>}'
1{
2 "source": {
3 "type": "manual",
4 "key": "config-manual-001",
5 "productId": "prod-7890"
6 },
7 "title": "Manual Secret Configuration",
8 "items": [
9 {
10 "itemId": "item-1234",
11 "secretKey": "API_KEY",
12 "status": "configured",
13 "secretId": "secret-5678",
14 "displayName": "API Key",
15 "description": "Your primary API key for authentication.",
16 "required": true,
17 "placeholder": "Enter your API key here",
18 "helpText": "Find your API key in your account dashboard under API settings.",
19 "docsUrl": "https://runtype.com/docs/api-keys",
20 "version": 1
21 }
22 ],
23 "configurationStatus": "configured",
24 "pendingConfigurationCount": 0,
25 "description": "Configure your secrets manually by providing the necessary keys and values.",
26 "returnUrl": "https://app.runtype.com/secrets/overview",
27 "handoff": {
28 "type": "url",
29 "url": "https://app.runtype.com/secrets/handoff/session123",
30 "expiresAt": "2024-07-01T12:00:00Z"
31 }
32}
Was this page helpful?
Previous

Submit secret values from intake screen

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Request

This endpoint expects an object.
sourceobjectRequired
returnUrlstringOptional

Response

Intake manifest
sourceobject
titlestring>=1 character
itemslist of objects
configurationStatusenum
Allowed values:
pendingConfigurationCountinteger>=0
descriptionstring
returnUrlstring
handoffobject

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error