Available Actions
reposissuespullscommits
Input Schema
{
"type": "object",
"required": [
"owner",
"repo",
"action"
],
"properties": {
"repo": {
"type": "string"
},
"owner": {
"type": "string"
},
"action": {
"type": "string"
}
}
}Output Schema
{
"type": "object",
"properties": {
"data": {
"type": "any"
}
}
}Quick Start
API Endpoint
POST /api/execute/githubcURL Example
curl -X POST \
https://api.nulayers.com/execute/github \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action": "repos"}'