Available Actions
getpostputdeletepatch
Input Schema
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string"
},
"body": {
"type": "object"
},
"method": {
"type": "string"
},
"headers": {
"type": "object"
}
}
}Output Schema
{
"type": "object",
"properties": {
"body": {
"type": "any"
},
"status": {
"type": "number"
},
"headers": {
"type": "object"
}
}
}Quick Start
API Endpoint
POST /api/execute/http-clientcURL Example
curl -X POST \
https://api.nulayers.com/execute/http-client \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action": "get"}'