Hello. I swear I checked all similar questions and tried everything but with no success.
My curl is:
curl \
-H "X-SEObserver-key: MY_API_KEY" \
-X POST \
-d '[{"item_type":"domain", "item_value":"seobserver.com"}, {"item_type":"url", "item_value":"https://www.seobserver.com/"}]' \
https://api1.seobserver.com/backlinks/metrics.json
I'm trying to launch it through the HTTP Module.
Can anyone help me please ?
Anything that starts with -H is a header. In this case your header is your API key.
-d is the data you must submit via the API call (see second image). I would suggest putting a JSON module before your HTTP call to properly format your JSON data.