# Setup
# Endpoint
Replace PLATFORM_ID by your platform's identifier in https://platform-PLATFORM_ID.kinow.io/graphql
to get your endpoint.
You can also access the demo platform here (opens new window) to try some requests.
# Versioning
To avoid breaking changes introduced in future major versions, provide the major API version at the time of your implementation in the Kinow-Version
header :
{
"Kinow-Version": 1
}
1
2
3
2
3
Versions
Version | Release Date | Status |
---|---|---|
1 | 01-06-2020 | latest |
WARNING
If this header is not provided, your calls will default to the latest major version, which can break your API calls.
# Server Side Rendering (SSR)
If you plan to enable SSR, or make requests on behalf of a user from a server, you must provide the following headers in your requests:
Header | Value | Required |
---|---|---|
X-Client-Id | KINOW_CLIENT_ID | yes |
X-Client-Secret | KINOW_CLIENT_SECRET | yes |
X-Forwarded-For | USER_IP | yes |
Authorization | Bearer USER_ACCESS_TOKEN | no |
# Recommended Client
We recommend using Apollo Client (opens new window) in your applications, which supports many libraries and languages.