Amika Git user settings API

The Git user settings API from Amika — 1 operation(s) for git user settings.

Operations 2

GET /git-user-settings Read the caller's git user settings
POST /git-user-settings Create or update the caller's git user settings

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/amika-git-user-settings-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

amika-git-user-settings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amika API — v0beta1 API keys Git user settings API
  version: 0beta1
servers:
- url: https://app.amika.dev/api/v0beta1
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Git user settings
paths:
  /git-user-settings:
    get:
      tags:
      - Git user settings
      summary: Read the caller's git user settings
      security:
      - bearerAuth: []
      - cookieAuth: []
      responses:
        '200':
          description: Configured git user settings, or a suggestion derived from the WorkOS profile when none are saved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GitUserSettingsResponse'
        '401':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
        '403':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
    post:
      tags:
      - Git user settings
      summary: Create or update the caller's git user settings
      security:
      - bearerAuth: []
      - cookieAuth: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpsertGitUserSettingsRequest'
      responses:
        '201':
          description: Updated row.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GitUserSettingsRow'
        '400':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
        '401':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
        '403':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
components:
  schemas:
    UpsertGitUserSettingsRequest:
      type: object
      properties:
        name:
          type: string
          minLength: 1
        email:
          type: string
          minLength: 1
      required:
      - name
      - email
    GitUserSettingsRow:
      type: object
      properties:
        id:
          type: string
        org_id:
          type: string
        user_id:
          type: string
        name:
          type: string
        email:
          type: string
        created_at:
          type: string
        updated_at:
          type: string
      required:
      - id
      - org_id
      - user_id
      - name
      - email
      - created_at
      - updated_at
    GitUserSettingsResponse:
      anyOf:
      - type: object
        properties:
          configured:
            type: boolean
            enum:
            - true
          name:
            type: string
          email:
            type: string
          suggestion:
            type: object
            properties:
              name:
                type: string
              email:
                type: string
            required:
            - name
            - email
        required:
        - configured
        - name
        - email
        - suggestion
      - type: object
        properties:
          configured:
            type: boolean
            enum:
            - false
          suggestion:
            type: object
            properties:
              name:
                type: string
              email:
                type: string
            required:
            - name
            - email
        required:
        - configured
        - suggestion