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

domainList
string[]

Domains to include in CSV. (If empty, all domains in the market will be included.)