askill
netbox-integration-best-practices

netbox-integration-best-practicesSafety 90Repository

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.

7 stars
1.2k downloads
Updated 2/8/2026

Package Files

Loading files...
SKILL.md

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

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-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

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

95/100Analyzed 2/9/2026

An exceptional technical reference for NetBox API integrations, featuring clear versioning, actionable query patterns, and comprehensive performance guidelines.

90
100
100
98
95

Metadata

Licenseunknown
Version-
Updated2/8/2026
PublisherNeverSight

Tags

apigithubgraphqlllmsecurity