get-shape
InvokeGet the shape of a constellation as line segments in 0-1 normalized coordinates
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1
}
},
"required": [
"name"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://constellation-shapes-production.up.railway.app/entrypoints/get-shape/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"name": "string"
}
}
'