GET
/
reports
curl --request GET \
  --url https://app.levanta.io/api/creator/v1/reports \
  --header 'Authorization: Bearer <token>'
{
  "reports": [
    {
      "asin": "<string>",
      "date": "2023-11-07T05:31:56Z",
      "marketplace": "amazon.com",
      "currency": "USD",
      "commissionEarned": 123,
      "sales": 123,
      "conversions": 123,
      "clicks": 123,
      "addToCarts": 123,
      "detailPageViews": 123,
      "directSales": 123,
      "directConversions": 123,
      "directClicks": 123,
      "directAddToCarts": 123,
      "directDetailPageViews": 123,
      "haloSales": 123,
      "haloConversions": 123,
      "haloClicks": 123,
      "haloAddToCarts": 123,
      "haloDetailPageViews": 123,
      "invoice": {
        "brandId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "status": "pending",
        "year": 123,
        "month": 1
      },
      "link": {
        "id": "<string>",
        "sourceId": "<string>",
        "sourceSubId": "<string>",
        "sourceName": "<string>",
        "url": "<string>",
        "mobileOptimizedUrl": "<string>",
        "active": true,
        "type": "product",
        "marketplace": "amazon.com"
      },
      "final": true
    }
  ],
  "cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
number
default:100

The maximum number of items to return

Required range: 1 <= x <= 250
cursor
string

The cursor returned from the last request, if omitted the first page will be returned

Maximum length: 512
start
string
required

Date in ISO Format without offset (UTC): YYYY-MM-DDTHH:mm:ss.SSSZ

end
string
required

Date in ISO Format without offset (UTC): YYYY-MM-DDTHH:mm:ss.SSSZ

asins
string

Comma-delimited list of ASINs representing an array. Example: B09G9FPHY6,B09G9FPHY7 equivalent to [B09G9FPHY6,B09G9FPHY7]

Comma-delimited list of strings representing an array. Example: 1,2,3 equivalent to [1,2,3]

source_id
string

An ID that identifies where the created link will be used. Allowed characters: [a-zA-Z0-9-_@./ ]

Required string length: 1 - 256
source_sub_id
string

An ID that identifies where the created link will be used. Allowed characters: [a-zA-Z0-9-_@./ ]

Required string length: 1 - 256
marketplace
enum<string>
default:amazon.com

Represents an Amazon marketplace. If "all" is specified then the scope is all marketplaces.

Available options:
all,
amazon.com,
amazon.co.uk,
amazon.ca,
amazon.de,
amazon.fr

Response

200
application/json
Success
reports
object[]
required
cursor
string | null
required

The cursor to use for the next request, if empty there are no more items to return