curl --request POST \
--url https://api.gospott.com/companies/_search \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"filters": [
{
"type": "text",
"operator": "contains",
"path": "name",
"value": "<string>"
}
],
"page": 0,
"pageSize": 20
}
'{
"items": [
{
"logoUrl": "<string>",
"id": "<string>",
"name": "<string>",
"domain": "<string>"
}
],
"pagination": {
"hasNextPage": true
}
}curl --request POST \
--url https://api.gospott.com/companies/_search \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"filters": [
{
"type": "text",
"operator": "contains",
"path": "name",
"value": "<string>"
}
],
"page": 0,
"pageSize": 20
}
'{
"items": [
{
"logoUrl": "<string>",
"id": "<string>",
"name": "<string>",
"domain": "<string>"
}
],
"pagination": {
"hasNextPage": true
}
}API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.