Dapr Secrets API

Secret management operations.

Operations 2

GET /v1.0/secrets/{secret-store-name}/{name} Dapr Get Secret #
GET /v1.0/secrets/{secret-store-name}/bulk Dapr Get Bulk Secrets #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/dapr-secrets-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

dapr-secrets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dapr Actors Secrets API
  description: The Dapr Actors API provides virtual actor capabilities for distributed applications, including actor method invocation, state management, timers, and reminders. Actors provide a single-threaded programming model with guaranteed message ordering.
  version: 1.0.0
  contact:
    name: Dapr
    url: https://dapr.io
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://localhost:3500
  description: Dapr Sidecar
tags:
- name: Secrets
  description: Secret management operations.
paths:
  /v1.0/secrets/{secret-store-name}/{name}:
    get:
      summary: Dapr Get Secret
      description: Retrieves a secret from the specified secret store by name. Supports optional per-request metadata such as version_id and version_stage.
      operationId: getSecret
      tags:
      - Secrets
      parameters:
      - name: secret-store-name
        in: path
        required: true
        description: The name of the secret store component.
        schema:
          type: string
      - name: name
        in: path
        required: true
        description: The name of the secret to retrieve.
        schema:
          type: string
      - name: metadata.version_id
        in: query
        description: Version identifier for the secret (supported by Hashicorp Vault, GCP Secret Manager, AWS Secret Manager).
        schema:
          type: string
      - name: metadata.version_stage
        in: query
        description: Version stage for the secret (supported by AWS Secret Manager).
        schema:
          type: string
      - name: metadata.namespace
        in: query
        description: Kubernetes namespace (supported by Kubernetes Secrets).
        schema:
          type: string
      responses:
        '200':
          description: Secret retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: string
        '403':
          description: Access denied by secret store access policy.
        '404':
          description: Secret not found.
        '500':
          description: Failed to get secret.
  /v1.0/secrets/{secret-store-name}/bulk:
    get:
      summary: Dapr Get Bulk Secrets
      description: Retrieves all secrets from the specified secret store in a single request.
      operationId: getBulkSecrets
      tags:
      - Secrets
      parameters:
      - name: secret-store-name
        in: path
        required: true
        description: The name of the secret store component.
        schema:
          type: string
      responses:
        '200':
          description: Bulk secrets retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
                  additionalProperties:
                    type: string
        '403':
          description: Access denied by secret store access policy.
        '500':
          description: Failed to get bulk secrets.
externalDocs:
  description: Dapr Actors API Reference
  url: https://docs.dapr.io/reference/api/actors_api/