Resources
Mar 7, 20262 min read

curl one-liners

Copy-paste curl commands for every endpoint with common parameter combinations.

GET /documents

Latest 10 documents
curl -G https://synth-link.com/api/v1/documents \
  -H "X-SYNTHLINK-KEY: sk_live_your_key" \
  -d limit=10
Filter by source
curl -G https://synth-link.com/api/v1/documents \
  -H "X-SYNTHLINK-KEY: sk_live_your_key" \
  -d source=openai_news -d limit=10

GET /insights

Completed insights only
curl -G https://synth-link.com/api/v1/insights \
  -H "X-SYNTHLINK-KEY: sk_live_your_key" \
  -d status=completed -d limit=10

GET /combined

Combined — documents with insights
curl -G https://synth-link.com/api/v1/combined \
  -H "X-SYNTHLINK-KEY: sk_live_your_key" \
  -d limit=10