Adgebra Help Center
About usFAQsAdvertisersPublishersLoginBlog
  • About Us
  • Getting Started
    • General
      • Why Advertise with Adgebra
      • Type of Accounts
      • Registration
      • Ad Formats
      • Adgebra Audience
      • Prepaid/Postpaid Accounts
      • Training & Support
    • Adgebra Wallet
      • Payment Methods
      • Payments T&C
    • Account
      • Details
    • Brand
      • Brand Specifications
      • Pixel Types
      • Postback Tracking
      • Adgebra Pixel using GTM
      • Blocking
    • Campaign
      • Information
      • Strategy
      • Scheduling & Targeting
      • Pricing & Budget
      • Blocking
      • Adding Creative
    • Troubleshooting
      • Campaign is not delivering
      • The campaign was running previously but has now stopped delivering.
      • The campaign is delivering, but not at its full potential.
      • Campaign Over-delivery
      • The campaign is not tracking conversions
      • Conversion Discrepancies
    • Creative
      • Creative Specifications
      • Impression Tracker
    • Reports
      • Placement Analysis
      • Detail Analysis
      • Trend Analysis
      • Conversion Analysis
      • Widget Analysis
      • Translation Summary
      • Partner API Report
      • Partner Widget API Report
    • Publisher
      • DIY Partner
      • Tag Placements
      • Partner Payment T&C
      • Partner API Integration
    • Site
      • Site Addition
      • Site Informartion
      • Ad Widgets
    • Traslator Guide
    • Adgebra oRTB
      • Overview
      • Terminology
      • RTB Ecosystem
      • RTB Basics
      • Win Notifications & User Syncing
      • Object Specification
    • Adgebra API Reports
      • Account Report API
      • Partner Report API
Powered by GitBook
On this page

Was this helpful?

  1. Getting Started
  2. Adgebra API Reports

Account Report API

Adgebra Report API integration guideline

The Adgebra Report API integration guidelines will be able to fetch numbers from adgebra reports in real-time by sending the required parameters in an API call. In response, adgebra will send data as per the below mentioned format.

API Format

1

Request Format

https://login.adgebra.in/AdgebraUI/GetASSReportWS_v4.do?p1=[AccountID]&p2=[AdvertiserId]&p3=[Start-Date]&p4=[End-Date]&p5=[Uniwque-Pin]&p6=[Currency]

Request Parameters

p1=Account Id of which the reports need to be fetched ex:'432'.

p2=Advertiser ID of which reports need to be fetched. By default, it will be 'All' and will fetch all advertiser reports associated with the account ID. Here you can also fetch by only a particular advertiser just by entering the advertiser id ex:'4122'.

p3: This Parameter is the start date of the report that needs to be fetched. The Date format for this field is "DD-MMM-YYYY" Ex: 01-Nov-2023

p4: This Parameter is the end date of the report that needs to be fetched. The Date format for this field is "DD-MMM-YYYY" Ex: 02-Nov-2023

p5: This Parameter is the unique pin associated with the account. Here you need to contact your account manager to get the unique pin. Ex : z8Sgxc82Mnxrb9me

p6: This parameter is the currency format that you wish to fetch in the report. The default is 'inr'. You can change it to 'usd'.

Request Example:

https://login.adgebra.in/AdgebraUI/GetASSReportWS_v4.do?p1=498&p2=all&p3=01-nov-2023&p4=02-nov-2023&p5=z8Sgxc82Mnxrb9me&p6=inr

2

Response Format

[
{
  "Advertiser Name": [
    {
      "CTR": "[Count]",
      "impression": "[Count]",
      "clicks": "[Count]",
      "conv": "[Count]",
      "expense": "[Count]"
    }
  ],
  
Response Example:
{
  "Golfland Vanaha": [
    {
      "CTR": "0.11",
      "impression": "1574228",
      "clicks": "1704",
      "conv": "5",
      "expense": "5599.27"
    }
  ],
  "HOH Thane": [
    {
      "CTR": "0.17",
      "impression": "2355951",
      "clicks": "4089",
      "conv": "6",
      "expense": "12110.50"
    }
  ],
  "Tyrrop_kine": [
    {
      "CTR": "0.54",
      "impression": "1462774",
      "clicks": "7870",
      "conv": "0",
      "expense": "26326.70"
    }
  ]
}

Note:

  • At any point in time, if the response is blank or invalid, then it should be handled at the client's end. At times when planned/unplanned adgebra maintenance activity may be scheduled.

  • If any reponse is blank, please check the values entered in the parameters. The response will also be blank in case there is no data.

PreviousAdgebra API ReportsNextPartner Report API

Last updated 6 months ago

Was this helpful?