Ritekit
ritekitRiteKit offers a suite of APIs designed to enhance social media engagement by providing tools for hashtag generation, link shortening, and content analysis.
Acciones disponibles (15)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Auto HashtagRITEKIT_AUTO_HASHTAGAcciónTool to automatically add relevant hashtags to a given post. use when you have plain text and need suggested hashtags appended or inserted in context.
RITEKIT_AUTO_HASHTAGAcciónTool to automatically add relevant hashtags to a given post. use when you have plain text and need suggested hashtags appended or inserted in context.
Parámetros de entrada
poststringObligatorioText of the post to add hashtags to
maxHashtagsintegerMaximum number of hashtags to add (default is 2)
hashtagPositionstringenumPosition of hashtags: 'auto' to insert in context, 'end' to append at end (default is 'auto')
autoend
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Check Banned Instagram HashtagsRITEKIT_BANNED_INSTAGRAM_HASHTAGSAcciónTool to identify which hashtags are banned on instagram. use when preparing content and need to filter out banned hashtags before posting.
RITEKIT_BANNED_INSTAGRAM_HASHTAGSAcciónTool to identify which hashtags are banned on instagram. use when preparing content and need to filter out banned hashtags before posting.
Parámetros de entrada
tagsstring[]ObligatorioList of hashtags to check (without the leading '#'), 1-100 items
client_idstringRiteKit API client ID passed as 'client_id' query parameter (alternative to access_token)
access_tokenstringRiteKit OAuth2 access token passed as 'access_token' query parameter
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Disposable Email DetectionRITEKIT_DISPOSABLE_EMAIL_DETECTIONAcciónTool to detect if an email address is disposable. use before allowing sign-ups to filter out disposable emails.
RITEKIT_DISPOSABLE_EMAIL_DETECTIONAcciónTool to detect if an email address is disposable. use before allowing sign-ups to filter out disposable emails.
Parámetros de entrada
emailstringObligatorioEmail address to check for disposability
client_idstringObligatorioYour RiteKit API client ID; must be passed as 'client_id' query parameter
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Free Email DetectionRITEKIT_FREEMAIL_DETECTIONAcciónTool to detect whether an email address belongs to a free email provider. use when validating lead quality before ingestion.
RITEKIT_FREEMAIL_DETECTIONAcciónTool to detect whether an email address belongs to a free email provider. use when validating lead quality before ingestion.
Parámetros de entrada
emailanyObligatorioemailEmail address to check for free-email provider
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Access TokenRITEKIT_GET_ACCESS_TOKENAcciónTool to obtain a ritekit access token. prefer using a stored token from connection metadata or request. falls back to oauth2 client credentials if both client id and client secret are provided and no token is otherwise available.
RITEKIT_GET_ACCESS_TOKENAcciónTool to obtain a ritekit access token. prefer using a stored token from connection metadata or request. falls back to oauth2 client credentials if both client id and client secret are provided and no token is otherwise available.
Parámetros de entrada
client_idstringOptional RiteKit API client ID.
access_tokenstringOptional access token. If provided, the action will return this token without making a network request.
client_secretstringOptional RiteKit API client secret.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
RiteKit Get Client IDRITEKIT_GET_CLIENT_IDAcciónTool to retrieve stored ritekit client id. use when child actions require the client id query parameter.
RITEKIT_GET_CLIENT_IDAcciónTool to retrieve stored ritekit client id. use when child actions require the client id query parameter.
Parámetros de entrada
client_idstringOptional RiteKit API client ID. If not provided, the action attempts to read from connection metadata using keys: 'client_id', 'clientId', or 'client-id'.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
RiteKit Get Client SecretRITEKIT_GET_CLIENT_SECRETAcciónTool to retrieve stored ritekit client secret. use when child actions require the client secret parameter.
RITEKIT_GET_CLIENT_SECRETAcciónTool to retrieve stored ritekit client secret. use when child actions require the client secret parameter.
Parámetros de entrada
client_secretstringOptional RiteKit API client secret. If not provided, the action attempts to read from connection metadata using keys: 'client_secret', 'clientSecret', or 'client-secret'.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
RiteKit Hashtag StatsRITEKIT_HASHTAG_STATSAcciónTool to retrieve real-time engagement stats for up to 100 hashtags. use when you have a list of hashtags and need metrics like tweets, retweets, exposure, mentions, links, images, and popularity grade.
RITEKIT_HASHTAG_STATSAcciónTool to retrieve real-time engagement stats for up to 100 hashtags. use when you have a list of hashtags and need metrics like tweets, retweets, exposure, mentions, links, images, and popularity grade.
Parámetros de entrada
tagsstring[]ObligatorioList of hashtags to analyze (1-100 items)
client_idstringOptional RiteKit client_id; preferred auth for most endpoints
access_tokenstringOptional RiteKit API token; will be sent as 'access_token' (and 'token') query parameter
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
RiteKit Hashtag SuggestionsRITEKIT_HASHTAG_SUGGESTIONSAcciónTool to get hashtag suggestions for a given text. use when you need relevant hashtags for social media posts.
RITEKIT_HASHTAG_SUGGESTIONSAcciónTool to get hashtag suggestions for a given text. use when you need relevant hashtags for social media posts.
Parámetros de entrada
textstringObligatorioInput text or single word (1–1000 characters) to get hashtag suggestions
client_idstringClient ID for authentication; required if access_token is not provided
access_tokenstringOAuth2 access token; required if client_id is not provided
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete Link AdRITEKIT_LINK_AD_DELETEAcciónTool to delete a link ad. use when you need to permanently remove a link ad by its id.
RITEKIT_LINK_AD_DELETEAcciónTool to delete a link ad. use when you need to permanently remove a link ad by its id.
Parámetros de entrada
idstringObligatorioUnique identifier of the link ad to delete
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Link AdsRITEKIT_LIST_LINK_ADSAcciónTool to retrieve a list of link ads. use after authenticating to fetch all link ads for the user.
RITEKIT_LIST_LINK_ADSAcciónTool to retrieve a list of link ads. use after authenticating to fetch all link ads for the user.
Parámetros de entrada
client_idstringRiteKit API client ID; optional if using OAuth access_token
access_tokenstringOAuth2 access token; optional if using client_id
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Auto HashtagRITEKIT_RITEKIT_AUTO_HASHTAGAcciónTool to automatically add relevant hashtags to a given post. use when you have plain text and need suggested hashtags appended or inserted in context.
RITEKIT_RITEKIT_AUTO_HASHTAGAcciónTool to automatically add relevant hashtags to a given post. use when you have plain text and need suggested hashtags appended or inserted in context.
Parámetros de entrada
poststringObligatorioText of the post to add hashtags to
client_idstringRiteKit API client ID; optional if using OAuth
maxHashtagsintegerMaximum number of hashtags to add, defaults to 2 if not specified
access_tokenstringOAuth2 access token; optional if using client_id
hashtagPositionstringenumWhere to place hashtags: 'auto' to insert anywhere, 'end' to append at end, defaults to 'auto'
autoend
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
RiteKit Get Access TokenRITEKIT_RITEKIT_GET_ACCESS_TOKENAcciónTool to fetch a ritekit oauth2 access token using client credentials. use when you need an access token for subsequent ritekit api calls.
RITEKIT_RITEKIT_GET_ACCESS_TOKENAcciónTool to fetch a ritekit oauth2 access token using client credentials. use when you need an access token for subsequent ritekit api calls.
Parámetros de entrada
client_idstringObligatorioRiteKit API client ID
access_tokenstringOptional access token. If provided, the action will return this token without making a network request.
client_secretstringObligatorioRiteKit API client secret
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Shorten LinkRITEKIT_SHORTEN_LINKAcciónTool to shorten a url with a specified cta. use when you need to generate a call-to-action-enabled short link.
RITEKIT_SHORTEN_LINKAcciónTool to shorten a url with a specified cta. use when you need to generate a call-to-action-enabled short link.
Parámetros de entrada
ctaintegerObligatorioID of the call-to-action to attach to the shortened link
urlstringObligatoriouriURL to be shortened
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Convert Text to ImageRITEKIT_TEXT_TO_IMAGEAcciónTool to convert a quote into a styled image. use after preparing quote text and style options.
RITEKIT_TEXT_TO_IMAGEAcciónTool to convert a quote into a styled image. use after preparing quote text and style options.
Parámetros de entrada
quotestringObligatorioText of the quote to render as an image
authorstringName of the author or source of the quote
bgTypestringenumBackground type: 'solid' or 'gradient'
solidgradientfontSizeintegerFont size for the quote text (px, between 8 and 144)
animationstringenumAnimation effect: none, rays, glint, or circle
noneraysglintcirclebrandLogostringURL of a brand logo to include
client_idstringOptional RiteKit API client ID. If not provided, the action attempts to read from connection metadata
quoteFontstringFont family for the quote text
authorFontstringFont family for the author text
gradientTypestringenumGradient type when bgType is 'gradient'
linearradialshowQuoteMarkintegerenumDisplay quote mark (1 = yes, 0 = no)
01gradientColor1stringFirst color for gradient background
gradientColor2stringSecond color for gradient background
highlightColorstringColor (hex or name) for highlight
quoteFontColorstringColor (hex or name) for the quote text
authorFontColorstringColor (hex or name) for the author text
backgroundColorstringBackground color for solid type
enableHighlightintegerenumHighlight behind quote text (1 = yes, 0 = no)
01
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not