ArtemisAds
  1. Links
ArtemisAds
  • Get Started
    • Authentication
    • Pagination
  • Publisher API
    • Products
      • List Products
    • Deals
      • List Deals
    • Brands
      • List Brands
    • Links
      • List Publisher Sources
        GET
      • Create Product Link
        POST
      • List Product Link
        GET
      • Get Product Link by ID
        GET
      • Create Default Brand Storefront Link
        POST
      • List Brand Storefront Links
        GET
    • Reports
      • List Product reports
      • List Per-Product reports
  1. Links

List Publisher Sources

GET
/openapi/publisher/v1/sources
List all available sources for the publisher.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.artemisads.com/openapi/publisher/v1/sources?limit=100&cursor=86Rf07xd4ztfA2ztfA' \
--header 'x-aa-authorization: Bearer aa.oa2.v1.xxx'
Response Response Example
{
    "sources": [
        {
            "id": "string",
            "name": "string"
        }
    ],
    "cursor": "string"
}

Request

Query Params
limit
integer 
optional
Maximum number of items to return in the response, default is 100
Example:
100
cursor
string 
optional
The cursor returned from the last request, if omitted the first page will be returned
Example:
86Rf07xd4ztfA2ztfA
Header Params
x-aa-authorization
required

Bearer

Default:
Bearer aa.oa2.v1.xxx
Example:
Bearer aa.oa2.v1.xxx

Responses

🟢200OK
application/json
Body
sources
array [object {2}] 
optional
The publisher source list
id
string 
required
ArtemisAds identifier for the source where the created link will be used.
name
string 
required
Name of the source where the created link will be used.
cursor
string 
optional
The cursor to use for the next request, if empty there are no more items to return
🟠400Bad Request
🟠401Unauthorized
Modified at 2025-06-05 10:03:32
Previous
List Brands
Next
Create Product Link
Built with