Volant
HomeDocsAPI Reference
HomeDocsAPI Reference
  1. vfio
  • health
    • Health check
      GET
  • status
    • System status summary
      GET
  • system
    • Get system information
      GET
  • events
    • Stream VM lifecycle events
      GET
  • vm
    • List VMs
      GET
    • Create VM
      POST
    • Destroy VM
      DELETE
    • Fetch VM by name
      GET
    • Get VM configuration
      GET
    • Update VM configuration
      PATCH
    • Get VM configuration history
      GET
    • Get VM plugin OpenAPI spec
      GET
    • Restart a VM
      POST
    • Start a stopped VM
      POST
    • Stop a running VM
      POST
  • plugins
    • List plugins
      GET
    • Install plugin
      POST
    • Remove plugin
      DELETE
    • Get plugin
      GET
    • Set plugin enabled status
      POST
  • deployment
    • List deployments
    • Create deployment
    • Delete deployment
    • Get deployment
    • Scale deployment
  • vfio
    • Bind devices to vfio-pci
      POST
    • Get VFIO group paths
      POST
    • Get VFIO device information
      POST
    • Check IOMMU groups
      POST
    • Unbind devices from vfio-pci
      POST
    • Validate VFIO devices
      POST
  • mcp
    • Model Context Protocol endpoint
  1. vfio

Check IOMMU groups

POST
/api/v1/vfio/devices/iommu-groups
Get IOMMU group information for specified PCI devices

Request

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
IOMMU group information
Body

🟢200Success
🟠400Bad Request
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/vfio/devices/iommu-groups' \
--header 'Content-Type: application/json' \
--data-raw '{
    "allowlist": [
        "string"
    ],
    "pci_addresses": [
        "string"
    ]
}'
Response Response Example
200 - Example 1
[
    {
        "devices": [
            "string"
        ],
        "id": "string"
    }
]
Modified at 2025-10-05 14:31:30
Previous
Get VFIO device information
Next
Unbind devices from vfio-pci
Built with