npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@cryptodevops/n8n-nodes-opensea

v1.0.0

Published

n8n node for accessing NFT data via OpenSea API with comprehensive filtering and AI Agent support

Downloads

19

Readme

@cryptodevops/n8n-nodes-opensea

npm version

Ce package contient un nœud n8n personnalisé pour accéder aux données NFT via l'API OpenSea.

📦 Nœud inclus

OpenSea Node

  • NFT : Métadonnées et informations des NFTs
  • Collection : Données des collections NFT
  • Account : NFTs possédés par un compte
  • Events : Événements du marketplace

🚀 Fonctionnalités OpenSea

🖼️ NFT

  • Get NFT : Métadonnées d'un NFT spécifique
  • List NFTs by Collection : NFTs d'une collection
  • List NFTs by Contract : NFTs d'un contrat
  • Refresh NFT Metadata : Actualisation des métadonnées

📚 Collection

  • Get Collection : Détails d'une collection
  • List Collections : Collections disponibles

👤 Account

  • List NFTs by Account : NFTs possédés par un compte

📈 Events

  • List Events : Événements du marketplace

🔍 Filtres avancés

  • Chain Filter : Support multi-chaînes
  • Pagination : Limit et cursor
  • Sorting : Tri par différents critères
  • Event Types : Filtrage par type d'événement

🤖 Support IA

  • Résumés automatiques : Génération de résumés intelligents
  • Formatage des données : Données structurées pour l'IA
  • Métriques calculées : Statistiques automatiques

Chaînes supportées

  • Ethereum, Polygon, BSC, Arbitrum, Optimism, Avalanche, Base, Klaytn, Solana

🤖 Mode Agent IA

Le nœud OpenSea supporte le mode AI Agent avec des descriptions détaillées pour chaque opération, permettant une intégration facile avec des systèmes d'IA.

🔧 Filtres et options

  • Filtrage par chaîne : Support multi-chaînes
  • Pagination : Contrôle avec limit et cursor
  • Tri : Par différents critères
  • Filtrage par événements : Types d'événements spécifiques
  • Limitation des résultats : Contrôlez le nombre de résultats retournés

📦 Installation

npm install @cryptodevops/n8n-nodes-opensea

🧪 Testing

Vous pouvez tester l'API OpenSea localement :

# Test du nœud OpenSea
node test-opensea.js

🔑 Configuration

Credentials (Optionnel)

L'API OpenSea v2 nécessite une clé API pour la plupart des endpoints :

  1. Allez dans n8n → Credentials
  2. Créez une nouvelle credential "OpenSea API"
  3. Entrez votre clé API OpenSea

🎯 Exemples d'utilisation

Obtenir un NFT spécifique

{
  "resource": "nft",
  "operation": "getNft",
  "chain": "ethereum",
  "contractAddress": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
  "tokenId": "1"
}

Lister les NFTs d'une collection

{
  "resource": "nft",
  "operation": "listNftsByCollection",
  "collectionSlug": "boredapeyachtclub",
  "additionalFields": {
    "limit": 20
  }
}

Obtenir les détails d'une collection

{
  "resource": "collection",
  "operation": "getCollection",
  "collectionSlug": "cryptopunks"
}

📊 Format des données

NFT

{
  "identifier": "1",
  "collection": "boredapeyachtclub",
  "contract": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
  "token_standard": "erc721",
  "name": "Bored Ape #1",
  "description": "The Bored Ape Yacht Club...",
  "image_url": "https://...",
  "metadata_url": "https://...",
  "opensea_url": "https://opensea.io/assets/...",
  "_metadata": {
    "resource": "nft",
    "operation": "getNft",
    "fetched_at": "2024-01-15T10:30:00.000Z"
  }
}

🔗 Endpoints API utilisés

  • NFT : https://api.opensea.io/api/v2/chain/{chain}/contract/{address}/nfts/{token_id}
  • Collections : https://api.opensea.io/api/v2/collections
  • Events : https://api.opensea.io/api/v2/events/chain/{chain}

🤝 Contribution

Les contributions sont les bienvenues ! N'hésitez pas à :

  1. Fork le projet
  2. Créer une branche pour votre fonctionnalité
  3. Commiter vos changements
  4. Pousser vers la branche
  5. Ouvrir une Pull Request

📄 Licence

MIT

🔗 Liens utiles

🆘 Support

Pour toute question ou problème :

  1. Vérifiez la documentation OpenSea API
  2. Consultez les issues GitHub
  3. Contactez-nous à [email protected]

Note : Ce nœud n8n est un projet communautaire et n'est pas officiellement affilié à OpenSea ou n8n.io.