---
title: "List allowed methods for a service"
method: GET
path: "/actions/services/{service}/methods"
tags: ["Actions"]
---

# List allowed methods for a service

`GET /actions/services/{service}/methods`

Return the methods allowed for the given service, each with its parameter definitions (name, type, whether required, description, and optional default/example). Returns 404 if the service is unknown.

## Path parameters

- `service` string, required

## Response `200`

Allowed methods

- object
  - `data` ServiceMethod[], required
    - `method` string, required
    - `params` ParamDef[], required
      - `name` string, required
      - `type` 'string' | 'number' | 'boolean' | 'object' | 'array', required
      - `required` boolean, required
      - `description` string, required
      - `default` unknown
      - `example` unknown

## Other responses

- `404` — Not Found

---

[API](https://skmtc.net/mobilerun/apis/workflows.md) · [All operations](https://skmtc.net/mobilerun/apis/workflows/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mobilerun/workflows/revisions/1bc499aa8f99/schema)
