# Container Canaries

These are a collection of endpoints related to Container Canaries. Currently, these relate to Docker Canaries.

# List Container Canary Images

GET /api/v1/containercanary/images

Returns a list of available Container Canary Images

Required Parameters

auth_token string
A valid auth token

Response

A JSON Structure containing a list of available Container Canary images.

Example

    Response
    {
      "docker": [],
      "result": "success"
    }
    
    1
    2
    3
    4