Ad Networks

This endpoint makes an HTTP GET request to retrieve a list of ad networks from the specified API endpoint. The request does not include a request body as it is a GET request.

Request

  • Method: GET

  • Endpoint: https://api.creatopy.com/v1beta/adnetworks

curl --location 'https://api.creatopy.com/v1beta/adnetworks' \
--header 'Authorization: Bearer eyJ...'

Response

The response to the request is in JSON format with a status code of 200 (OK). The response body contains an array of ad network objects, each including an ID, name, type, adTag, html5, and status properties.

{
    "response": [
        {
            "id": 0,
            "name": "",
            "type": "",
            "adTag": true,
            "html5": true,
            "status": true
        }
    ]
}