Amazon Deadline Cloud Workers API

Operations for managing farm workers

Operations 1

GET /2023-10-12/farms/{farmId}/fleets/{fleetId}/workers List Workers #

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/amazon-deadline-cloud-workers-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

amazon-deadline-cloud-workers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon Deadline Cloud Farms Workers API
  description: The Amazon Deadline Cloud API provides programmatic access to manage farms, queues, fleets, jobs, and workers for cloud-based rendering and simulation workloads on AWS.
  version: 2023-10-12
  contact:
    name: AWS Support
    url: https://aws.amazon.com/premiumsupport/
servers:
- url: https://deadline.amazonaws.com
  description: Amazon Deadline Cloud API
security:
- awsSignatureV4: []
tags:
- name: Workers
  description: Operations for managing farm workers
paths:
  /2023-10-12/farms/{farmId}/fleets/{fleetId}/workers:
    get:
      operationId: listWorkers
      summary: List Workers
      description: Lists workers in a compute fleet.
      tags:
      - Workers
      parameters:
      - name: farmId
        in: path
        required: true
        schema:
          type: string
      - name: fleetId
        in: path
        required: true
        schema:
          type: string
      - name: maxResults
        in: query
        schema:
          type: integer
      responses:
        '200':
          description: List of workers returned successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListWorkersResponse'
              examples:
                default:
                  x-microcks-default: true
                  value:
                    workers:
                    - workerId: worker-001abc
                      fleetId: fleet-001abc
                      farmId: farm-0abc123
                      status: STARTED
                      createdAt: '2024-04-15T08:00:00Z'
components:
  schemas:
    ListWorkersResponse:
      description: Response containing a list of workers.
      type: object
      properties:
        workers:
          type: array
          items:
            $ref: '#/components/schemas/Worker'
        nextToken:
          type: string
    Worker:
      description: A compute worker instance in a Deadline Cloud fleet executing rendering tasks.
      type: object
      properties:
        workerId:
          type: string
          description: The unique identifier of the worker
        fleetId:
          type: string
        farmId:
          type: string
        status:
          type: string
          enum:
          - CREATED
          - STARTED
          - STOPPING
          - STOPPED
          - NOT_COMPATIBLE
          - NOT_RESPONDING
        createdAt:
          type: string
          format: date-time
  securitySchemes:
    awsSignatureV4:
      type: apiKey
      in: header
      name: Authorization
      description: AWS Signature Version 4 authentication