curl --request POST \
--url https://api-lr.agent.ai/v1/action/post_to_bluesky \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"username": "<string>",
"password": "<string>",
"content": "<string>",
"output_variable_name": "post_result"
}
'{
"status": 123,
"response": {}
}Create a new post on Bluesky using your account credentials.
curl --request POST \
--url https://api-lr.agent.ai/v1/action/post_to_bluesky \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"username": "<string>",
"password": "<string>",
"content": "<string>",
"output_variable_name": "post_result"
}
'{
"status": 123,
"response": {}
}Bearer token from your account (https://agent.ai/user/integrations#api)
Enter your Bluesky username/handle (e.g. 'username.bsky.social')
Enter your Bluesky account password
Enter the text content for your Bluesky post
Assign a variable name to store the post result, such as 'post_response' or 'bluesky_post'.
^[a-zA-Z][a-zA-Z0-9_]*$