> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fetchbean.com/llms.txt
> Use this file to discover all available pages before exploring further.

# github_whoami

> Run the github_whoami tool. Returns a clean, normalized JSON shape. Bring your own key — connect github first via POST /v1/connections.



## OpenAPI

````yaml /openapi.json post /v1/github_whoami
openapi: 3.1.0
info:
  title: fetchbean API
  version: v1
  description: >-
    One key for web search, page reads, weather, social data, and raw provider
    access.
servers:
  - url: https://api.fetchbean.com
security:
  - bearerAuth: []
paths:
  /v1/github_whoami:
    post:
      tags:
        - Tools
      summary: github_whoami
      description: >-
        Run the github_whoami tool. Returns a clean, normalized JSON shape.
        Bring your own key — connect github first via POST /v1/connections.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              additionalProperties: true
              type: object
              properties: {}
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Authentication error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Insufficient credits
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
            code:
              type: string
            message:
              type: string
            retryable:
              type: boolean
            billable:
              type: boolean
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Your fetchbean API key (fb_…).

````