For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Guides
    • Introduction
    • Quick Start
    • Use Cases
    • MCP Server
  • API
    • Enrich Endpoint
  • Integrations
    • Clay
    • Zapier
    • Make
    • HubSpot
    • Salesforce
    • n8n
  • Platform
    • API Keys
    • Rate Limits
    • Pricing
  • Support
    • Support
  • API Reference
    • GETGet platform stats
    • GETSearch case studies
    • POSTSemantic search
    • POSTBatch semantic search
    • GETGet case study
    • GETList companies
    • GETGet company
    • GETCompany analysis
    • GETCompany timeline
    • POSTCompare vendors
    • POSTRegister for an API key
Logocasestudies.dev
API Reference

Batch semantic search

POST
https://whatsapp-backend-knd2.onrender.com/v1/casestudies/batch
POST
/v1/casestudies/batch
$curl -X POST https://whatsapp-backend-knd2.onrender.com/v1/casestudies/batch \
> -H "X-API-Key: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "queries": [
> {
> "query": "improved onboarding conversion",
> "industry": "fintech",
> "limit": 3
> },
> {
> "query": "reduced customer churn with data",
> "limit": 3
> }
> ]
>}'
200Successful
1{
2 "results": [
3 {
4 "data": [
5 {
6 "id": "string",
7 "title": "string",
8 "summary": "string",
9 "featured_client": "string",
10 "industry": "string",
11 "problem": "string",
12 "solution": "string",
13 "outcomes": "string",
14 "source_url": "string",
15 "tags": [
16 "string"
17 ],
18 "similarity": 1.1
19 }
20 ],
21 "query": "string"
22 }
23 ]
24}
Run multiple semantic queries in a single API call. Ideal for AI agents that need to research several topics at once. Max 10 queries per batch.
Was this page helpful?
Previous

Get case study

Next
Built with

Authentication

X-API-Keystring

Your casestudy.dev API key. Get one at POST /v1/keys.

Request

This endpoint expects an object.
querieslist of objectsRequired

Response

Array of results, one per query
resultslist of objects