Questions tagged [api]
For questions about the Stack Exchange API. Consider checking the API documentation and the Stack Apps site before posting your question here, it might have been asked before already.
475 questions
-6
votes
0
answers
26
views
Scanning file for malware signatures python code for connecting oracle cx. Using JavaScript a [closed]
import os
import hashlib
import logging
import argparse
from typing import Dict, Optional
import cx_Oracle
Configure logging
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s [%(...
3
votes
0
answers
63
views
API discrepancy between question flagging and answer flagging
If you go to question flagging and answer flagging, you can see the question flagging page has two more options: target_site and question_id. Omitting these works the same as including them.
Both are ...
0
votes
1
answer
62
views
Minimal API filter doesn't work as expected
I tried creating a filter with the Stack Exchange API to give me only the markdown of a post, without HTML escaping. It was successfully registered:
https://api.stackexchange.com/2.3/filters/DDgLLPBaN
...
7
votes
1
answer
180
views
The API seems to never return the content license for posts/questions when the filter includes comments (or answers)
I know the API is very buggy and whether a field is returned in the response often depends on what other fields are included/excluded in the filter, but I've been unable to successfully come up with a ...
35
votes
2
answers
2k
views
Stack Exchange API: Stack Apps updates and upcoming version 3 beta
Updates (October 6th, 2025): We've closed applications to join the beta
Due to a high number of applicants and participants, we've closed our submissions form. Thanks for your interest and feedback!
...
6
votes
1
answer
286
views
API Try it 'unselect all' doesn't unselect anything
When editing filters under the Try It section of the API docs, the "unselect all" button only works for default checked items, but not new selections. It just changes the number of selected ...
13
votes
2
answers
240
views
The Search API does not show questions asked since April 1st - Related to the migration?
I have been seeing issues with the Stack Overflow API where questions created post April 1st 9AM EST do not show up when queried via the Search API.
Here is a sample query we used to confirm - https://...
30
votes
0
answers
279
views
API filters have been incompatibly changed
As of 2025-02-04 16:41 UTC+01:00, all API filters have been changed in a backwards-incompatible way. This means that all API filters used by current applications have suddenly become invalid. This ...
9
votes
0
answers
152
views
The badges API endpoint return badges from Staging Ground, that exist only on Stack Overflow, and yield 404 error pages
After the issue with the 40x codes that were returned because of the badges, there is still an issue with the API and these badges in particular.
Expected result
The /badges API should return the list ...
4
votes
1
answer
132
views
Stackexchange API to fetch saved posts across all stackexchange network
I want to fetch my saved posts from across stackexchange network that I have joined, is it possible? I have read the documentation on the api.stackexchange.com and it seems the api is intended for ...
5
votes
1
answer
224
views
Allow bounties to be posted with the API
Currently, as far as I can tell, it is not possible to post a bounty on an answer through the SE API; indeed, that seems to be just about the only thing the API doesn't let apps do to questions. Is it ...
12
votes
1
answer
218
views
What do I need to know as a user about authorising applications that interact with Stack Exchange?
I know that I can grant permission of an application to do something with my account on the network. What can and cannot an application do if I allow it? For example, if I see a description like:
...
3
votes
1
answer
107
views
Using the filters “fromdate” and “todate” on the /badges API endpoint has no effect
It looks like the fromdate and todate filters have no effect on the /badges endpoint:
Example without these filters:
https://api.stackexchange.com/docs/badges#page=1&pagesize=30&order=desc&...
6
votes
1
answer
245
views
I comply with backoff orders, but still get "Violation of backoff parameter"
I sometimes get throttle violation errors from the API
{'error_id': 502, 'error_message': 'Violation of backoff parameter', 'error_name': 'throttle_violation'}
despite complying with back off orders ...
14
votes
1
answer
811
views
API endpoints return a 40x code with error "no method found with this name" when reading the name of Staging Ground's badges
Goal
Use the SE API in order to get the lists of the badges for every website in the network. The /badges endpoint provide this data.
Expected result
According to the paging documentation, we can ...