echo
InvokeEcho input text
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"text": {
"type": "string",
"minLength": 1
}
},
"required": [
"text"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'http://echo-agent-production.up.railway.app/entrypoints/echo/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"text": "string"
}
}
'