curl --request PUT \
--url https://api.us.cr4ce.com/entry/{entry_slug}/tag/{tags} \
--header 'Accept: <accept>' \
--header 'x-api-key: <api-key>'import requests
url = "https://api.us.cr4ce.com/entry/{entry_slug}/tag/{tags}"
headers = {
"Accept": "<accept>",
"x-api-key": "<api-key>"
}
response = requests.put(url, headers=headers)
print(response.text)const options = {method: 'PUT', headers: {Accept: '<accept>', 'x-api-key': '<api-key>'}};
fetch('https://api.us.cr4ce.com/entry/{entry_slug}/tag/{tags}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.us.cr4ce.com/entry/{entry_slug}/tag/{tags}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_HTTPHEADER => [
"Accept: <accept>",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.us.cr4ce.com/entry/{entry_slug}/tag/{tags}"
req, _ := http.NewRequest("PUT", url, nil)
req.Header.Add("Accept", "<accept>")
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.us.cr4ce.com/entry/{entry_slug}/tag/{tags}")
.header("Accept", "<accept>")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.us.cr4ce.com/entry/{entry_slug}/tag/{tags}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Accept"] = '<accept>'
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"entrant": {
"slug": "AbCdEfGh",
"link": "https://api.au.cr4ce.com/user/AbCdEfGh",
"name": "Jane Doe",
"first_name": "Jane",
"last_name": "Doe",
"email": "jane.doe@example.com",
"global_id": "9c78dcbc-53cf-42f1-b5b3-82fe396f66e6"
},
"entry_fields": [
{
"slug": "IjKlMnOp",
"link": "https://api.au.cr4ce.com/field/IjKlMnOp",
"label": {
"en_GB": "<p>Summary</p>"
},
"title": {
"en_GB": "Summary"
},
"value": "A short film about resilience.",
"translated": {
"en_GB": ""
}
},
{
"slug": "QrStUvWx",
"link": "https://api.au.cr4ce.com/field/QrStUvWx",
"label": {
"en_GB": "<p>Budget</p>"
},
"title": {
"en_GB": "Budget"
},
"dynamicRows": [],
"values": {
"A1": "Travel",
"B1": "23.00",
"C1": "32"
},
"schema": {
"columns": [
{
"key": "A",
"label": {
"en_GB": "Item"
}
},
{
"key": "B",
"label": {
"en_GB": "Cost"
}
},
{
"key": "C",
"label": {
"en_GB": "Quantity"
}
}
]
},
"translated": {
"en_GB": ""
}
},
{
"slug": "YzAbCdEf",
"link": "https://api.au.cr4ce.com/field/YzAbCdEf",
"label": {
"en_GB": "<p>Supporting document</p>"
},
"title": {
"en_GB": "Supporting document"
},
"value": null,
"token": "GhIjKlMnOpQrStUv",
"download": "https://files.au.cr4ce.com/file/GhIjKlMnOpQrStUv/brief.pdf?Expires=1781485359&Signature=REDACTED&Key-Pair-Id=REDACTED",
"translated": {
"en_GB": ""
}
}
],
"attachments": [
{
"token": "GhIjKlMnOpQrStUv",
"link": "https://api.au.cr4ce.com/attachment/GhIjKlMnOpQrStUv",
"file": {
"token": "GhIjKlMnOpQrStUv",
"link": "https://api.au.cr4ce.com/file/GhIjKlMnOpQrStUv",
"filename": "brief.pdf",
"download": "https://files.au.cr4ce.com/file/GhIjKlMnOpQrStUv/brief.pdf?Expires=1781485359&Signature=REDACTED&Key-Pair-Id=REDACTED"
},
"attachment_fields": [],
"tab": {
"slug": "WxYzAbCd",
"type": "Attachments",
"created_at": "2025-04-27T01:00:00Z",
"updated_at": "2025-05-12T14:00:00Z"
}
}
],
"auto_score": 0,
"category": {
"slug": "EfGhIjKl",
"link": "https://api.au.cr4ce.com/category/EfGhIjKl",
"name": {
"en_GB": "Short film"
}
},
"chapter": {
"slug": "MnOpQrSt",
"link": "https://api.au.cr4ce.com/chapter/MnOpQrSt",
"name": {
"en_GB": "Europe"
}
},
"comments": "Jane Roe (2025-06-03T10:45:29+00:00): manager comment",
"contributor_count": 1,
"contributors": [
{
"slug": "UvWxYzAb",
"tab": {
"slug": "CdEfGhIj",
"type": "Contributors",
"created_at": "2025-04-13T10:35:30Z",
"updated_at": "2025-06-18T14:42:14Z"
},
"contributor_fields": [
{
"slug": "KlMnOpQr",
"link": "https://api.au.cr4ce.com/field/KlMnOpQr",
"label": {
"en_GB": "<p>Role</p>"
},
"title": {
"en_GB": "Role"
},
"value": "Director",
"translated": {
"en_GB": ""
}
}
]
}
],
"created": "2025-03-11T15:00:03Z",
"custom_deadline": "-",
"division": 2,
"eligibility_status": "",
"files_count": 1,
"form": {
"slug": "StUvWxYz",
"link": "https://api.au.cr4ce.com/form/StUvWxYz",
"name": {
"en_GB": "Entry form"
}
},
"grant_end_date": null,
"grant_status": null,
"local_id": 916,
"moderation_status": "undecided",
"parent_category": null,
"payment_status": "Paid",
"plagiarism_scan_status": "unscanned",
"review_status": "",
"season": {
"slug": "BcDeFgHi",
"link": "https://api.au.cr4ce.com/season/BcDeFgHi",
"name": {
"en_GB": "2026"
}
},
"slug": "PqRsTuVw",
"status": "submitted",
"submitted": "2025-08-11T13:19:42Z",
"tags": "documentary, finalist",
"title": "Documentary series",
"updated": "2026-06-18T07:25:20Z",
"user_comments": "Jane Roe (2025-02-19T14:22:43+00:00): strong submission"
}{
"message": "<string>",
"status_code": 400
}{
"message": "<string>",
"status_code": 401
}{
"message": "<string>",
"status_code": 403
}{
"message": "<string>",
"status_code": 404
}{
"message": "<string>",
"status_code": 429
}{
"status": "Maintenance in progress"
}Tag entry
Add tags to the entry identified by the specified slug.
curl --request PUT \
--url https://api.us.cr4ce.com/entry/{entry_slug}/tag/{tags} \
--header 'Accept: <accept>' \
--header 'x-api-key: <api-key>'import requests
url = "https://api.us.cr4ce.com/entry/{entry_slug}/tag/{tags}"
headers = {
"Accept": "<accept>",
"x-api-key": "<api-key>"
}
response = requests.put(url, headers=headers)
print(response.text)const options = {method: 'PUT', headers: {Accept: '<accept>', 'x-api-key': '<api-key>'}};
fetch('https://api.us.cr4ce.com/entry/{entry_slug}/tag/{tags}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.us.cr4ce.com/entry/{entry_slug}/tag/{tags}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_HTTPHEADER => [
"Accept: <accept>",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.us.cr4ce.com/entry/{entry_slug}/tag/{tags}"
req, _ := http.NewRequest("PUT", url, nil)
req.Header.Add("Accept", "<accept>")
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.us.cr4ce.com/entry/{entry_slug}/tag/{tags}")
.header("Accept", "<accept>")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.us.cr4ce.com/entry/{entry_slug}/tag/{tags}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Accept"] = '<accept>'
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"entrant": {
"slug": "AbCdEfGh",
"link": "https://api.au.cr4ce.com/user/AbCdEfGh",
"name": "Jane Doe",
"first_name": "Jane",
"last_name": "Doe",
"email": "jane.doe@example.com",
"global_id": "9c78dcbc-53cf-42f1-b5b3-82fe396f66e6"
},
"entry_fields": [
{
"slug": "IjKlMnOp",
"link": "https://api.au.cr4ce.com/field/IjKlMnOp",
"label": {
"en_GB": "<p>Summary</p>"
},
"title": {
"en_GB": "Summary"
},
"value": "A short film about resilience.",
"translated": {
"en_GB": ""
}
},
{
"slug": "QrStUvWx",
"link": "https://api.au.cr4ce.com/field/QrStUvWx",
"label": {
"en_GB": "<p>Budget</p>"
},
"title": {
"en_GB": "Budget"
},
"dynamicRows": [],
"values": {
"A1": "Travel",
"B1": "23.00",
"C1": "32"
},
"schema": {
"columns": [
{
"key": "A",
"label": {
"en_GB": "Item"
}
},
{
"key": "B",
"label": {
"en_GB": "Cost"
}
},
{
"key": "C",
"label": {
"en_GB": "Quantity"
}
}
]
},
"translated": {
"en_GB": ""
}
},
{
"slug": "YzAbCdEf",
"link": "https://api.au.cr4ce.com/field/YzAbCdEf",
"label": {
"en_GB": "<p>Supporting document</p>"
},
"title": {
"en_GB": "Supporting document"
},
"value": null,
"token": "GhIjKlMnOpQrStUv",
"download": "https://files.au.cr4ce.com/file/GhIjKlMnOpQrStUv/brief.pdf?Expires=1781485359&Signature=REDACTED&Key-Pair-Id=REDACTED",
"translated": {
"en_GB": ""
}
}
],
"attachments": [
{
"token": "GhIjKlMnOpQrStUv",
"link": "https://api.au.cr4ce.com/attachment/GhIjKlMnOpQrStUv",
"file": {
"token": "GhIjKlMnOpQrStUv",
"link": "https://api.au.cr4ce.com/file/GhIjKlMnOpQrStUv",
"filename": "brief.pdf",
"download": "https://files.au.cr4ce.com/file/GhIjKlMnOpQrStUv/brief.pdf?Expires=1781485359&Signature=REDACTED&Key-Pair-Id=REDACTED"
},
"attachment_fields": [],
"tab": {
"slug": "WxYzAbCd",
"type": "Attachments",
"created_at": "2025-04-27T01:00:00Z",
"updated_at": "2025-05-12T14:00:00Z"
}
}
],
"auto_score": 0,
"category": {
"slug": "EfGhIjKl",
"link": "https://api.au.cr4ce.com/category/EfGhIjKl",
"name": {
"en_GB": "Short film"
}
},
"chapter": {
"slug": "MnOpQrSt",
"link": "https://api.au.cr4ce.com/chapter/MnOpQrSt",
"name": {
"en_GB": "Europe"
}
},
"comments": "Jane Roe (2025-06-03T10:45:29+00:00): manager comment",
"contributor_count": 1,
"contributors": [
{
"slug": "UvWxYzAb",
"tab": {
"slug": "CdEfGhIj",
"type": "Contributors",
"created_at": "2025-04-13T10:35:30Z",
"updated_at": "2025-06-18T14:42:14Z"
},
"contributor_fields": [
{
"slug": "KlMnOpQr",
"link": "https://api.au.cr4ce.com/field/KlMnOpQr",
"label": {
"en_GB": "<p>Role</p>"
},
"title": {
"en_GB": "Role"
},
"value": "Director",
"translated": {
"en_GB": ""
}
}
]
}
],
"created": "2025-03-11T15:00:03Z",
"custom_deadline": "-",
"division": 2,
"eligibility_status": "",
"files_count": 1,
"form": {
"slug": "StUvWxYz",
"link": "https://api.au.cr4ce.com/form/StUvWxYz",
"name": {
"en_GB": "Entry form"
}
},
"grant_end_date": null,
"grant_status": null,
"local_id": 916,
"moderation_status": "undecided",
"parent_category": null,
"payment_status": "Paid",
"plagiarism_scan_status": "unscanned",
"review_status": "",
"season": {
"slug": "BcDeFgHi",
"link": "https://api.au.cr4ce.com/season/BcDeFgHi",
"name": {
"en_GB": "2026"
}
},
"slug": "PqRsTuVw",
"status": "submitted",
"submitted": "2025-08-11T13:19:42Z",
"tags": "documentary, finalist",
"title": "Documentary series",
"updated": "2026-06-18T07:25:20Z",
"user_comments": "Jane Roe (2025-02-19T14:22:43+00:00): strong submission"
}{
"message": "<string>",
"status_code": 400
}{
"message": "<string>",
"status_code": 401
}{
"message": "<string>",
"status_code": 403
}{
"message": "<string>",
"status_code": 404
}{
"message": "<string>",
"status_code": 429
}{
"status": "Maintenance in progress"
}Authorizations
API key used to authenticate and authorise every request.
Include it in the x-api-key header.
Headers
Defines the response type.
application/vnd.Creative Force.v2.3+json, application/vnd.Creative Force.v2.3+xml Path Parameters
Comma-separated list of tags to add to the entry. Surrounding whitespace is trimmed from each tag and empty values are ignored. A tag cannot contain a comma or a forward slash.
Slug of the entry.
^[A-Za-z]{8}$Response
Entry tagged.
Single entry, including the entrant, form field responses, attachments, contributors, and status.
Entrant who created and owns the entry.
Show child attributes
Show child attributes
Automated score calculated for the entry.
Category the entry is assigned to.
Show child attributes
Show child attributes
Chapter the entry is assigned to.
Show child attributes
Show child attributes
Manager comments recorded on the entry, joined into a single string.
Number of contributors linked to the entry.
Date and time when the entry was created.
Custom submission deadline for the entry, or - when none is set.
Division number assigned to the entry, or null when none is assigned.
Eligibility status of the entry.
Number of files uploaded to the entry.
Entry form used to capture the entry.
Show child attributes
Show child attributes
Date when the grant ends, or null when not applicable.
Grant status assigned to the entry, or null when none is set.
Show child attributes
Show child attributes
Sequential identifier of the entry within the account.
Moderation status of the entry.
Parent of the assigned category, or null when the category has no parent.
Show child attributes
Show child attributes
Payment status of the entry.
Plagiarism scan status of the entry.
Review status of the entry.
Season the entry belongs to.
Show child attributes
Show child attributes
URL-safe identifier of the entry.
Submission status of the entry, for example submitted, in_progress, resubmission_required, resubmitted, invited, or not_approved_for_submission.
Date and time when the entry was submitted, or null when not yet submitted.
Tags applied to the entry, as a comma-separated list.
Title of the entry.
Date and time when the entry was last updated.
Comments left by users on the entry, joined into a single string.
Form field responses captured on the entry.
Show child attributes
Show child attributes
Files attached to the entry.
Show child attributes
Show child attributes
Contributors linked to the entry.
Show child attributes
Show child attributes