Skip to content

APA Title Case

Convert any string to APA Title Case.

Request

Url: /api/utilities/apa-title-case

Method: GET,POST

Query Params/Form Params:

  • string (required)
  • api_key (optional, see Authentication section below)

Headers

Header Value Notes
Content-Type application/json Required
Authorization Bearer <api_key> Bearer Token authentication only
Accept application/json Bearer Token authentication only

Authentication

Depending on your system configuration, different methods of authentication may be required:

  • None
  • API Key
  • Bearer
  • IP Whitelisting

If you use API Key or Bearer authentication, you can generate API keys by visiting /user/api-tokens in your Mission Control instance.

Click the user icon in the top right corner, then click API Tokens.

None

There is no authentication required. Useful when network security is handled by a firewall or other means.

API Key

Send a GET query parameter or a POST form parameter named api_token.

Bearer Token

Send the token in the Authorization header
Authorization: Bearer <api_key>
You also need to set the Accept header to application/json

IP Whitelisting

Configured on the server, IP whitelisting requires you to make request from an allowed IP address |

Response

Success

  • GET /api/utilities/apa-title-case?string=Call Theory

A successful response will return a 200 OK with the camel-cased JSON string as the body.

  • HTTP Status Code: 200
"Call Theory"

Failure

  • GET /api/utilities/apa-title-case

An un-successful response will return a 400 Bad Request with a description of the error.

  • HTTP Status Code: 400
{
    "error": "Missing required parameter: string"
}