Skip to main content

Troubleshooting Guide

Quick solutions to common FLTR issues.

Authentication Issues

401 Unauthorized

Error:
Causes:
  • Wrong API key
  • Missing “Bearer” prefix
  • Key has been revoked
  • Extra whitespace in header
Solutions:
Check your key in Settings → API Keys.

403 Forbidden

Error:
Causes:
  • OAuth scope doesn’t include required permission
  • Accessing another user’s resources
Solutions:
  • Check OAuth scopes
  • Verify resource ownership
  • Use correct authentication method

Search Issues

No Results Returned

Causes:
  • Document still processing
  • No matching content
  • Wrong dataset ID
  • Overly specific filters
Solutions:
  1. Wait for processing:
  2. Try broader queries:
  3. Verify dataset:
  4. Remove filters:

Low Relevance Scores

Causes:
  • Poor quality embeddings
  • Mismatched terminology
  • Short content chunks
Solutions:
  1. Enable reranking:
  2. Add metadata:
  3. Improve chunking:
    • Keep related content together
    • Add context to chunks
    • Use descriptive titles

Upload Issues

413 Payload Too Large

Error:
Solutions:
  1. Split large files:
  2. Compress files:
  3. Extract text first:

Processing Failed

Error:
Common codes: Solutions:
  1. Remove PDF encryption:
  2. Convert format:
  3. Repair corrupted PDF: Use online tools or pdftk:

Rate Limit Issues

429 Too Many Requests

Error:
Solutions:
  1. Implement backoff:
  2. Use batch endpoints:
  3. Cache results:
  4. Upgrade authentication:
    • API Key: 1,000/hour
    • OAuth: 15,000/hour (15x more!)

Network Issues

Connection Timeout

Causes:
  • Network connectivity issues
  • Firewall blocking requests
  • DNS resolution failure
Solutions:
  1. Check connectivity:
  2. Increase timeout:
  3. Check firewall:
    • Allow outbound HTTPS (port 443)
    • Whitelist api.fltr.com

SSL/TLS Errors

Error:
Solutions:
  1. Update CA certificates:
  2. Verify TLS version:

Integration Issues

Zapier Not Receiving Data

Causes:
  • Wrong field paths
  • Response not parsed
  • Timeout
Solutions:
  1. Check raw output:
    • Click on Zapier step
    • View “Raw Output” tab
    • Verify data structure
  2. Use correct paths:
  3. Test webhook:
    • Send test request
    • Check Zapier task history
    • Verify headers

Make.com Mapping Issues

Causes:
  • Array iteration problem
  • Missing data
Solutions:
  1. Use Iterator:
    • Add Iterator module
    • Connect to {{http.data.results}}
    • Process each result
  2. Map correctly:

Getting Help

If you’re still stuck:

Email Support

Check Status

See if there’s an outage

Documentation

Browse complete docs

GitHub Issues

Report bugs or request features

Debug Checklist

When troubleshooting:
  • Check API status at status.fltr.com
  • Verify API key is correct and active
  • Check rate limit headers
  • Review error message and code
  • Test with cURL to isolate issue
  • Check request/response logs
  • Verify dataset/document IDs exist
  • Try simple request first
  • Check for network/firewall issues
  • Review recent code changes