Skip to content
Skillv1.0.0

linktree-install-auth

Install and configure Linktree SDK/API authentication. Use when setting up a new Linktree integration. Trigger: "install linktree", "setup linktree", "linktree auth".

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (plugins/saas-packs/linktree-pack/skills/linktree-install-auth/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill linktree-install-auth. Copyright stays with the author (MIT).

Linktree Install & Auth

Overview

Set up Linktree API for programmatic link-in-bio management with 25M+ creators.

Prerequisites

  • Linktree account and API access
  • API key/credentials from Linktree dashboard
  • Node.js 18+ or Python 3.8+

Instructions

Step 1: Install SDK

npm install @linktree/sdk
# or: pip install linktree-sdk

Step 2: Configure Authentication

export LINKTREE_API_KEY="your-api-key-here"
echo 'LINKTREE_API_KEY=your-api-key' >> .env

Step 3: Verify Connection (TypeScript)

import { LinktreeClient } from '@linktree/sdk';
const client = new LinktreeClient({ apiKey: process.env.LINKTREE_API_KEY });
const profile = await client.profiles.get('myprofile');
console.log(`Profile: ${profile.username} — ${profile.links.length} links`);

Step 4: Verify Connection (Python)

import linktree
client = linktree.Client(api_key=os.environ['LINKTREE_API_KEY'])
profile = client.profiles.get('myprofile')
print(f'Profile: {profile.username}{len(profile.links)} links')

Error Handling

Error Code Solution
Invalid API key 401 Verify credentials in dashboard
Permission denied 403 Check API scopes/permissions
Rate limited 429 Implement backoff

Resources

Next Steps

After auth, proceed to linktree-hello-world.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-linktree-inst-a49fad/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-linktree-inst-a49fad.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-linktree-inst-a49fad",
  "kind": "skill",
  "name": "linktree-install-auth",
  "description": "Install and configure Linktree SDK/API authentication. Use when setting up a new Linktree integration. Trigger: \"install linktree\", \"setup linktree\", \"linktree auth\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "linktree",
      "social",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Install and configure Linktree SDK/API authentication. Use when setting up a new Linktree integration. Trigger: \"install linktree\", \"setup linktree\", \"linktree auth\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "plugins/saas-packs/linktree-pack/skills/linktree-install-auth/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/plugins/saas-packs/linktree-pack/skills/linktree-install-auth/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/plugins/saas-packs/linktree-pack/skills/linktree-install-auth/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(npm:*),",
      "Bash(pip:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Linktree Install & Auth\n\n## Overview\n\nSet up Linktree API for programmatic link-in-bio management with 25M+ creators.\n\n## Prerequisites\n\n- Linktree account and API access\n- API key/credentials from Linktree dashboard\n- Node.js 18+ or Python 3.8+\n\n## Instructions\n\n### Step 1: Install SDK\n\n```bash\nnpm install @linktree/sdk\n# or: pip install linktree-sdk\n```\n\n### Step 2: Configure Authentication\n\n```bash\nexport LINKTREE_API_KEY=\"your-api-key-here\"\necho 'LINKTREE_API_KEY=your-api-key' >> .env\n```\n\n### Step 3: Verify Connection (TypeScript)\n\n```typescript\nimport { LinktreeClient } from '@linktree",
  "cost": {
    "context_tokens": 362
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-linktree-inst-a49fad/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.