netbox-integration-best-practices

Best practices for building integrations with NetBox REST and GraphQL APIs. Use when building NetBox API integrations, reviewing integration code, troubleshooting NetBox performance issues, planning automation architecture, writing scripts that interact with NetBox, using pynetbox, configuring Diode for data ingestion, or implementing NetBox webhooks.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "netbox-integration-best-practices" with this command: npx skills add netboxlabs/netbox-best-practices/netboxlabs-netbox-best-practices-netbox-integration-best-practices

NetBox Integration Best Practices Skill

This skill provides best practices guidance for building integrations and automations with NetBox REST and GraphQL APIs.

Target Audience

  • Engineers building integrations atop NetBox APIs
  • Teams planning new automations with Claude
  • Developers learning NetBox API best practices

Scope: This skill covers API integration patterns. It does NOT cover plugin development, custom scripts, or NetBox administration.

NetBox Version Requirements

FeatureVersion Required
REST APIAll versions
GraphQL API2.9+
v2 Tokens4.5+ (use these!)
v1 Token Deprecation4.7+ (migrate before this)

Primary target: NetBox 4.4+ with 4.5+ for v2 token features.

When to Apply This Skill

Apply these practices when:

  • Building new NetBox API integrations
  • Reviewing existing integration code
  • Troubleshooting performance issues
  • Planning automation architecture
  • Writing scripts that interact with NetBox

Priority Levels

LevelDescriptionAction
CRITICALSecurity vulnerabilities, data loss, severe performanceMust fix immediately
HIGHSignificant performance/reliability impactShould fix soon
MEDIUMNotable improvements, best practicesPlan to address
LOWMinor improvements, optionalConsider when convenient

Quick Reference

Authentication

  • Use v2 tokens on NetBox 4.5+: Bearer nbt_<key>.<token>
  • Migrate from v1 before NetBox 4.7 (deprecation planned)

REST API

  • Always paginate: ?limit=100 (max 1000)
  • Use PATCH for partial updates, not PUT
  • Use ?brief=True for list operations
  • Exclude config_context: ?exclude=config_context (major performance impact)
  • Avoid ?q= search filter at scale; use specific filters
  • Bulk operations use list endpoints with JSON arrays (not separate endpoints)

GraphQL

  • Use the query optimizer: netbox-graphql-query-optimizer
  • Always paginate every list query
  • Paginate at every level of nesting
  • Beware offset pagination at scale: Deep offsets are slow; use ID range filtering in 4.5.x, cursor-based in 4.6.0+ (#21110)
  • Request only needed fields
  • Keep depth ≤3, never exceed 5

Performance

  • Exclude config_context from device lists
  • Use brief mode for large lists
  • Parallelize independent requests

Data Ingestion (Diode)

  • For high-volume data ingestion, use Diode instead of direct API
  • Specify dependencies by name, not ID—Diode resolves or creates them
  • No dependency order needed—Diode handles object creation order
  • Use pip install netboxlabs-diode-sdk for Python
  • Use REST/GraphQL API for reading; use Diode for writing/populating

Branching (Plugin)

Requires netbox-branching plugin.

  • Lifecycle: Create → Wait (PROVISIONING→READY) → Work → Sync → Merge
  • Context header: X-NetBox-Branch: {schema_id} (8-char ID, not name)
  • Async operations: sync/merge/revert return Job objects—poll for completion
  • Dry-run: All async ops accept {"commit": false} for validation

Rules by Category

Authentication Rules

RuleImpactDescription
auth-use-v2-tokensCRITICALUse v2 tokens on NetBox 4.5+
auth-provisioning-endpointMEDIUMUse provisioning endpoint for automated token creation

REST API Rules

RuleImpactDescription
rest-list-endpoint-bulk-opsCRITICALUse list endpoints for bulk operations
rest-pagination-requiredHIGHAlways paginate list requests
rest-patch-vs-putHIGHUse PATCH for partial updates
rest-brief-modeHIGHUse ?brief=True for lists
rest-field-selectionHIGHUse ?fields= to select fields
rest-exclude-config-contextHIGHExclude config_context from device lists
rest-avoid-search-filter-at-scaleHIGHAvoid q= with large datasets
rest-filtering-expressionsMEDIUMUse lookup expressions
rest-custom-field-filtersMEDIUMFilter by custom fields
rest-nested-serializersLOWUnderstand nested serializers
rest-ordering-resultsLOWUse ordering parameter
rest-options-discoveryLOWUse OPTIONS for discovery

GraphQL Rules

RuleImpactDescription
graphql-use-query-optimizerCRITICALUse query optimizer
graphql-always-paginateCRITICALPaginate every list query
graphql-pagination-at-each-levelHIGHPaginate nested lists
graphql-select-only-neededHIGHRequest only needed fields
graphql-calibrate-optimizerHIGHCalibrate against production
graphql-max-depthHIGHKeep depth ≤3
graphql-prefer-filtersMEDIUMFilter server-side
graphql-vs-rest-decisionMEDIUMChoose appropriate API
graphql-complexity-budgetsLOWEstablish complexity budgets

Performance Rules

RuleImpactDescription
perf-exclude-config-contextHIGHExclude config_context
perf-brief-mode-listsHIGHUse brief mode for lists

Data Modeling Rules

RuleImpactDescription
data-dependency-orderCRITICALCreate objects in dependency order
data-site-hierarchyMEDIUMUnderstand site hierarchy
data-ipam-hierarchyMEDIUMUnderstand IPAM hierarchy
data-custom-fieldsMEDIUMUse custom fields properly
data-tags-usageMEDIUMUse tags for classification
data-tenant-isolationMEDIUMUse tenants for separation
data-natural-keysMEDIUMUse natural keys

Integration Rules

RuleImpactDescription
integ-diode-ingestionHIGHUse Diode for high-volume data ingestion
integ-pynetbox-clientHIGHUse pynetbox for Python
integ-branch-api-workflowHIGHComplete branching lifecycle (plugin)
integ-branch-context-headerHIGHBranch context with X-NetBox-Branch header (plugin)
integ-branch-async-operationsMEDIUMJob polling for sync/merge/revert (plugin)
integ-webhook-configurationMEDIUMConfigure webhooks
integ-change-trackingLOWQuery object changes

External References

Official Documentation

Essential Tools

Community

Reference Documentation

DocumentPurpose
HUMAN.mdHuman-readable guide for engineers
netbox-integration-guidelines.mdComprehensive technical reference

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

openclaw-version-monitor

监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明

Archived SourceRecently Updated
Coding

ask-claude

Delegate a task to Claude Code CLI and immediately report the result back in chat. Supports persistent sessions with full context memory. Safe execution: no data exfiltration, no external calls, file operations confined to workspace. Use when the user asks to run Claude, delegate a coding task, continue a previous Claude session, or any task benefiting from Claude Code's tools (file editing, code analysis, bash, etc.).

Archived SourceRecently Updated
Coding

ai-dating

This skill enables dating and matchmaking workflows. Use it when a user asks to make friends, find a partner, run matchmaking, or provide dating preferences/profile updates. The skill should execute `dating-cli` commands to complete profile setup, task creation/update, match checking, contact reveal, and review.

Archived SourceRecently Updated
Coding

clawhub-rate-limited-publisher

Queue and publish local skills to ClawHub with a strict 5-per-hour cap using the local clawhub CLI and host scheduler.

Archived SourceRecently Updated