Talent Protocol Docs
  • DEVELOPERS
    • Get Started
    • Talent API
      • Authentication
      • API Reference - V1
        • [Deprecated] - Talent Passports
        • [Deprecated] - Credentials
      • API Reference - V2
        • Score
        • Credentials
        • Data points
        • Farcaster scores
        • Socials
        • Search
        • Accounts
      • Rate Limits
      • Pagination
    • API Pricing
    • Smart Contracts
  • Protocol Concepts
    • User
    • Account
    • Profile
    • Data Point
    • Data Issuer
    • Scoring Systems
      • Builder Score
        • Builder Score Levels
      • Creator Score
    • Human Checkmark
  • Socials
  • Data Points
    • Base
    • Bonsai
    • Bountycaster
    • BUILD
    • Coinbase
    • Crypto Nomads
    • Cyber
    • DAOBase
    • Degen
    • Developer DAO
    • Devfolio
    • ENS
    • ETHGlobal
    • Farcaster
    • GitHub
    • Human Checkmark
    • Jumper
    • Lens
    • Linkedin
    • Onchain Activity
    • Safe
    • Scroll
    • Serotonin
    • Taikai
    • Talent Protocol
    • X/Twitter
  • Legal
    • Terms of Service
    • Privacy Notice
    • Builder Rewards T&C
    • Builder Rewards with Celo T&C
    • Builder Score App T&C
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. DEVELOPERS
  2. Talent API
  3. API Reference - V2

Credentials

Endpoints to fetch Talent Protocol credentials

PreviousScoreNextData points

Last updated 1 day ago

Was this helpful?

Get the score and the credentials using wallet, scorer slug, talent id or account identifier

get
Query parameters
idstringOptional

Talent ID, wallet address or account identifier

account_sourcestringOptional

The source of the account:

  • farcaster
  • github
  • wallet
slugstringOptional

The slug of the data issuer to filter the credentials

scorer_slugstringOptional

The slug of the scorer to filter the credentials. Default is the builder score scorer

Header parameters
X-API-KEYstringOptional

Your Talent Protocol API key

Responses
200
Get credentials using Talent ID
application/json
401
unauthorized request
get
GET /credentials HTTP/1.1
Host: api.talentprotocol.com
Accept: */*
{
  "credentials": [
    {
      "category": "Activity",
      "data_issuer_name": "text",
      "data_issuer_slug": "text",
      "name": "text",
      "slug": "text",
      "readable_value": "text",
      "updated_at": "2025-05-23T22:06:17.238Z",
      "points": 1,
      "external_url": "text",
      "uom": "text",
      "max_score": 1,
      "calculating_score": true
    }
  ]
}

Get data issuers and credentials available

get
Header parameters
X-API-KEYstringOptional

Your Talent Protocol API key

Responses
200
Get data issuers and credentials meta
application/json
401
unauthorized request
get
GET /data_issuers_meta HTTP/1.1
Host: api.talentprotocol.com
Accept: */*
{
  "data_issuers": [
    {
      "name": "text",
      "slug": "text",
      "description": "text",
      "credentials": [
        {
          "slug": "text",
          "name": "text",
          "category": "Activity",
          "description": "text",
          "data_issuer_name": "text",
          "data_issuer_slug": "text"
        }
      ]
    }
  ]
}
  • GETGet the score and the credentials using wallet, scorer slug, talent id or account identifier
  • GETGet data issuers and credentials available