Gitcoin Model Analysis API

The Model Analysis API from Gitcoin — 1 operation(s) for model analysis.

Operations 1

GET /v2/models/score/{address} Retrieve Passport analysis for an Ethereum address #

Documentation

Specifications

Schemas & Data

Other Resources

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/gitcoin-model-analysis-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

gitcoin-model-analysis-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gitcoin Core Bounties Model Analysis API
  version: 0.1.0
  description: Read-only REST API providing access to Gitcoin bounties and grants data. Supports filtering by experience level, project length, bounty type, owner address, open status, and GitHub URL. Returns JSON-formatted data including funding amounts, contributor addresses, token types, and project metadata.
  termsOfService: https://gitcoin.co/terms
  contact:
    name: Gitcoin Support
    url: https://support.gitcoin.co/
  license:
    name: Gitcoin Terms
    url: https://gitcoin.co/terms
servers:
- url: https://gitcoin.co/api/v0.1
  description: Gitcoin API v0.1
tags:
- name: Model Analysis
paths:
  /v2/models/score/{address}:
    get:
      operationId: v2_api_api_models_get_analysis
      summary: Retrieve Passport analysis for an Ethereum address
      parameters:
      - in: path
        name: address
        schema:
          title: Address
          type: string
        required: true
      - in: query
        name: model
        schema:
          default: ''
          title: Model
          type: string
        required: false
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PassportAnalysisResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
      description: Retrieve Passport analysis for an Ethereum address, currently consisting of the ETH activity model humanity score (0-100, higher is more likely human).
      tags:
      - Model Analysis
      security:
      - function: []
components:
  schemas:
    ScoreModel:
      properties:
        score:
          title: Score
          type: number
      required:
      - score
      title: ScoreModel
      type: object
    PassportAnalysisDetails:
      properties:
        models:
          additionalProperties:
            anyOf:
            - $ref: '#/components/schemas/ScoreModel'
            - $ref: '#/components/schemas/DetailedScoreModel'
          title: Models
          type: object
      required:
      - models
      title: PassportAnalysisDetails
      type: object
    PassportAnalysisResponse:
      properties:
        address:
          title: Address
          type: string
        details:
          $ref: '#/components/schemas/PassportAnalysisDetails'
      required:
      - address
      - details
      title: PassportAnalysisResponse
      type: object
    DetailedScoreModel:
      properties:
        score:
          title: Score
          type: integer
        num_transactions:
          anyOf:
          - type: integer
          - type: 'null'
          title: Num Transactions
        first_funder:
          anyOf:
          - type: string
          - type: 'null'
          title: First Funder
        first_funder_amount:
          anyOf:
          - type: number
          - type: 'null'
          title: First Funder Amount
        first_funder_timestamp:
          anyOf:
          - type: string
          - type: 'null'
          title: First Funder Timestamp
      required:
      - score
      - num_transactions
      - first_funder
      - first_funder_amount
      - first_funder_timestamp
      title: DetailedScoreModel
      type: object
    ErrorMessageResponse:
      properties:
        detail:
          title: Detail
          type: string
      required:
      - detail
      title: ErrorMessageResponse
      type: object
externalDocs:
  description: Gitcoin API Documentation
  url: https://docs.gitcoin.co/mk_rest_api/