Skip to main content
POST
/
global
/
web
/
search
/
v1
Web Search
curl --request POST \
  --url https://api.croma.run/global/web/search/v1 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "croma api colombia"
}
'
{
  "data": {
    "results": [
      {
        "url": "<string>",
        "title": "<string>",
        "published_at": "2023-11-07T05:31:56Z",
        "author": "<string>",
        "highlights": [
          "<string>"
        ],
        "score": 123
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.croma.run/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer YOUR_API_KEY

Body

application/json
query
string
required

Natural-language search query.

Required string length: 3 - 300
limit
integer
default:10

Number of results to return.

Required range: 1 <= x <= 25

Response

Successful response

data
object
required