APEX Quickstart — Get Your First API Request in 2 Minutes
Step 1: Get API Key (30 seconds)
# Open https://apex.incwo.com and connect to your account
# Open Dashboard > Clés API and create your key (self-serve)
# If menu is not visible yet, request activation via Discord (https://discord.gg/incwo)
export APEX_KEY="your-api-key-here"
Step 2: Make Your First Request (30 seconds)
Option A: Using curl
curl -H "Authorization: Bearer $APEX_KEY" \
"https://apex.incwo.com/api/search?q=artificial+intelligence&limit=3"
Boolean search syntax (AND / OR / NOT)
q supports explicit boolean operators for precise filtering.
AND(orET): both terms must matchOR(orOU): at least one term must matchNOT(orSANS): exclude a term- Parentheses are supported to group conditions
Examples:
# Match OpenAI or Google, but exclude Meta
curl -H "Authorization: Bearer $APEX_KEY" \
"https://apex.incwo.com/api/search?q=OpenAI%20OR%20Google%20NOT%20Meta&limit=10"
# French aliases are accepted
curl -H "Authorization: Bearer $APEX_KEY" \
"https://apex.incwo.com/api/search?q=OpenAI%20OU%20Google%20SANS%20Meta&limit=10"
# Group clauses with parentheses
curl -H "Authorization: Bearer $APEX_KEY" \
"https://apex.incwo.com/api/search?q=(OpenAI%20OR%20Google)%20AND%20enterprise&limit=10"
Option B: Using Python
# Install dependency
pip install httpx
# Run example
APEX_KEY=$APEX_KEY python3 examples/example_python.py
Step 3: Follow Topics (30 seconds)
# Follow topics for personalized briefings
curl -X POST -H "Authorization: Bearer $APEX_KEY" \
-H "Content-Type: application/json" \
-d '{"topics":["ai","healthcare","regulation"]}' \
"https://apex.incwo.com/api/topics/follow"
Step 4: Get Daily Briefing (30 seconds)
# Get your personalized briefing
curl -H "Authorization: Bearer $APEX_KEY" \
"https://apex.incwo.com/api/brief"
What's Next?
- Explore the API: View full docs at
https://apex.incwo.com/docs/api-reference - Integrate with AI agents: See
https://apex.incwo.com/docs/mcp-integration - Build custom workflows: Check examples in
https://github.com/incwo/incwo-apex/tree/main/examples - Join the community: GitHub discussions, Discord server
CLI Status
APEX CLI is being prepared and will be published in incwo/apex-cli before public announcement.
Help
- Docs: https://apex.incwo.com/docs
- API Reference: https://apex.incwo.com/docs/api-reference
- GitHub: https://github.com/incwo/incwo-apex
- Support: https://discord.gg/incwo
