Developer Documentation
Integrate Tailwind Help directly into your workflow. Manage your private components, search the library, and automate your design-to-code process.
1 Authentication
All API requests must include your API key in the headers. You can generate and manage your API keys in your Account Settings under the Security tab.
Headers
2 Rate Limits
Rate limits are enforced to ensure stability. Each response includes headers indicating your current status:
Response Headers
Rate limits are applied per User ID and IP address.
3 Endpoints
/api/external/searchSearch for official components and community snippets.
Query Parameters
qSearch query string (optional)categoryFilter by category (optional)limitNumber of results (1-50, default 10)
/api/external/snippetsList all your private snippets.
/api/external/snippetsCreate a new private snippet.
Request Body (JSON)
{
"title": "My Component",
"code": "<div>...</div>",
"description": "Optional description",
"folder": "My Folder",
"libraries": ["lucide", "framer-motion"]
}/api/external/snippets/:idInteract with a specific snippet by its ID.
- GET: Retrieve the full snippet details.
- PATCH: Update snippet fields (title, code, etc).
- DELETE: Permanently remove the snippet.
Need help?
Have questions about the API or need higher rate limits? Reach out to our team.
Contact Support