Skip to main content

Questions tagged [api]

Questions about the Stack Exchange API *only*. If your question concerns any other API, do not use this tag. For bugs, please (also) use the version tag, EG [api-v2.2], that the bug applies to.

Filter by
Sorted by
Tagged with
6 votes
1 answer
859 views

I was playing around a bit with Fiddler to capture traffic from the Stack Exchange iOS app. To my surprise, it uses version 2.3 of the Stack Exchange API: I noticed here that it has some extra ...
2 votes
0 answers
54 views

I am developing an image generation bot for chat (for example, chat.stackexchange.com). I can generate the image correctly, but when it comes to posting the image, I have no idea how to upload the ...
6 votes
0 answers
197 views

Code snippet #include "stackapi/StackAPI.hpp" #include "stackapi/data/structs/comments/Comment.hpp" #include <iostream> int main() { stackapi::StackAPI api ( { ...
0 votes
0 answers
28 views

My Stack Overflow Automation Description This application automates the process of saving posts as favorites on Stack Overflow. Features Automatically saves specified Stack Overflow posts as ...
2 votes
1 answer
1k views

I am trying to implement OAuth Stack Exchange API via Android app as client. After a successful login from out I get the below URL how do I get or decode the access_token from the hash? https://...
2 votes
1 answer
111 views

According to this question (and its answer), questions and answers are using the same index to determine their ID. In other words: Question with ID #1 Answer with ID #2 Answer with ID #3 Answer with ...
4 votes
2 answers
242 views

I want to show an animation of: Questions being asked and answered in the most popular tag Comments being posted New users joining All in real time. Is there access to real-time data?
13 votes
2 answers
584 views

According to How API Keys Work, the default daily API limit -- which is per site, per day -- is 300. I started with 300, as expected, but over a period of days, I've noticed that the remaining quota ...
0 votes
0 answers
29 views

