Google TensorFlow Model Status API

Model metadata and status operations

Operations 2

GET /v1/models/{model_name} Google TensorFlow Get model status #
GET /v1/models/{model_name}/metadata Google TensorFlow Get model metadata #

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/google-tensorflow-model-status-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

google-tensorflow-model-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google TensorFlow TensorFlow Serving REST Model Status API
  description: TensorFlow Serving exposes a REST API for running inference on trained TensorFlow models. It supports predict, classify, and regress endpoints with model versioning and lifecycle management.
  version: '1'
  contact:
    name: TensorFlow Community
    url: https://www.tensorflow.org/community
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://localhost:8501
  description: Default TensorFlow Serving REST endpoint
tags:
- name: Model Status
  description: Model metadata and status operations
paths:
  /v1/models/{model_name}:
    get:
      operationId: getModelStatus
      summary: Google TensorFlow Get model status
      description: Returns the status of a model including available versions.
      tags:
      - Model Status
      parameters:
      - $ref: '#/components/parameters/model_name'
      responses:
        '200':
          description: Model status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelStatusResponse'
        '404':
          description: Model not found
  /v1/models/{model_name}/metadata:
    get:
      operationId: getModelMetadata
      summary: Google TensorFlow Get model metadata
      description: Returns metadata for a model including signature definitions that describe the model's inputs and outputs.
      tags:
      - Model Status
      parameters:
      - $ref: '#/components/parameters/model_name'
      responses:
        '200':
          description: Model metadata
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelMetadataResponse'
components:
  schemas:
    ModelMetadataResponse:
      type: object
      properties:
        model_spec:
          type: object
          properties:
            name:
              type: string
            version:
              type: string
        metadata:
          type: object
          additionalProperties: true
    ModelStatusResponse:
      type: object
      properties:
        model_version_status:
          type: array
          items:
            type: object
            properties:
              version:
                type: string
              state:
                type: string
                enum:
                - START
                - LOADING
                - AVAILABLE
                - UNLOADING
                - END
              status:
                type: object
                properties:
                  error_code:
                    type: string
                  error_message:
                    type: string
  parameters:
    model_name:
      name: model_name
      in: path
      required: true
      description: The name of the model
      schema:
        type: string
externalDocs:
  description: TensorFlow Serving REST API Documentation
  url: https://www.tensorflow.org/tfx/serving/api_rest