Users has option to programmatically interact with the refer.is API. The API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.
Need a help? Contact us at through the support widget in the bottom right corner of the page. We are happy to help you.
API documentation is available in the OpenAPI specification format. You can find the OpenAPI specification file here. You can also use the OpenAPI specification file to generate client libraries for different programming languages.
API Key is required for all requests. Every workspace has it's own API Key. You can find your API key in the settings page of your workspace under the "API key" section.
To authenticate your requests include the following header:
Authentication: Bearer <API_KEY>
Get information about your workspace.
curl -X GET 'https://api.refer.is/v1/me' \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <API_KEY>"
{
"data": {
"id": "92fc175e-2508-458d-b490-5c78675c8e6b",
"name": "Workspace name",
}
}
Create new link in your workspace.
curl -X POST 'https://api.refer.is/v1/links' \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <API_KEY>" \
-d '{
"url":"https://google.com",
"domain": "refer.is"
}'
{
"data": {
"id": "92fc175e-2508-458d-b490-5c78675c8e6b",
"slug": "abc",
"link": "https://refer.is/abc",
"url": "https://google.com",
}
}
Get existing link from your workspace.
curl -X GET 'https://api.refer.is/v1/links/92fc175e-2508-458d-b490-5c78675c8e6b' \
-H "Authorization: Bearer <API_KEY>"
{
"data": {
"id": "92fc175e-2508-458d-b490-5c78675c8e6b",
"slug": "abc",
"link": "https://refer.is/abc",
"url": "https://google.com",
}
}
Delete existing link from your workspace.
curl -X DELETE 'https://api.refer.is/v1/links/92fc175e-2508-458d-b490-5c78675c8e6b' \
-H "Authorization: Bearer <API_KEY>"
Empty body.
Get QR code for existing link from your workspace.
curl -X GET 'https://api.refer.is/v1/links/92fc175e-2508-458d-b490-5c78675c8e6b/qr' \
-H "Authorization: Bearer <API_KEY>"
Parameter | Required | Description |
---|---|---|
background_color | No | Color of the background |
dot_color | No | Color of the dots |
Response is a PNG image.
Please note that the QR code is generated on the fly and the endpoint is rate limited. If you need to use the same QR code multiple times you should download it and cache it on your server.
Get click analytics for browsers.
curl -X GET 'https://api.refer.is/v1/analytics/browsers?start=2024-01-01T00:00:00Z&end=2024-01-31T00:00:00Z' \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <API_KEY>"
Parameter | Required | Description |
---|---|---|
start | Yes | ISO 8601 |
end | Yes | ISO 8601 |
page | No | Page number - each page has up to 100 items. |
{
"data": [
{
"value": "chrome",
"count": 100
},
{
"value": "safari",
"count": 50
}
],
"meta": {
"limit": 100,
"total": 2,
"page": 1
}
}
Get click analytics for countries.
curl -X GET 'https://api.refer.is/v1/analytics/countries?start=2024-01-01T00:00:00Z&end=2024-01-31T00:00:00Z' \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <API_KEY>"
Parameter | Required | Description |
---|---|---|
start | Yes | ISO 8601 |
end | Yes | ISO 8601 |
page | No | Page number - each page has up to 100 items. |
{
"data": [
{
"value": "US",
"count": 100
},
{
"value": "CA",
"count": 50
}
],
"meta": {
"limit": 100,
"total": 2,
"page": 1
}
}
Get click analytics for referrers.
curl -X GET 'https://api.refer.is/v1/analytics/referrers?start=2024-01-01T00:00:00Z&end=2024-01-31T00:00:00Z' \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <API_KEY>"
Parameter | Required | Description |
---|---|---|
start | Yes | ISO 8601 |
end | Yes | ISO 8601 |
page | No | Page number - each page has up to 100 items. |
{
"data": [
{
"value": "https://m.facebook.com",
"count": 50
},
{
"value": "https://x.com",
"count": 50
}
{
"value": null,
"count": 50
}
],
"meta": {
"limit": 100,
"total": 3,
"page": 1
}
}
Get click analytics for urls.
curl -X GET 'https://api.refer.is/v1/analytics/urls?start=2024-01-01T00:00:00Z&end=2024-01-31T00:00:00Z' \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <API_KEY>"
Parameter | Required | Description |
---|---|---|
start | Yes | ISO 8601 |
end | Yes | ISO 8601 |
page | No | Page number - each page has up to 100 items. |
{
"data": [
{
"value": "https://refer.is",
"count": 20
},
{
"value": "https://refer.is/docs",
"count": 10
},
{
"value": "https://refer.is/pricing",
"count": 5
}
],
"meta": {
"limit": 100,
"total": 3,
"page": 1
}
}
1000 tracked clicks and unlimited redirects monthly for free.
No credit card required
Create short and branded links, generate QR codes, share them anywhere, and track link analytics.
Copyright © 2023 - 2024
We use cookies (and other similar technologies) to improve your experience on our site.