> ## Documentation Index
> Fetch the complete documentation index at: https://developer.worldly.io/llms.txt
> Use this file to discover all available pages before exploring further.

# PIC - Retrieve French Eco-Score

> This recipe shows how to retrieve a French Eco-Score for a product, including the per-indicator score break-down.

```bash theme={null}
curl --request POST \
     --url https://api-v2.production.higg.org/pic-api/v1/products/search/ \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --header 'x-api-key: <<apiKey>>' \
     --header 'x-developer-request-token: <<apiKey>>' \
     --data '{	
     "id":["string"],
		 "hasFrenchEcoScore": true
}'
```

```json theme={null}
{"success":true}
```

<Steps>
  <Step title="Set Product ID">
    ### field: id

    Field type: string

    POST a request using the Product ID.

    ```json theme={null}
    "id":["string"],
    "hasFrenchEcoScore": true
    ```
  </Step>
</Steps>
