Introduction
The Sklik API is a simple interface for developers who want to flexibly manage Sklik accounts. API is based on the XML-RPC protocol or JSON format. You should have an understanding of this standards and have common programming skills to use this API. XML-RPC and JSON are available in many programming languages. Using the Sklik API, you can create and manage campaigns, groups, keywords, ads and their statistics.
Versions
Current stable Sklik API version is called Drak.
Following XML-RPC endpoints can be used:
- https://api.sklik.cz/drak/RPC2 – always points to the newest stable version of API Drak XML-RPC
- https://api.sklik.cz/drak/json – always points to the newest stable version of API Drak JSON
- https://api.sklik.cz/drak/RPC2/v5 – version 5 of API Drak XML-RPC (actual newest stable version)
- https://api.sklik.cz/drak/json/v5 – version 5 of API Drak JSON (actual newest stable version)
- https://api.sklik.cz/jsonApi/drak – old endpoint url to API Drak JSON (deprecated)
API Changelog
A changelog is a file which contains a curated, chronologically ordered list of notable changes for each version of API Drak.
Sklik API Drak Changelog
JSON API
Description
Json-api is simple http/json interface. This interface allows using JSON over HTTP as a communication protocol with our API(instead of XMLRPC or FASTRPC). Returns http response with results in json.
Using Json api is simple, only thing you must know is that method is in url and parameters for this method are in json (see examples).
Note: Json does not support some types used in XML-RPC/FAST-RPC protocol. These types are datetime and binary. Our Json-api accepts datetime in string ISO(YYYY-MM-DDThh:mm:ss, YYYY-MM-DD hh:hh:ss+TT:tt) format or in format YYYY-MM-DD (Y=year, M=month, D=day, h=hour, m=minute, s=second, T=time zone hour, t=time zone minute). Binary format must be convertible base64.
Simple examples use
- GitHub All examples of API use now are available on