AI Integration · v1.0.0
AI Integration Skill
Download a skill file that enables AI agents to generate working Certyo integration code for any language or framework.
What's inside
- Authentication — API key setup and header format
- Core workflow — The 5-stage pipeline from ingestion to blockchain anchoring
- All public endpoints — Request/response schemas for record ingestion, verification, snapshots, and batch operations
- Rate limiting — Headers, 429 handling, and retry guidance
- Code examples — Working samples in curl, JavaScript, and Python
- Integration patterns — Fire-and-forget, polling, batch, and end-to-end verification workflows
How to use
Claude Code
Place the file in your project's .claude/commands/ directory, then use it as a slash command:
# Download the skill file
mkdir -p .claude/commands
curl -o .claude/commands/certyo-integration.md \
https://www.certyos.com/developers/certyo-integration-skill.md
# Use it in Claude Code
/certyo-integration "Generate a Node.js service that ingests billing records"Cursor / Copilot / Any AI Agent
Add the file to your project root or attach it to a conversation. The AI agent will use the endpoint specs, authentication details, and code examples to generate correct integration code.
# Add to your project
curl -o CERTYO_API.md \
https://www.certyos.com/developers/certyo-integration-skill.md
# Then in your AI agent:
"Using the Certyo API spec in CERTYO_API.md,
generate a Python service that ingests records
from our PostgreSQL database and verifies them."CLAUDE.md Context File
Append the skill file to your project's CLAUDE.md so every Claude conversation has Certyo API context automatically.
# Append to your project's CLAUDE.md
echo "" >> CLAUDE.md
echo "## Certyo API Integration" >> CLAUDE.md
cat CERTYO_API.md >> CLAUDE.mdEnterprise Integration Skill
An extended skill file covering integration patterns for 11 enterprise platforms. Drop it into your AI agent's context to generate platform-specific connector code.
What's inside
- Platform-specific patterns — Field mappings, authentication, and event triggers for each of the 11 supported enterprise platforms
- Code templates — Working snippets in C#, Python, JavaScript, Apex, SuiteScript, DataWeave, Groovy, and AL
- Architecture diagrams — Integration flow for each platform (trigger → transform → ingest → verify → write-back)
- Code generation rules — 10 rules the AI agent follows to produce production-quality integration code
Example usage
# Download both skill files
mkdir -p .claude/commands
curl -o .claude/commands/certyo-integration.md \
https://www.certyos.com/developers/certyo-integration-skill.md
curl -o .claude/commands/certyo-enterprise.md \
https://www.certyos.com/developers/certyo-enterprise-integration-skill.md
# Generate platform-specific integration code
/certyo-enterprise "Generate a SAP Integration Suite iFlow
that ingests material document events into Certyo"
/certyo-enterprise "Build an Azure Function that reads
from Service Bus and calls Certyo for Dynamics 365 shipments"
/certyo-enterprise "Create a Shopify webhook handler in Node.js
that ingests fulfilled orders and updates product metafields"
/certyo-enterprise "Write an Odoo automated action that sends
validated delivery orders to Certyo for blockchain anchoring"Changelog
v1.0.0 — April 2026
- Initial release of both skill files
- Core skill: record ingestion (single + bulk), verification, snapshot lifecycle, rate limiting, idempotency. Examples in curl, JavaScript, and Python.
- Enterprise skill: 11 platform integration patterns — Dynamics 365, SAP, NetSuite, Salesforce, Shopify Plus, SQL Server, MuleSoft, Power Automate, Azure, AWS, Odoo. Field mappings, auth configs, and code templates.