Try search without an API key
GET
/api/sandbox/search
const url = 'https://api.stockalloy.com/api/sandbox/search?q=example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.stockalloy.com/api/sandbox/search?q=example'Keyless search over companies and metrics. Limited to 5 requests per day per IP — check the X-Sandbox-Remaining header. For unrestricted access, create a free API key at stockalloy.com/developer.
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”q
required
string
Search query, e.g. deckers revenue.
Responses
Section titled “Responses”Search results (mirrors the authenticated search shape).
Media typeapplication/json
Search result payload.
object
key
additional properties
any
Examplegenerated
{}Headers
Section titled “Headers”X-Sandbox-Remaining
integer
Sandbox requests remaining today for your IP.
Daily sandbox limit reached.
Media typeapplication/json
Returned when the daily sandbox allowance (5/day/IP) is used up.
object
error
object
code
string
message
string
Example
{ "error": { "code": "SANDBOX_LIMIT" }}Headers
Section titled “Headers”X-Sandbox-Remaining
integer
Sandbox requests remaining today for your IP.