1. Ads
Outyield API
  • Ads
    • List vouchers
      GET
  • Offers
    • List offers
      GET
  • Schemas
    • Voucher
    • Link
    • Banner
    • Offer
    • Connection
    • PriceCombination
    • Image
    • Currency
    • ProductGroup
  1. Ads

List vouchers

Developing
GET
/api/v2/publisher/vouchers
Using this endpoint you can list deals and vouchers that are available to your offers.

Request

Authorization
or
Query Params

Header Params

Responses

🟢200Success
application/json
Bodyapplication/json

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://public-api.outyield.io/api/v2/publisher/vouchers?offerSid=undefined&adInventorySid=undefined&page=undefined&perPage=undefined' \
--header 'X-Api-Token: J6GWuG1F58iN0bv2eYHp9Q5EKwHqtbbO'
Response Response Example
{
    "data": [
        {
            "name": "string",
            "type": "deal",
            "clickTrackingUrl": "string",
            "code": "BLACK_10",
            "validFrom": "2019-08-24",
            "validUntil": "2019-08-24",
            "discount": {
                "type": "fixed",
                "value": 0,
                "currency": "string"
            },
            "language": "string",
            "description": "string",
            "termsAndConditions": "string"
        }
    ],
    "meta": {
        "page": 0,
        "perPage": 0
    },
    "links": {
        "next": {
            "rel": "next",
            "href": "string",
            "method": "GET"
        },
        "prev": {
            "rel": "next",
            "href": "string",
            "method": "GET"
        }
    }
}
Modified at 2026-05-18 11:00:25
Next
List offers
Built with