GENXT Confidential LLM API
    GENXT Confidential LLM API
    • Server attestation
      POST
    • Generate a completion
      POST
    • Generate a chat completion
      POST
    • List Local Models
      GET
    • Show Model Information
      POST
    • Generate Embeddings
      POST
    • OpenAI compatible endpoints
      POST

      Show Model Information

      POST
      https://api.genxt.ai/api/show
      Show information about a model including details, modelfile, template, parameters, license, and system prompt.
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST 'https://api.genxt.ai/api/show' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "name": "string"
      }'
      Response Response Example
      {
          "modelfile": "string",
          "parameters": "string",
          "template": "string",
          "details": {
              "format": "string",
              "family": "string",
              "parameter_size": "string",
              "quantization_level": "string"
          }
      }

      Request

      Authorization
      Provide your bearer token in the
      Authorization
      header when making requests to protected resources.
      Example:
      Authorization: Bearer ********************
      Body Params application/json
      name
      string 
      required
      Name of the model to show.
      Examples

      Responses

      🟢200Model information including details, modelfile, template, parameters, license, and system prompt.
      application/json
      Body
      modelfile
      string 
      optional
      parameters
      string 
      optional
      template
      string 
      optional
      details
      object 
      optional
      format
      string 
      optional
      family
      string 
      optional
      parameter_size
      string 
      optional
      quantization_level
      string 
      optional
      Previous
      List Local Models
      Next
      Generate Embeddings
      Built with