Back to Tools

GitHub

Developer

Interact with GitHub repositories. Create issues, PRs, manage branches, and access repository data.

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/github

cURL Example

curl -X POST \
  https://api.nulayers.com/execute/github \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"action": "repos"}'
Integration

Get your API key from the dashboard to start using this tool in your AI applications.