Title
- Goto AmplifyReach Dashboard -> Bot Studio -> Left Navigation Sidebar
- Select Core Services > Text Analysis.
- Use URL to analyze any URL for taxonomy or Use Text for analyzing text.
- Press Analyze button.
- Results will be shown.
- The Title Option in Left Panel will display extracted Title from the text.
Title Using AmplifyReach Catalyst API
Tip: Register your account on AmplifyReach and contact us at kick-start@amplifyreach.com to get Developer ID and Access Token.
URL & Objects
The following URLs are available.
URL | Description |
---|---|
PUT /textanalysis/v1/title | Put URL for title detection. |
GET /textanalysis/v1/title/{UID} | Get title from URL. |
PUT /textanalysis/v1/title
PUT https://launch.amplifyreach.com/textanalysis/v1/title
Headers:
Name | Description |
---|---|
Content-Type | application/json |
authToken | YOUR_DEVELOPER_ACCESS_TOKEN |
cid | YOUR_DEVELOPER_ID |
PUT body:
{ "url": "<SAMPLE_URL>"}
cURL-PUT Request for URL Request
curl \
-H “Content-Type: application/json” \
-H “cid:” \
-H “authtoken:” \
-X PUT \
-d ‘{“url”:””}’ \
https://apps.amplifyreach.com/textanalysis/v1/title
Put Response
The taxonomy put API response JSON structure.
Name | Type | Description |
---|---|---|
status | String | Request Status (Reference: Status & Error Conditions) |
uid | String | UID is unique request identifier ID which to get result in Get API. |
Example: PUT Response
{
“status”:”success”,
“uid”:”4f057e01d88ff7aa82a8610dc651e8fe”,
“license”:”By accessing AmplifyReach or using information generated by AmplifyReachAPI, you are agreeing to be bound by the AmplifyReach Terms of Use.”
}
GET /textanalysis/v1/title/{UID}
PUT https:/launch.amplifyreach.com/textanalysis/v1/title/{UID}
Headers:
Name | Description |
---|---|
Content-Type | application/json |
authToken | YOUR_DEVELOPER_ACCESS_TOKEN |
cid | YOUR_DEVELOPER_ID |
PUT body
cURL-GET Request for UID Request
curl \
-H “Content-Type: application/json” \
-H “cid:” \
-H “authtoken:” \
-X GET \
https://launch.amplifyreach.com/textanalysis/v1/title/{UID}
Title Object
The title response JSON structure.
Name | Type | Description |
---|---|---|
status | String | Request Status (Reference: Status &Error Codes) |
title | String | Title of article URL. |
Example: Title Object
{
"status":"success",
"title":"Title of Page"
}