Dapr ServiceInvocation API

Service-to-service invocation operations.

Operations 5

GET /v1.0/invoke/{appId}/method/{method-name} Dapr Invoke Method (GET) #
POST /v1.0/invoke/{appId}/method/{method-name} Dapr Invoke Method (POST) #
PUT /v1.0/invoke/{appId}/method/{method-name} Dapr Invoke Method (PUT) #
DELETE /v1.0/invoke/{appId}/method/{method-name} Dapr Invoke Method (DELETE) #
PATCH /v1.0/invoke/{appId}/method/{method-name} Dapr Invoke Method (PATCH) #

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-serviceinvocation-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-serviceinvocation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dapr Actors Service Invocation 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: ServiceInvocation
  description: Service-to-service invocation operations.
paths:
  /v1.0/invoke/{appId}/method/{method-name}:
    get:
      summary: Dapr Invoke Method (GET)
      description: Invokes a method on a remote Dapr app using GET.
      operationId: invokeMethodGet
      tags:
      - ServiceInvocation
      parameters:
      - name: appId
        in: path
        required: true
        description: The App ID of the remote application.
        schema:
          type: string
      - name: method-name
        in: path
        required: true
        description: The name of the method to invoke.
        schema:
          type: string
      responses:
        '200':
          description: Method invoked successfully.
          content:
            application/json:
              schema: {}
        '403':
          description: Invocation forbidden by access controls.
        '500':
          description: Failed to invoke method.
    post:
      summary: Dapr Invoke Method (POST)
      description: Invokes a method on a remote Dapr app using POST.
      operationId: invokeMethodPost
      tags:
      - ServiceInvocation
      parameters:
      - name: appId
        in: path
        required: true
        description: The App ID of the remote application.
        schema:
          type: string
      - name: method-name
        in: path
        required: true
        description: The name of the method to invoke.
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema: {}
      responses:
        '200':
          description: Method invoked successfully.
          content:
            application/json:
              schema: {}
        '403':
          description: Invocation forbidden by access controls.
        '500':
          description: Failed to invoke method.
    put:
      summary: Dapr Invoke Method (PUT)
      description: Invokes a method on a remote Dapr app using PUT.
      operationId: invokeMethodPut
      tags:
      - ServiceInvocation
      parameters:
      - name: appId
        in: path
        required: true
        description: The App ID of the remote application.
        schema:
          type: string
      - name: method-name
        in: path
        required: true
        description: The name of the method to invoke.
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema: {}
      responses:
        '200':
          description: Method invoked successfully.
          content:
            application/json:
              schema: {}
        '403':
          description: Invocation forbidden by access controls.
        '500':
          description: Failed to invoke method.
    delete:
      summary: Dapr Invoke Method (DELETE)
      description: Invokes a method on a remote Dapr app using DELETE.
      operationId: invokeMethodDelete
      tags:
      - ServiceInvocation
      parameters:
      - name: appId
        in: path
        required: true
        description: The App ID of the remote application.
        schema:
          type: string
      - name: method-name
        in: path
        required: true
        description: The name of the method to invoke.
        schema:
          type: string
      responses:
        '200':
          description: Method invoked successfully.
          content:
            application/json:
              schema: {}
        '403':
          description: Invocation forbidden by access controls.
        '500':
          description: Failed to invoke method.
    patch:
      summary: Dapr Invoke Method (PATCH)
      description: Invokes a method on a remote Dapr app using PATCH.
      operationId: invokeMethodPatch
      tags:
      - ServiceInvocation
      parameters:
      - name: appId
        in: path
        required: true
        description: The App ID of the remote application.
        schema:
          type: string
      - name: method-name
        in: path
        required: true
        description: The name of the method to invoke.
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema: {}
      responses:
        '200':
          description: Method invoked successfully.
          content:
            application/json:
              schema: {}
        '403':
          description: Invocation forbidden by access controls.
        '500':
          description: Failed to invoke method.
externalDocs:
  description: Dapr Actors API Reference
  url: https://docs.dapr.io/reference/api/actors_api/