Hugging Face · Example Payload

Hugging Face Listproviders Example

Hugging Face Listproviders Example is an example object payload from Hugging Face, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "listProviders",
  "method": "GET",
  "path": "/provider",
  "summary": "List Available Providers",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Listproviders200Example",
      "example": {
        "items": [
          {
            "vendor": "aws",
            "region": "example_value",
            "status": "available",
            "accelerators": [
              {}
            ]
          }
        ]
      }
    }
  ]
}