docs: add free tier API key to reduce onboarding friction#8
Merged
Conversation
Replace `'your-api-key'` placeholders across all documentation and examples with the free tier key (`1b72df7e-...`), allowing developers to start building immediately without requesting a key. - Add API Key Tiers table to SDK README (free vs production) - Update all code examples with free tier key and rate limit comment - Pre-configure .env.example files with the free key - Simplify example setup instructions (no manual key entry needed) - Update JSDoc examples in client.ts and middleware.ts - Update MIGRATION.md and MIDDLEWARE.md for consistency
drichar
added a commit
to TxnLab/skills
that referenced
this pull request
Feb 10, 2026
Replace placeholder `'your-api-key'` values with the free tier key (`1b72df7e-1131-4449-8ce1-29b79dd3f51e`) across all haystack-router skill files. This reflects the free tier added in TxnLab/haystack-js#8. - Add API Key Tiers section to configuration.md with free/production tiers - Update SKILL.md to mention the free key and link to configuration.md - Remove "API key — request from support" prerequisite from getting-started.md - Replace all placeholder keys in code examples across 7 reference files - Update .env example in node-automation.md with the free tier key Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 tasks
drichar
added a commit
to TxnLab/skills
that referenced
this pull request
Feb 10, 2026
Replace placeholder `'your-api-key'` values with the free tier key (`1b72df7e-1131-4449-8ce1-29b79dd3f51e`) across all haystack-router skill files. This reflects the free tier added in TxnLab/haystack-js#8. - Add API Key Tiers section to configuration.md with free/production tiers - Update SKILL.md to mention the free key and link to configuration.md - Remove "API key — request from support" prerequisite from getting-started.md - Replace all placeholder keys in code examples across 7 reference files - Update .env example in node-automation.md with the free tier key Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds the free tier API key (
1b72df7e-1131-4449-8ce1-29b79dd3f51e) across all documentation and example configurations, allowing developers to start building immediately without requesting a key first. The free tier supports 60 requests/min, covering all API calls (quotes and swap execution).No SDK source code behavior was changed — the
apiKeyconstructor option is still required. This is purely a documentation and example configuration update.Details
Key changes
'your-api-key'/your-api-key-hereplaceholders with the actual free tier key and a// Free tier (60 requests/min)comment.env.examplefiles with the free tier key so examples work out of the box aftercp .env.example .env@exampleblocks in client.ts and middleware.ts for consistencyTesting
pnpm buildpasses (verified locally)