Skip to Content

Get Input Status

GET/v0/pipelines/{pipeline_name}/tables/{table_name}/connectors/{connector_name}/stats
Authentication
Parameters

Retrieve the status of an input connector.

Authentication

SchemeTypeDetails
JSON web token (JWT) or API keyBearer tokenAuthorization header · Use a JWT token obtained via an OAuth2/OIDC login workflow or an API key obtained via the `/v0/api-keys` endpoint.

Parameters

Path parameters

NameTypeRequiredDescription
pipeline_namestringYesUnique pipeline name
table_namestringYesUnique table name
connector_namestringYesUnique input connector name

Response

application/json
Input connector status retrieved successfully
  • object
    Input endpoint status information.
    • barrierbooleanrequired
      Endpoint is currently a barrier to checkpointing and suspend.
    • completed_frontierobject
    • configobjectrequired
      Schema definition for endpoint config that only includes the stream field.
    • endpoint_namestringrequired
      Endpoint name.
    • fatal_errorstring
      The first fatal error that occurred at the endpoint.
    • healthobject
    • metricsobjectrequired
      Performance metrics for an input endpoint.
    • parse_errorsConnectorError[]
      Recent parse errors on this endpoint.
    • pausedbooleanrequired
      Endpoint has been paused by the user.
    • transport_errorsConnectorError[]
      Recent transport errors on this endpoint.
Request
curl -X GET '/v0/pipelines/{pipeline_name}/tables/{table_name}/connectors/{connector_name}/stats' \
  -H 'Authorization: Bearer YOUR_TOKEN'