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
      • 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
      • GETGet secret metadata
      • PUTUpdate or rotate a secret
      • DELDelete a secret
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: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "source": {
> "type": "manual"
> }
>}'
1{
2 "configurationStatus": "configured",
3 "items": [
4 {
5 "itemId": "api_key_001",
6 "secretKey": "sk_live_1234567890abcdef",
7 "status": "configured",
8 "description": "API key used for authenticating requests.",
9 "displayName": "API Key",
10 "docsUrl": "https://runtype.com/docs/api-keys",
11 "helpText": "Enter your Runtype API key here.",
12 "placeholder": "sk_live_1234567890abcdef",
13 "required": true,
14 "secretId": "secret_001",
15 "version": 2
16 }
17 ],
18 "pendingConfigurationCount": 0,
19 "source": {
20 "type": "manual",
21 "key": "manual_entry_01",
22 "productId": "prod_987654321"
23 },
24 "title": "Manual Secret Intake Manifest",
25 "description": "Configuration for manual secret intake completed successfully.",
26 "handoff": {
27 "expiresAt": "2024-12-31T23:59:59Z",
28 "type": "url",
29 "url": "https://runtype.com/secrets/handoff/abc123"
30 },
31 "returnUrl": "https://runtype.com/dashboard/secrets"
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
configurationStatusenum
Allowed values:
itemslist of objects
pendingConfigurationCountinteger>=0
sourceobject
titlestring>=1 character
descriptionstring
handoffobject
returnUrlstring

Errors

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