Market
Export CSV
Market
Export CSV
Get a download link for CSV file of a market.
POST
/
markets
/
{marketId}
/
export-csv
curl --request POST \
--url https://api.forestreet.com/markets/{marketId}/export-csv \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"domainList": [
"<string>"
]
}'
{
"downloadLink": "https://s3.eu-west-2.amazonaws.com/..."
}
Body Request Object Example
{
"domainList": [
"foo.com",
"bar.com"
]
}
Body
Domains to include in CSV. (If empty, all domains in the market will be included.)
{
"downloadLink": "https://s3.eu-west-2.amazonaws.com/..."
}
curl --request POST \
--url https://api.forestreet.com/markets/{marketId}/export-csv \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"domainList": [
"<string>"
]
}'
{
"downloadLink": "https://s3.eu-west-2.amazonaws.com/..."
}