Quick Start
This guide will get you up and running with AACSearch in under 5 minutes.
Search the Web Interface
Section titled “Search the Web Interface”- Go to aacsearch.com
- Type your query in the search bar
- Use filters to narrow by category, language, or symbol set
Use the API
Section titled “Use the API”curl "https://api.aacsearch.com/v1/search?q=communication+board&lang=en"Install the SDK
Section titled “Install the SDK”npm install @aacsearch/sdkimport { AACSearch } from '@aacsearch/sdk';
const aac = new AACSearch({ apiKey: process.env.AACSEARCH_API_KEY });const results = await aac.search('emotions board');Next Steps
Section titled “Next Steps”- Installation Guide — Set up locally
- API Reference — Full API documentation
- SDK Documentation — SDK usage and examples