const express = require("express"); const router = express.Router(); const axios = require("axios"); const querystring = require("querystring"); const dotenv = require(&...
2 votes
1 answer
114 views

I would like to access a list of all Collective Articles on SO. I tried https://api.stackexchange.com/2.3/articles?order=desc&sort=activity&site=stackoverflow which is the sample from here. ...
5 votes
1 answer
118 views

I'm writing JavaScript (Node.js) code that calls the Stack Exchange API. One part of the API is that it may return a non-zero value for backoff, which essentially means "wait n seconds before ...
1 vote
0 answers
60 views

There's an endpoint for getting information about a user - called /me. I can get a number of fields from it, including is_staff, which, presumably, indicates if a user is an SE staff member. Could ...
3 votes
1 answer
31 views

I'm trying to get only questions and answers. I filtered the fields, to get also the body of answers, but I don't get an answers JSON object. What am I missing? I know about this question, but I don'...
8 votes
0 answers
69 views

The Stack Exchange API allows users to programmatically query and connect to the Stack Exchange Network of sites. The API is currently in version 2.3. We’re collecting feedback from users of the API, ...
3 votes
1 answer
957 views

I am new to Python. I want to extract a user bio, answers, questions they made in Stack Overflow. Can I do that using the API? For example, can I extract the user: name bio and number of questions ...
0 votes
0 answers
50 views

I need a solution to exact reputations, badges for the stack overflow users. Please let me know. In microsoft programming language should be fine.
1 vote
0 answers
97 views

PLACEHOLDER - Just a post to register my app.
3 votes
0 answers
108 views

Used for (meta.)puzzling.stackexchange - Creates & edits the corresponding meta posts with information from the main and meta site. E.g. creating a post for the new challenge every 2 weeks and ...
2 votes
2 answers
137 views

I generated an access token for my application and shared it with some people. Now, I wish to revoke the access token and generate a new one. I don't find any way to revoke that token.
1 vote
1 answer
82 views

I'm curious about https://api.stackexchange.com/docs . I looked up and studied the naming convention to make a REST api. I've seen that in the naming convention, don't use verbs and in the case of the ...
2 votes
1 answer
37 views

Does anyone know why some answers are shown with a date before the question was asked? Here are a couple of examples: Why doesn't Java have compound assignment versions of the conditional-and and ...
2 votes
1 answer
166 views

I had written a Java Wrapper for the Stack Exchange API, version 1.x, Which was working perfectly. But, since 12 May 2014, services for version 1.x have been shutdown and my Wrapper stopped working. ...
8 votes
1 answer
940 views

Registering your application or script gets you a higher daily quota and is fairly simply; a step by step guide is documented here: I only need a key, what do I do? However, what if I do want an ...
1 vote
0 answers
49 views

As you can see I am a newbie, and trying to use Stack Exchange API for a school project. I spent 3 hours just trying to understand How to get started. Is there an example for me to follow? or A ...
2 votes
1 answer
413 views

I am brand new to StackApps, so please bear with me for a question that is hopefully obvious to most regular users. As far as I can tell, there is no charge for accessing the StackExchange API. ...
3 votes
1 answer
742 views

I'm working on a developing a browser extension which uses StackExchange API authentication. I was able to successfully implement the authentication for Microsoft edge/Chrome when I added chromiumapp....
4 votes
1 answer
142 views

I am reading this documentation https://stackoverflow.help/en/articles/4385859-stack-overflow-for-teams-api where they mention the need to create a PAT to access StackOverflow for Teams API (https://...
2 votes
1 answer
126 views

I'm developing an SO chrome extension in React with TypeScript. I've been reading the guide on how to use the API with OAuth and it looks fantastic for what I'm trying to do. The problem is that the ...
5 votes
1 answer
129 views

I checked docs , there are no endpoints to get total visited days and consecutive days. Is there any way to get them?
1 vote
1 answer
74 views

I'm not sure if I can use Stack Exchange API to build a https://www.gharchive.org like project? I studied the API throttling documentation but I am not sure.
19 votes
3 answers
469 views

Is there an API for uploading images to the StackExchange-specific imgur installation? I could use the main imgur site, but they don't keep the images indefinitely. Use case: It would be ...
1 vote
1 answer
102 views

The api docs: http://api.stackoverflow.com/1.0/help/method?method=posts/{id}/comments The test request. You can see comment itself here, it's four months old, while cutoff date in request is less than ...
2 votes
1 answer
126 views

Is there a way to get a list of X questions/answers with the highest votes up, visits, etc? Say I want to get the list of most voted questions in .NET category (tag) or Java.
1 vote
1 answer
242 views

I'm trying to implement this simple request in Drupal 7 on my local machine: $request = drupal_http_request('https://api.stackexchange.com/2.2/users?order=desc&sort=reputation&site=...
2 votes
1 answer
38 views

I'm trying to use https://api.stackexchange.com/2.3/questions/add method payload = { 'site': 'stackoverflow', 'title': title, 'body': body, 'tags': tags, 'key': key, '...
5 votes
1 answer
125 views

What is the latest version of the Stack Exchange API and its release date? The document which I referred is for v2.3.
3 votes
0 answers
85 views

Is there anyway to get information about any change using the stack exchange API's? i.e. if someone leaves a comment or votes on an answer/question? checking for answer changes is easy cause its a top ...
1 vote
1 answer
142 views

I started to love the Python black formatter and I want all my code on Stack Overflow to be formatted like that. So I wanted to go over the answers and apply black / blacken-docs, check if anything ...
1 vote
1 answer
150 views

I see that tags are present only for questions. How can I get the answers to these questions given in last week (if any) having specific tags?
1 vote
1 answer
4k views

I am trying the following simple code to get JSON from the Stack Exchange API and it gives me the following error: JSONDecodeError: Expecting value: line 3 column 1 (char 3) Here is my script: ...
3 votes
1 answer
50 views

The /search/excerpt query enables searching answers for specific text, but searching for Markdown links returns results that don't seem to match the query at all. For instance, the following query ...
1 vote
2 answers
858 views

I am trying to fetch all questions of the Swift tag from Stack Overflow. I created the query using https://api.stackexchange.com/docs/questions and wrote a simple wrapper in Python. def fetch_question(...
1 vote
1 answer
60 views

I tried to create a 'minimal' filter https://api.stackexchange.com/docs/questions#order=desc&sort=activity&filter=!34JvAEfIUyU-&site=stackoverflow&run=true for the 'question' object, ...
3 votes
1 answer
92 views

I'm using the Questions Advanced Search API to retrieve Stack Overflow questions with a specific tag that were created in the last 15 minutes. I've written a script which runs every fifteen minutes ...
1 vote
0 answers
36 views

We are Teams users and want to get all the articles and questions added into one collection. I did not find it in the documentation.
1 vote
0 answers
29 views

Just like stackexchange.com has a networkwide search, it would be nice to have an equivalent of excerpt-search which searches the entire network at once. That would save me 360 calls (per-site metas ...
2 votes
0 answers
19 views

When attempting to edit a post while not having enough reputation, like happened here: API to submit a Suggested Edit, the API returns the following: { "error_id": 407, "...
1 vote
0 answers
541 views

I'm doing a run every 5 seconds for this API call: url = "https://api.stackexchange.com/2.3/questions/no-answers?pagesize=30&fromdate={date_today}&order=desc&sort=creation&site=...
1 vote
1 answer
75 views

When working with the Stack Exchange API I noticed that there is important data (at least for what I thought to do) not available, whether the question, answer or comment was edited or not: { "...
2 votes
1 answer
156 views

We are Stack Overflow Teams users. We want to get the statistics by tags. Currently only StackExchangeApiClient.getStatistics API is found which include all team's data. And can the https://...

1
2 3 4 5
10