# Generate report for Argentina EEZ with filter by structure_id = 313068 (/docs/examples/bulk-download/create-report-example5)



**Request body**

| Field            | Value                                        | Description                       |
| ---------------- | -------------------------------------------- | --------------------------------- |
| `name`           | `sar-vessel-detection-example-4-structureID` | Name of the report                |
| `dataset`        | `public-fixed-infrastructure-data:latest`    | Fixed infrastructure dataset      |
| `format`         | `CSV`                                        | Output format of the report       |
| `region.dataset` | `public-eez-areas`                           | Existing region dataset           |
| `region.id`      | `8466`                                       | Argentina EEZ region id           |
| `filters`        | `["structure_id = 313068"]`                  | Filter by a specific structure ID |

**Request**

<Tabs items="['cURL', 'JavaScript']">
  <Tab value="cURL">
    ```shell
    # Make sure to replace [TOKEN] with your API Access Token.
    curl --location 'https://gateway.api.globalfishingwatch.org/v3/bulk-reports' \
    --header 'Content-Type: application/json' \
    --header 'Accept: application/json' \
    --header 'Authorization: Bearer TOKEN' \
    --data '{
      "name": "sar-vessel-detection-example-4-structureID",
      "dataset": "public-fixed-infrastructure-data:latest",
      "format": "CSV",
      "region": {
        "dataset": "public-eez-areas",
        "id": 8466
      },
      "filters": ["structure_id = 313068"]
    }'
    ```
  </Tab>

  <Tab value="JavaScript">
    ```js
    // Make sure to replace [TOKEN] with your API Access Token.
    const res = await fetch('https://gateway.api.globalfishingwatch.org/v3/bulk-reports', {
      method: 'POST',
      headers: {
        Authorization: 'Bearer [TOKEN]',
        'Content-Type': 'application/json',
      },
      body: JSON.stringify({
        name: 'sar-vessel-detection-example-4-structureID',
        dataset: 'public-fixed-infrastructure-data:latest',
        format: 'CSV',
        region: {
          dataset: 'public-eez-areas',
          id: 8466,
        },
        filters: ['structure_id = 313068'],
      }),
    })
    const data = await res.json()
    ```
  </Tab>
</Tabs>

**Response**

```shell
{
    "id": "9d666902-859c-4d39-8422-a215cfda3e8f",
    "dataset": "public-fixed-infrastructure-data:v1.1",
    "name": "fixed-infrastructure-example-4-structureID",
    "filepath": "sar_fixed_infrastructure_202409.csv",
    "filters": [
        "structure_id = 313068"
    ],
    "status": "pending",
    "geom": {
        "type": "dataset",
        "dataset": "public-eez-areas",
        "id": 8466
    },
    "createdAt": "2025-07-01T00:51:24.373Z",
    "updatedAt": "2025-07-01T00:51:24.373Z",
    "ownerId": 385,
    "ownerType": "user-application",
    "format": "CSV",
    "fileSize": null
}
```
