Skip to main content

Validate Actor input

POST 

/v2/acts/:actorId/validate-input

Validates the provided input against the Actor's input schema for the specified build.

The endpoint checks whether the JSON payload conforms to the input schema defined in the Actor's build. If no build query parameter is provided, the latest build tag is used by default.

Request

Path Parameters

    actorId string required

    Actor ID or a tilde-separated owner's username and Actor name.


    Example: janedoe~my-actor

Query Parameters

    build string

    Optional tag or number of the Actor build to use for input schema validation. By default, the latest build tag is used.


    Example: latest

Bodyrequired

JSON input to validate against the Actor's input schema.

  • object object

Status 200

Response Headers
    {
    "valid": true
    }