← Tools Reference

V2EX

V2EX integration (Social, Developer Tools). Imported from open-connector.

API key13 toolshttps://www.v2ex.com/api/v2
GET
v2ex_list_notifications
Fetch the latest V2EX notifications for the authenticated member.

/notifications

1 parameter
ParamTypeRequiredDescription
pintegeroptionalOptional page number to request. Defaults to 1.
DELETE
v2ex_delete_notification
Delete one V2EX notification by its numeric identifier.

/notifications/{notification_id}

1 parameter
ParamTypeRequiredDescription
notification_idintegerrequiredThe V2EX numeric identifier.
GET
v2ex_list_hot_topics
Fetch public hot topics from the V2EX legacy JSON API.

/topics/hot.json

GET
v2ex_list_latest_topics
Fetch public latest topics from the V2EX legacy JSON API.

/topics/latest.json

GET
v2ex_get_current_member
Fetch the authenticated V2EX member profile.

/member

GET
v2ex_get_current_token
Fetch metadata for the V2EX Personal Access Token used by this connection.

/token

POST
v2ex_create_token
Create a new V2EX Personal Access Token from an existing token.

/tokens

2 parameters
ParamTypeRequiredDescription
scopestringrequiredThe access scope for the new V2EX token.
expirationnumberrequiredThe token lifetime in seconds.
GET
v2ex_get_node
Fetch a V2EX node by node name.

/nodes/{node_name}

1 parameter
ParamTypeRequiredDescription
node_namestringrequiredThe V2EX node name, such as `python`.
GET
v2ex_list_node_topics
Fetch topics from a V2EX node.

/nodes/{node_name}/topics

2 parameters
ParamTypeRequiredDescription
node_namestringrequiredThe V2EX node name, such as `python`.
pintegeroptionalOptional page number to request. Defaults to 1.
GET
v2ex_get_topic
Fetch a V2EX topic by numeric identifier.

/topics/{topic_id}

1 parameter
ParamTypeRequiredDescription
topic_idintegerrequiredThe V2EX numeric identifier.
GET
v2ex_list_topic_replies
Fetch replies for a V2EX topic.

/topics/{topic_id}/replies

2 parameters
ParamTypeRequiredDescription
topic_idintegerrequiredThe V2EX numeric identifier.
pintegeroptionalOptional page number to request. Defaults to 1.
POST
v2ex_set_topic_sticky
Set one of the authenticated member's V2EX topics as sticky.

/topics/{topic_id}/set-sticky

2 parameters
ParamTypeRequiredDescription
topic_idintegerrequiredThe V2EX numeric identifier.
durationstringoptionalOptional sticky duration. Defaults to 15min.
POST
v2ex_boost_topic
Boost one of the authenticated member's V2EX topics to the homepage.

/topics/{topic_id}/boost

1 parameter
ParamTypeRequiredDescription
topic_idintegerrequiredThe V2EX numeric identifier.