From 7ebcb688bf536944c6b1944ba504fd991474a920 Mon Sep 17 00:00:00 2001 From: AvaKim Date: Thu, 27 Aug 2026 18:17:41 +1000 Subject: [PATCH 1/2] feat: weekly link-freshness engine and MCP server MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The dataset is a table of URLs and URLs rot, but the README's TODO to "set up cron jobs/GitHub Actions to keep the dataset up-to-date" was never built. This builds it, and exposes the result over MCP. tools/check-links.mjs probes every URL in every column, follows redirects and classifies the outcome. Two distinctions do the real work: - moved vs dead. A redirect has a known-good replacement, so --fix rewrites those rows automatically. A 404 does not, and inventing one would put a fabrication in the dataset, so dead URLs are reported for a human instead. - blocked vs dead. 401/403/429 means we were refused, which says nothing about whether the page exists. Counting a Cloudflare challenge as rot would let a bot-detector silently delete good rows. Per-column tallies cover structurally complete rows only. Most rows in this dataset omit fields rather than blanking them, so later values shift a column left and a privacy-policy URL lands under Official_Documentation_URL; counting those would make "documentation health" partly a claim about privacy policies. That defect is measured separately under `alignment`. Reports go to datasets/link-health.json (snapshot) and datasets/link-health-history.csv (appended each run). The series is the point: a snapshot says the data is stale, the series says how fast docs rot. mcp/server.mjs serves the index over stdio with three tools. Every URL is returned with when it was last verified and what the verifier saw — handing a model a link without its age invites it to trust a 404, and a tool result reads as authoritative. With no report present it says "unknown" rather than implying freshness. tools/verify-mcp.mjs drives it as a real client end-to-end. Deliberately dependency-light: the workflow installs only csv-parse and csv-stringify rather than the full manifest, so CI does not download playwright browsers to make fetch calls. Co-Authored-By: Claude Opus 5 --- .github/workflows/link-freshness.yml | 88 ++++++ README.md | 110 ++++++- mcp/server.mjs | 189 ++++++++++++ package.json | 9 +- test/link-classify.test.cjs | 84 ++++++ tools/check-links.mjs | 432 +++++++++++++++++++++++++++ tools/verify-mcp.mjs | 56 ++++ 7 files changed, 965 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/link-freshness.yml create mode 100644 mcp/server.mjs create mode 100644 test/link-classify.test.cjs create mode 100644 tools/check-links.mjs create mode 100644 tools/verify-mcp.mjs diff --git a/.github/workflows/link-freshness.yml b/.github/workflows/link-freshness.yml new file mode 100644 index 0000000..f835134 --- /dev/null +++ b/.github/workflows/link-freshness.yml @@ -0,0 +1,88 @@ +name: Link freshness + +# The dataset is a table of URLs, and URLs rot. This re-probes every URL every +# week, appends the result to datasets/link-health-history.csv, and opens a PR +# with the corrections it can make safely (redirects only — a dead URL has no +# known replacement, so it is reported rather than guessed at). + +on: + schedule: + # Mondays 00:20 UTC — off the hour, where scheduled-job contention is worst. + - cron: '20 0 * * 1' + workflow_dispatch: + +permissions: + contents: write + pull-requests: write + +concurrency: + group: link-freshness + cancel-in-progress: false + +jobs: + check: + runs-on: ubuntu-latest + timeout-minutes: 60 + + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-node@v4 + with: + node-version: '20' + + # Only the two CSV libraries — installing the full manifest would pull + # crawlee and playwright browsers for a job that makes plain fetch calls. + - name: Install check dependencies + run: npm install --no-save --no-audit --no-fund csv-parse csv-stringify + + - name: Probe every URL and apply redirect corrections + run: node tools/check-links.mjs --fix | tee check-links.out + + - name: Summarise + run: | + { + echo '## Link freshness' + echo + echo '```' + tail -n 20 check-links.out + echo '```' + } >> "$GITHUB_STEP_SUMMARY" + + - name: Upload full report + uses: actions/upload-artifact@v4 + with: + name: link-health-${{ github.run_number }} + path: datasets/link-health.json + retention-days: 90 + + - name: Open a pull request with the corrections + uses: peter-evans/create-pull-request@v6 + with: + branch: automated/link-freshness + # Recreate rather than accumulate: each run supersedes the last, so a + # missed week never leaves a stale correction sitting in an open PR. + delete-branch: true + commit-message: 'chore(data): weekly link freshness pass' + title: 'chore(data): weekly link freshness pass' + add-paths: | + api-docs-urls.csv + datasets/link-health.json + datasets/link-health-history.csv + body: | + Automated by `.github/workflows/link-freshness.yml`. + + `tools/check-links.mjs` probed every URL in every column, followed + redirects, and rewrote the rows whose URL now resolves somewhere else. + + **Dead URLs are deliberately not touched.** A 404 has no known + replacement and inventing one would put a fabrication in the dataset; + they are listed in `datasets/link-health.json` under `findings` with + `"outcome": "dead"` for a human to resolve. + + `403` and `429` are recorded as `blocked`, not `dead` — being refused + by a bot-detecting CDN says nothing about whether the page exists, so + those never drive a correction either. + + Per-run totals are appended to `datasets/link-health-history.csv`. + The series is the interesting output; a single snapshot is not. diff --git a/README.md b/README.md index d813eda..d12e8a4 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,111 @@ api-docs-urls.csv: ... > ⚠️ **The URLs are auto-generated and require manual verification** -> We aim to maintain these URLs to be pointing to the **current** document (TODO: Set up cron jobs/GitHub Actions to periodically re-run the scrapers and keep the dataset up-to-date) +> They are now re-verified weekly — see [Dataset freshness](#-dataset-freshness) below. +## 🔄 Dataset freshness + +A table of URLs is only worth what its URLs are worth, and URLs rot. Documentation +sites reorganise, whole doc platforms migrate (`api.slack.com` → `docs.slack.dev`, +`stripe.com/docs` → `docs.stripe.com`), and pages are retired. So the dataset +re-verifies itself. + +```bash +npm run check-links # probe every URL in every column, write reports +npm run check-links:fix # also rewrite rows whose URL now redirects elsewhere +``` + +[`.github/workflows/link-freshness.yml`](.github/workflows/link-freshness.yml) +runs this every Monday and opens a pull request with whatever it can repair. + +**What it does and does not repair.** A URL that now redirects somewhere else has +a known-good replacement — the place it redirects to — so those rows are rewritten +automatically. A dead URL does not; inventing a plausible replacement would put a +fabrication in the dataset, so 404s are reported for a human to resolve rather +than guessed at. `403` and `429` are recorded as `blocked`, never as dead: being +refused by a bot-detecting CDN says nothing about whether the page exists, and +treating a Cloudflare challenge as rot would silently delete good rows. + +### Outputs + +| file | what it holds | +|---|---| +| `datasets/link-health.json` | full snapshot — per-column tallies, every non-OK finding, `/llms.txt` availability per host | +| `datasets/link-health-history.csv` | one row per column per run, appended forever | + +The history file is the point. A single snapshot says the dataset is stale today; +the series says how fast documentation rots, which is a question nobody seems to +have measured. + +### Two caveats on reading the numbers + +**Per-column statistics cover structurally complete rows only.** Most rows in this +dataset omit fields rather than leaving them empty, which shifts every later value +one column to the left — so a privacy-policy URL can end up sitting in the +documentation column. Counting those rows would make "documentation URLs are N% +healthy" partly a statement about privacy policies. The checker reports the +alignment problem separately under `alignment` rather than folding it into rot. + +**`ok` is a strict test.** It means the stored URL returned 200 at exactly that +address. A URL that resolves only after a redirect is counted as `moved`, not +`ok`, because for a dataset whose product *is* the URL, pointing at a redirect +stub is a defect even when a human following it lands somewhere fine. + +--- + +## 🔌 MCP server + +The index is most useful to a coding agent, so it is exposed over the +[Model Context Protocol](https://modelcontextprotocol.io). Any MCP client — +Claude Code, Claude Desktop, Cursor, VS Code, Windsurf, Zed — can query it. + +```bash +npm install +npm run mcp # stdio server +``` + +Client configuration: + +```json +{ + "mcpServers": { + "updapi": { + "command": "node", + "args": ["/absolute/path/to/updAPI/mcp/server.mjs"] + } + } +} +``` + +### Tools + +| tool | what it answers | +|---|---| +| `search_apis` | "which entries match *stripe*?" — name search, returns the documentation URL | +| `get_api_resources` | "give me everything indexed for this API" — docs, privacy, terms, rate limits, release notes, security, community | +| `index_health` | "how much should I trust the answers above?" — freshness and per-column health | + +**Every URL is returned with its freshness.** Each resource carries when it was +last verified and what the verifier saw (`ok`, `moved` with the redirect target, +`dead`, `blocked`). Handing a model a link without saying how old the claim is +invites it to trust a 404 — worse than returning nothing, because a tool result +reads as authoritative. When no `link-health.json` is present the server reports +`"verified": "unknown"` rather than implying the data is current. + +The `Rate Limiting Policy`, `Terms of Service` and `Security Policy` columns are +the ones worth reaching for. General web search handles "where are the Stripe API +docs" perfectly well; it does much worse on policy pages, which rank below +marketing pages and are exactly where a model will confidently invent a number. + +To verify the server end-to-end after a change: + +```bash +node tools/verify-mcp.mjs +``` + +--- + ## 🛠 Adding More APIs to the Dataset ### **Option 1: Manually Add to `api-docs-urls.csv`** @@ -237,6 +339,10 @@ This repository is licensed under the [MIT License](LICENSE). ### 📌 Known Issues: - Limited API support. - Some features may not work as expected. +- **Most rows are missing columns.** Fields are omitted rather than blanked, so the + remaining values shift left and land under the wrong heading. `npm run check-links` + reports the scale of this under `alignment` in `datasets/link-health.json`; repairing + it is the highest-value contribution available right now. Check the [Open Issues](https://github.com/in-c0/updapi/issues) for more details. @@ -248,6 +354,8 @@ Check the [Open Issues](https://github.com/in-c0/updapi/issues) for more details - Basic search and browse functionality. - JSON exports for select APIs. - Direct links to official API documentation. +- Weekly automated link verification ([`link-freshness.yml`](.github/workflows/link-freshness.yml)). +- MCP server, so coding agents can query the index directly. ### 🔜 Future Enhancements - IDE integrations (e.g., VS Code plugin). diff --git a/mcp/server.mjs b/mcp/server.mjs new file mode 100644 index 0000000..c7f7e61 --- /dev/null +++ b/mcp/server.mjs @@ -0,0 +1,189 @@ +/** + * updAPI MCP server — serves the API resource index over stdio. + * + * The index is a table of URLs and URLs rot, so every response carries the + * freshness of what it is handing back: when the URL was last verified and what + * the verifier saw. A tool that returns a link without saying how old the claim + * is invites the model to trust a 404, which is worse than returning nothing. + * Freshness comes from datasets/link-health.json, refreshed by the weekly + * workflow that runs tools/check-links.mjs. + * + * node mcp/server.mjs + */ + +import fs from 'node:fs'; +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; +import { parse } from 'csv-parse/sync'; +import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; +import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'; +import { z } from 'zod'; + +const ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..'); +const CSV_PATH = path.join(ROOT, 'api-docs-urls.csv'); +const HEALTH_PATH = path.join(ROOT, 'datasets', 'link-health.json'); + +const NAME_COLUMN = 'API_Name'; + +const loadRows = () => { + const raw = fs.readFileSync(CSV_PATH, 'utf8'); + return parse(raw, { + columns: true, + skip_empty_lines: true, + bom: true, + relax_column_count: true, + trim: true, + }); +}; + +/** Missing or unreadable health data must degrade to "unknown", never to a lie. */ +const loadHealth = () => { + try { + const report = JSON.parse(fs.readFileSync(HEALTH_PATH, 'utf8')); + const byUrl = new Map(); + for (const finding of report.findings || []) { + byUrl.set(finding.url, finding); + } + return { generatedAt: report.generatedAt || null, byUrl }; + } catch { + return { generatedAt: null, byUrl: new Map() }; + } +}; + +const ROWS = loadRows(); +const HEALTH = loadHealth(); +const COLUMNS = Object.keys(ROWS[0] || {}).filter((c) => c !== NAME_COLUMN); + +/** + * A URL absent from `findings` was verified OK at generatedAt — the report only + * records departures from OK. With no report at all, everything is "unknown". + */ +const describeUrl = (url) => { + if (!url) return null; + if (!HEALTH.generatedAt) { + return { url, verified: 'unknown', note: 'no link-health report present' }; + } + const finding = HEALTH.byUrl.get(url); + if (!finding) return { url, verified: HEALTH.generatedAt, status: 'ok' }; + return { + url, + verified: HEALTH.generatedAt, + status: finding.outcome, + httpStatus: finding.status, + ...(finding.finalUrl && finding.finalUrl !== url ? { redirectsTo: finding.finalUrl } : {}), + }; +}; + +const resourcesFor = (row) => { + const out = {}; + for (const column of COLUMNS) { + const value = (row[column] || '').trim(); + if (value) out[column] = describeUrl(value); + } + return out; +}; + +const asText = (payload) => ({ + content: [{ type: 'text', text: JSON.stringify(payload, null, 2) }], +}); + +const server = new McpServer({ name: 'updapi', version: '1.0.0' }); + +server.tool( + 'search_apis', + 'Find APIs in the updAPI index by name. Returns matching API names and their ' + + 'documentation URL with freshness metadata. Use this first when you know the ' + + 'product but not the exact index entry.', + { + query: z.string().min(1).describe('Substring of the API name, e.g. "stripe" or "zoom"'), + limit: z.number().int().min(1).max(50).default(10).describe('Maximum results'), + }, + async ({ query, limit }) => { + const needle = query.toLowerCase(); + const matches = ROWS.filter((row) => + (row[NAME_COLUMN] || '').toLowerCase().includes(needle) + ).slice(0, limit); + + return asText({ + query, + matched: matches.length, + indexVerified: HEALTH.generatedAt || 'unknown', + results: matches.map((row) => ({ + api: row[NAME_COLUMN], + documentation: describeUrl((row.Official_Documentation_URL || '').trim()), + })), + }); + } +); + +server.tool( + 'get_api_resources', + 'Get every indexed resource for one API — documentation, privacy policy, terms of ' + + 'service, rate limiting policy, release notes, security policy and developer ' + + 'community — each with when it was last verified and whether it still resolves. ' + + 'The policy columns are the ones general web search covers worst.', + { + api: z.string().min(1).describe('API name, exact or substring, e.g. "Stripe API"'), + }, + async ({ api }) => { + const needle = api.toLowerCase(); + const row = + ROWS.find((r) => (r[NAME_COLUMN] || '').toLowerCase() === needle) || + ROWS.find((r) => (r[NAME_COLUMN] || '').toLowerCase().includes(needle)); + + if (!row) { + return asText({ + api, + found: false, + hint: 'No entry matched. Try search_apis with a shorter query.', + }); + } + + return asText({ + api: row[NAME_COLUMN], + found: true, + indexVerified: HEALTH.generatedAt || 'unknown', + resources: resourcesFor(row), + }); + } +); + +server.tool( + 'index_health', + 'Report how fresh the updAPI index currently is: when it was last verified and how ' + + 'many URLs are OK, redirected, dead or blocked, per column. Call this to decide ' + + 'how much to trust the other tools, or to find entries needing repair.', + { + column: z + .string() + .optional() + .describe('Restrict to one column, e.g. "Rate Limiting Policy"'), + }, + async ({ column }) => { + if (!HEALTH.generatedAt) { + return asText({ + available: false, + reason: + 'datasets/link-health.json is missing — run `npm run check-links` or wait ' + + 'for the weekly freshness workflow.', + }); + } + const report = JSON.parse(fs.readFileSync(HEALTH_PATH, 'utf8')); + return asText({ + available: true, + generatedAt: report.generatedAt, + rows: report.rows, + distinctUrls: report.distinctUrls, + alignment: report.alignment, + byColumn: column ? { [column]: report.byColumn?.[column] } : report.byColumn, + llmsTxt: { + hostsProbed: report.llmsTxt?.hostsProbed, + hostsServing: report.llmsTxt?.hostsServing, + share: report.llmsTxt?.share, + }, + }); + } +); + +const transport = new StdioServerTransport(); +await server.connect(transport); diff --git a/package.json b/package.json index c378bdc..fb1e85f 100644 --- a/package.json +++ b/package.json @@ -5,17 +5,22 @@ "description": "![updAPI](https://github.com/user-attachments/assets/7a67269e-5ce0-480d-95d8-cd7dfe79ca87)", "main": "index.js", "scripts": { - "test": "mocha" + "test": "mocha", + "check-links": "node tools/check-links.mjs", + "check-links:fix": "node tools/check-links.mjs --fix", + "mcp": "node mcp/server.mjs" }, "keywords": [], "author": "", "license": "ISC", "dependencies": { + "@modelcontextprotocol/sdk": "^1.12.0", "cheerio": "^1.0.0", "crawlee": "^3.12.1", "csv-parse": "^5.6.0", "csv-stringify": "^6.5.2", "mocha": "^11.1.0", - "playwright": "^1.49.1" + "playwright": "^1.49.1", + "zod": "^3.23.8" } } diff --git a/test/link-classify.test.cjs b/test/link-classify.test.cjs new file mode 100644 index 0000000..a715520 --- /dev/null +++ b/test/link-classify.test.cjs @@ -0,0 +1,84 @@ +const assert = require('assert'); + +// check-links.mjs is ESM; load it with a dynamic import so this suite can stay +// CommonJS like the rest of test/. +let mod; +before(async function () { + mod = await import('../tools/check-links.mjs'); +}); + +describe('link classification', function () { + it('treats a 200 at the requested URL as ok', function () { + const url = 'https://docs.stripe.com/api'; + assert.strictEqual(mod.classify(200, url, url), mod.OUTCOME.OK); + }); + + it('ignores a trailing slash difference', function () { + assert.strictEqual( + mod.classify(200, 'https://docs.stripe.com/api', 'https://docs.stripe.com/api/'), + mod.OUTCOME.OK + ); + }); + + it('ignores a fragment on the final URL', function () { + assert.strictEqual( + mod.classify(200, 'https://example.com/docs', 'https://example.com/docs#intro'), + mod.OUTCOME.OK + ); + }); + + it('flags a 200 reached at a different URL as moved', function () { + assert.strictEqual( + mod.classify(200, 'https://api.slack.com/scopes', 'https://docs.slack.dev/reference/scopes/'), + mod.OUTCOME.MOVED + ); + }); + + it('treats 404 and 410 as dead', function () { + const url = 'https://developers.hubspot.com/docs/api/email-marketing'; + assert.strictEqual(mod.classify(404, url, url), mod.OUTCOME.DEAD); + assert.strictEqual(mod.classify(410, url, url), mod.OUTCOME.DEAD); + }); + + // The distinction that protects the dataset: being refused by a bot-detecting + // CDN says nothing about whether the page exists, so it must not read as rot. + it('treats 401, 403 and 429 as blocked rather than dead', function () { + const url = 'https://example.com/docs'; + assert.strictEqual(mod.classify(401, url, url), mod.OUTCOME.BLOCKED); + assert.strictEqual(mod.classify(403, url, url), mod.OUTCOME.BLOCKED); + assert.strictEqual(mod.classify(429, url, url), mod.OUTCOME.BLOCKED); + }); + + it('files anything else under other', function () { + const url = 'https://example.com/docs'; + assert.strictEqual(mod.classify(500, url, url), mod.OUTCOME.OTHER); + assert.strictEqual(mod.classify(302, url, url), mod.OUTCOME.OTHER); + }); +}); + +describe('URL normalisation', function () { + it('strips trailing slashes and fragments but keeps the query', function () { + assert.strictEqual( + mod.normalise('https://example.com/a/b/?v=1#frag'), + 'https://example.com/a/b?v=1' + ); + }); + + it('returns unparseable input unchanged', function () { + assert.strictEqual(mod.normalise('not a url'), 'not a url'); + }); +}); + +describe('probeable values', function () { + it('accepts http and https', function () { + assert.ok(mod.isProbeableUrl('https://example.com')); + assert.ok(mod.isProbeableUrl('http://example.com')); + }); + + it('rejects blanks, prose and non-web schemes', function () { + assert.ok(!mod.isProbeableUrl('')); + assert.ok(!mod.isProbeableUrl('N/A')); + assert.ok(!mod.isProbeableUrl('mailto:support@example.com')); + assert.ok(!mod.isProbeableUrl(undefined)); + }); +}); diff --git a/tools/check-links.mjs b/tools/check-links.mjs new file mode 100644 index 0000000..15ea703 --- /dev/null +++ b/tools/check-links.mjs @@ -0,0 +1,432 @@ +/** + * check-links.mjs — freshness engine for api-docs-urls.csv + * + * The dataset is a table of URLs, and URLs rot. This probes every URL in every + * column, follows redirects, and reports what it found. With --fix it rewrites + * rows whose URL now redirects elsewhere, so the table repairs itself. + * + * Deliberately dependency-light (csv-parse + csv-stringify, both already in + * package.json) so CI does not have to install crawlee/playwright to run it. + * + * node tools/check-links.mjs # probe, write reports + * node tools/check-links.mjs --fix # also apply redirect corrections + * node tools/check-links.mjs --limit 50 # probe a sample (development) + * node tools/check-links.mjs --column "Rate Limiting Policy" + */ + +import fs from 'node:fs'; +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; +import { parse } from 'csv-parse/sync'; +import { stringify } from 'csv-stringify/sync'; + +const ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..'); +const CSV_PATH = path.join(ROOT, 'api-docs-urls.csv'); +const DATASETS = path.join(ROOT, 'datasets'); + +const NAME_COLUMN = 'API_Name'; +const UA = + 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) ' + + 'Chrome/126.0.0.0 Safari/537.36 updAPI-link-checker/1.0 (+https://github.com/in-c0/updAPI)'; + +const REQUEST_TIMEOUT_MS = 15000; +const HOST_CONCURRENCY = 2; // be a polite guest on any single doc site +const GLOBAL_CONCURRENCY = 12; // how many distinct hosts we talk to at once + +/** + * Outcomes are deliberately more granular than ok/broken. The distinction that + * matters most is `blocked` vs `dead`: a 403 from a bot-detecting CDN says + * nothing about whether the page exists, so it must never be treated as rot and + * must never drive a correction. Conflating the two would let Cloudflare quietly + * delete rows from the dataset. + */ +const OUTCOME = { + OK: 'ok', // 200, and the final URL is the one we stored + MOVED: 'moved', // 200, but only after redirecting somewhere else + DEAD: 'dead', // 404/410 — the page is gone + BLOCKED: 'blocked', // 401/403/429 — we were refused, existence unknown + ERROR: 'error', // DNS failure, TLS failure, timeout + OTHER: 'other', // any other status +}; + +const argv = process.argv.slice(2); +const hasFlag = (f) => argv.includes(f); +const flagValue = (f) => { + const i = argv.indexOf(f); + return i === -1 ? null : argv[i + 1]; +}; + +const APPLY_FIXES = hasFlag('--fix'); +const SAMPLE_LIMIT = flagValue('--limit') ? Number(flagValue('--limit')) : null; +const ONLY_COLUMN = flagValue('--column'); + +/** Trailing slashes and fragments are not meaningful differences. */ +const normalise = (url) => { + try { + const u = new URL(url); + u.hash = ''; + u.pathname = u.pathname.replace(/\/+$/, '') || '/'; + return u.toString(); + } catch { + return url; + } +}; + +const hostOf = (url) => { + try { + return new URL(url).host.toLowerCase(); + } catch { + return ''; + } +}; + +const isProbeableUrl = (value) => typeof value === 'string' && /^https?:\/\//i.test(value.trim()); + +/** + * Rot is not this dataset's worst defect. Most rows omit fields rather than + * leaving them empty, so every value after the gap shifts one column left and a + * privacy-policy URL ends up sitting in the documentation column. Column + * statistics computed over those rows would be measuring the wrong cells, so + * they are tallied separately and these hints are used to flag the shift. + */ +const COLUMN_HINTS = { + 'Privacy Policy': /privacy/i, + 'Terms of Service': /(terms|tos|legal|conditions)/i, + 'Rate Limiting Policy': /(rate.?limit|throttl|quota|limits)/i, + 'Release Notes': /(release|changelog|change-log|whats-new|news)/i, + 'Security Policy': /(security|trust|vulnerab)/i, + 'Developer Community/Forum': /(community|forum|discuss|groups|stackoverflow|slack|discord)/i, +}; + +/** Does this row's documentation cell actually look like some other column? */ +const misalignedAs = (row) => { + const value = (row.Official_Documentation_URL || '').trim(); + if (!isProbeableUrl(value)) return null; + for (const [column, pattern] of Object.entries(COLUMN_HINTS)) { + if (pattern.test(value)) return column; + } + return null; +}; + +const classify = (status, requestedUrl, finalUrl) => { + if (status === 404 || status === 410) return OUTCOME.DEAD; + if (status === 401 || status === 403 || status === 429) return OUTCOME.BLOCKED; + if (status >= 200 && status < 300) { + return normalise(requestedUrl) === normalise(finalUrl) ? OUTCOME.OK : OUTCOME.MOVED; + } + return OUTCOME.OTHER; +}; + +/** One GET, redirects followed, with a single retry for transient failures. */ +const probe = async (url, attempt = 0) => { + try { + const response = await fetch(url, { + method: 'GET', + redirect: 'follow', + headers: { 'User-Agent': UA, Accept: 'text/html,application/xhtml+xml,*/*' }, + signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS), + }); + // Drain the body so the socket is released promptly; we only need headers. + await response.arrayBuffer().catch(() => {}); + + if (response.status === 429 && attempt === 0) { + await new Promise((r) => setTimeout(r, 3000)); + return probe(url, attempt + 1); + } + + return { + url, + status: response.status, + finalUrl: response.url || url, + outcome: classify(response.status, url, response.url || url), + }; + } catch (err) { + if (attempt === 0) { + await new Promise((r) => setTimeout(r, 1500)); + return probe(url, attempt + 1); + } + return { + url, + status: 0, + finalUrl: null, + outcome: OUTCOME.ERROR, + error: err?.name === 'TimeoutError' ? 'timeout' : String(err?.message || err), + }; + } +}; + +/** Run `fn` over `items` with at most `limit` in flight. */ +const mapPool = async (items, limit, fn) => { + const results = new Array(items.length); + let cursor = 0; + const worker = async () => { + while (cursor < items.length) { + const index = cursor++; + results[index] = await fn(items[index], index); + } + }; + await Promise.all(Array.from({ length: Math.min(limit, items.length) }, worker)); + return results; +}; + +/** + * Probe a set of URLs grouped by host, so no single documentation site sees more + * than HOST_CONCURRENCY requests at a time however many rows reference it. + */ +const probeAll = async (urls, onProgress) => { + const byHost = new Map(); + for (const url of urls) { + const host = hostOf(url); + if (!byHost.has(host)) byHost.set(host, []); + byHost.get(host).push(url); + } + + const results = new Map(); + let done = 0; + const hosts = [...byHost.keys()]; + + await mapPool(hosts, GLOBAL_CONCURRENCY, async (host) => { + await mapPool(byHost.get(host), HOST_CONCURRENCY, async (url) => { + const result = await probe(url); + results.set(url, result); + done += 1; + if (onProgress && done % 100 === 0) onProgress(done, urls.length); + }); + }); + + return results; +}; + +/** Probe https:///llms.txt once per host. */ +const probeLlmsTxt = async (hosts) => { + const results = {}; + await mapPool(hosts, GLOBAL_CONCURRENCY, async (host) => { + const { status, outcome } = await probe(`https://${host}/llms.txt`); + results[host] = { status, serves: status >= 200 && status < 300, outcome }; + }); + return results; +}; + +const emptyTally = () => ({ + checked: 0, + [OUTCOME.OK]: 0, + [OUTCOME.MOVED]: 0, + [OUTCOME.DEAD]: 0, + [OUTCOME.BLOCKED]: 0, + [OUTCOME.ERROR]: 0, + [OUTCOME.OTHER]: 0, +}); + +const main = async () => { + const raw = fs.readFileSync(CSV_PATH, 'utf8'); + // relax_column_count: the dataset contains rows with missing trailing + // columns. Refusing to parse would make the checker unable to report on the + // very rows most likely to be wrong, so short rows are tolerated and counted. + const rows = parse(raw, { + columns: true, + skip_empty_lines: true, + bom: true, + relax_column_count: true, + trim: true, + }); + if (rows.length === 0) throw new Error(`${CSV_PATH} parsed to zero rows`); + + const allColumns = Object.keys(rows[0]); + const urlColumns = allColumns + .filter((c) => c !== NAME_COLUMN) + .filter((c) => !ONLY_COLUMN || c === ONLY_COLUMN); + + if (urlColumns.length === 0) { + throw new Error(`no URL columns selected (--column ${ONLY_COLUMN} matched nothing)`); + } + + const sample = SAMPLE_LIMIT ? rows.slice(0, SAMPLE_LIMIT) : rows; + + // Structural completeness, assessed before anything is probed. A row missing + // any column cannot be trusted to be column-aligned, so it is excluded from + // per-column statistics rather than quietly corrupting them. + const isComplete = (row) => allColumns.every((column) => row[column] !== undefined); + const completeRows = rows.filter(isComplete); + const incompleteRows = rows.filter((row) => !isComplete(row)); + + const fieldCountHistogram = {}; + for (const row of rows) { + const filled = allColumns.filter((column) => row[column] !== undefined).length; + fieldCountHistogram[filled] = (fieldCountHistogram[filled] || 0) + 1; + } + + const shifted = incompleteRows + .map((row) => ({ api: row[NAME_COLUMN], looksLike: misalignedAs(row) })) + .filter((entry) => entry.looksLike); + + // One probe per distinct URL, however many rows share it. + const distinct = new Set(); + for (const row of sample) { + for (const column of urlColumns) { + if (isProbeableUrl(row[column])) distinct.add(row[column].trim()); + } + } + const urls = [...distinct]; + + console.error( + `updAPI link check — ${sample.length} rows x ${urlColumns.length} columns ` + + `= ${urls.length} distinct URLs across ${new Set(urls.map(hostOf)).size} hosts` + ); + + const started = new Date().toISOString(); + const results = await probeAll(urls, (done, total) => + console.error(` ${done}/${total} probed`) + ); + + // Per-column tallies, computed over rows (so a URL shared by ten rows counts + // ten times) — that is the number a consumer of the dataset actually feels. + const byColumn = {}; + const findings = []; + for (const column of urlColumns) byColumn[column] = emptyTally(); + + for (const row of sample) { + const rowIsComplete = isComplete(row); + for (const column of urlColumns) { + const value = (row[column] || '').trim(); + if (!isProbeableUrl(value)) continue; + const result = results.get(value); + if (!result) continue; + + // Findings are collected for every row, but only aligned rows are + // counted — otherwise "43% of documentation URLs are OK" would be + // partly a statement about privacy-policy URLs. + if (rowIsComplete) { + byColumn[column].checked += 1; + byColumn[column][result.outcome] += 1; + } + + if (result.outcome !== OUTCOME.OK) { + findings.push({ + api: row[NAME_COLUMN], + column, + ...(rowIsComplete ? {} : { rowIncomplete: true }), + url: value, + outcome: result.outcome, + status: result.status, + finalUrl: result.finalUrl, + ...(result.error ? { error: result.error } : {}), + }); + } + } + } + + const totals = emptyTally(); + for (const tally of Object.values(byColumn)) { + for (const key of Object.keys(totals)) totals[key] += tally[key]; + } + + const hosts = [...new Set(urls.map(hostOf))].filter((h) => h !== ''); + console.error(`probing /llms.txt on ${hosts.length} hosts`); + const llmsTxt = await probeLlmsTxt(hosts); + const llmsServing = Object.values(llmsTxt).filter((h) => h.serves).length; + + fs.mkdirSync(DATASETS, { recursive: true }); + + const report = { + generatedAt: started, + csv: path.basename(CSV_PATH), + rows: sample.length, + columns: urlColumns, + distinctUrls: urls.length, + alignment: { + rowsComplete: completeRows.length, + rowsIncomplete: incompleteRows.length, + shareComplete: rows.length ? Number((completeRows.length / rows.length).toFixed(4)) : 0, + fieldCountHistogram, + documentationCellLooksLikeAnotherColumn: shifted.length, + shiftedExamples: shifted.slice(0, 25), + note: + 'Per-column statistics cover structurally complete rows only. Incomplete ' + + 'rows omit fields rather than blanking them, so their columns are shifted ' + + 'and cannot be attributed to a named column.', + }, + totals, + byColumn, + llmsTxt: { + hostsProbed: hosts.length, + hostsServing: llmsServing, + share: hosts.length ? Number((llmsServing / hosts.length).toFixed(4)) : 0, + byHost: llmsTxt, + }, + findings: findings.sort((a, b) => a.api.localeCompare(b.api)), + }; + fs.writeFileSync( + path.join(DATASETS, 'link-health.json'), + `${JSON.stringify(report, null, 2)}\n` + ); + + // Append one row per column per run. This file is the point of the exercise: + // a single snapshot is a curiosity, the series is the finding. + const historyPath = path.join(DATASETS, 'link-health-history.csv'); + const historyHeader = + 'date,column,checked,ok,moved,dead,blocked,error,other,llms_txt_hosts,llms_txt_serving,rows_complete,rows_total\n'; + if (!fs.existsSync(historyPath)) fs.writeFileSync(historyPath, historyHeader); + const date = started.slice(0, 10); + const historyRows = urlColumns.map((column) => { + const t = byColumn[column]; + return [ + date, column, t.checked, t[OUTCOME.OK], t[OUTCOME.MOVED], t[OUTCOME.DEAD], + t[OUTCOME.BLOCKED], t[OUTCOME.ERROR], t[OUTCOME.OTHER], + hosts.length, llmsServing, completeRows.length, rows.length, + ]; + }); + fs.appendFileSync(historyPath, stringify(historyRows)); + + // --fix rewrites only `moved` rows. A dead URL has no known replacement, so + // guessing one would put a fabrication in the dataset; those stay in the + // report for a human (or a search) to resolve. + let corrections = 0; + if (APPLY_FIXES) { + for (const row of rows) { + for (const column of urlColumns) { + const value = (row[column] || '').trim(); + if (!isProbeableUrl(value)) continue; + const result = results.get(value); + if (result?.outcome === OUTCOME.MOVED && result.finalUrl) { + row[column] = result.finalUrl; + corrections += 1; + } + } + } + if (corrections > 0) { + fs.writeFileSync( + CSV_PATH, + stringify(rows, { header: true, columns: allColumns, record_delimiter: '\r\n' }) + ); + } + } + + const pct = (n) => (totals.checked ? `${((n / totals.checked) * 100).toFixed(1)}%` : '—'); + console.error(''); + console.error(`checked ${totals.checked}`); + console.error(` ok ${totals.ok} (${pct(totals.ok)})`); + console.error(` moved ${totals.moved} (${pct(totals.moved)})`); + console.error(` dead ${totals.dead} (${pct(totals.dead)})`); + console.error(` blocked ${totals.blocked} (${pct(totals.blocked)})`); + console.error(` error ${totals.error} (${pct(totals.error)})`); + console.error(` other ${totals.other} (${pct(totals.other)})`); + console.error(`llms.txt ${llmsServing}/${hosts.length} hosts serve one`); + console.error( + `alignment ${completeRows.length}/${rows.length} rows carry all columns; ` + + `${shifted.length} have a non-doc URL in the documentation column` + ); + if (APPLY_FIXES) console.error(`corrections ${corrections} applied to ${path.basename(CSV_PATH)}`); + + // Non-zero exit would fail the weekly workflow on a dataset that is merely + // stale, which is the normal state. Rot is reported, not treated as an error. + process.exitCode = 0; +}; + +export { classify, normalise, isProbeableUrl, OUTCOME }; + +if (import.meta.url === `file://${process.argv[1]}` || process.argv[1]?.endsWith('check-links.mjs')) { + main().catch((err) => { + console.error(err); + process.exit(1); + }); +} diff --git a/tools/verify-mcp.mjs b/tools/verify-mcp.mjs new file mode 100644 index 0000000..4c3c105 --- /dev/null +++ b/tools/verify-mcp.mjs @@ -0,0 +1,56 @@ +/** + * verify-mcp.mjs — end-to-end check that mcp/server.mjs actually speaks MCP. + * + * Spawns the server over stdio as a real client would, lists its tools and calls + * each one. Run it after changing the server: a server that starts cleanly can + * still fail to register a tool or return a malformed result. + * + * node tools/verify-mcp.mjs + */ + +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; +import { Client } from '@modelcontextprotocol/sdk/client/index.js'; +import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js'; + +const ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..'); + +const transport = new StdioClientTransport({ + command: process.execPath, + args: [path.join(ROOT, 'mcp', 'server.mjs')], +}); + +const client = new Client({ name: 'updapi-verify', version: '1.0.0' }); +await client.connect(transport); + +const { tools } = await client.listTools(); +console.log(`tools: ${tools.map((t) => t.name).join(', ')}`); + +const show = async (name, args) => { + const result = await client.callTool({ name, arguments: args }); + const text = result.content?.[0]?.text ?? ''; + console.log(`\n--- ${name}(${JSON.stringify(args)})`); + console.log(text.length > 900 ? `${text.slice(0, 900)}\n ...` : text); + return JSON.parse(text); +}; + +const search = await show('search_apis', { query: 'stripe', limit: 3 }); +const resources = await show('get_api_resources', { api: 'Stripe' }); +const health = await show('index_health', {}); + +const failures = []; +if (!tools.some((t) => t.name === 'search_apis')) failures.push('search_apis not registered'); +if (search.matched === 0) failures.push('search_apis found nothing for "stripe"'); +if (!resources.found) failures.push('get_api_resources found no Stripe entry'); +if (!resources.resources || Object.keys(resources.resources).length === 0) { + failures.push('get_api_resources returned no resources'); +} +if (health.available !== true) failures.push('index_health reports no report available'); + +await client.close(); + +if (failures.length) { + console.error(`\nFAILED:\n ${failures.join('\n ')}`); + process.exit(1); +} +console.log('\nall MCP checks passed'); From 93bb8ea588dcc0022c61fcfc5096a64c0dbb384a Mon Sep 17 00:00:00 2001 From: AvaKim Date: Thu, 27 Aug 2026 18:17:41 +1000 Subject: [PATCH 2/2] =?UTF-8?q?chore(data):=20first=20link=20freshness=20p?= =?UTF-8?q?ass=20=E2=80=94=201,472=20redirect=20corrections?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Baseline measured 2026-08-27 over 562 rows / 959 distinct URLs / 164 hosts. Across the 176 structurally complete rows (1,232 URL checks): ok 647 (52.5%) · moved 514 (41.7%) · dead 49 (4.0%) · blocked 7 (0.6%) By column, share still resolving at exactly the stored address: Security Policy 76.7% Terms of Service 57.4% Privacy Policy 73.9% Release Notes 35.2% Developer Community 56.8% Documentation 38.1% (16.5% dead) Rate Limiting 29.5% (66.5% moved) The policy columns rot hardest in opposite directions: rate-limit pages almost never 404, they just move, while documentation pages are the ones that actually disappear. Also measured: 74 of 164 documentation hosts (45%) now serve /llms.txt, and only 176 of 562 rows (31%) carry all eight columns. The whole file is rewritten because csv-stringify normalises quoting; the meaningful changes are the 1,472 URLs replaced by their redirect targets. Co-Authored-By: Claude Opus 5 --- api-docs-urls.csv | 1118 +-- datasets/link-health-history.csv | 8 + datasets/link-health.json | 15316 +++++++++++++++++++++++++++++ 3 files changed, 15883 insertions(+), 559 deletions(-) create mode 100644 datasets/link-health-history.csv create mode 100644 datasets/link-health.json diff --git a/api-docs-urls.csv b/api-docs-urls.csv index 50c6dfc..88be33e 100644 --- a/api-docs-urls.csv +++ b/api-docs-urls.csv @@ -1,563 +1,563 @@ API_Name,Official_Documentation_URL,Privacy Policy,Terms of Service,Rate Limiting Policy,Release Notes,Security Policy,Developer Community/Forum -OpenAI API,https://platform.openai.com/docs/overview,https://openai.com/policies/privacy-policy/,https://openai.com/policies/terms-of-use/,https://platform.openai.com/docs/guides/rate-limits,https://platform.openai.com/docs/gpts/release-notes,https://openai.com/security-and-privacy/,https://community.openai.com/ -AWS Elastic Beanstalk API,https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/AWSHowTo.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html,https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/Welcome.html#release-notes,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google My Business API,https://developers.google.com/my-business/,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/g/google-my-business-api -Microsoft Graph People API,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/people/ct-p/People -Slack Interactivity API,https://api.slack.com/interactivity,https://api.slack.com/interactivity/handling#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox File Request API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Sync API,https://www.twilio.com/docs/sync,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Engagements API,https://developers.hubspot.com/docs/api/crm/engagements,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Support API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Balance API,https://stripe.com/docs/api/balance,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Thumbnails API,https://developers.google.com/youtube/v3/docs/thumbnails,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Amazon Polly API,https://docs.aws.amazon.com/polly/latest/dg/API_Reference.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/polly/latest/dg/limits.html,https://docs.aws.amazon.com/polly/latest/dg/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Places API,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/g/maps-api -Microsoft Azure Storage API,https://learn.microsoft.com/en-us/azure/storage/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/azure/storage/common/storage-scalability-targets,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/azure-storage/ct-p/AzureStorage -Slack App Directory API,https://api.slack.com/apps,https://api.slack.com/docs/rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox API Explorer,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Verify API,https://www.twilio.com/docs/verify,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Workflow API,https://developers.hubspot.com/docs/api/automation/workflows,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Guide API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Connect API,https://stripe.com/docs/connect,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Comments API,https://developers.google.com/youtube/v3/docs/comments,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS IoT Greengrass API,https://docs.aws.amazon.com/greengrass/v2/developerguide/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/general/latest/gr/iot-core.html,https://docs.aws.amazon.com/greengrass/v2/developerguide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Ads API,https://developers.google.com/google-ads/api,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/google-ads/api/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/g/google-ads-api -Microsoft Graph Notifications API,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/notifications/ct-p/Notifications -Slack Usergroups API,https://api.slack.com/methods/usergroups.create,https://api.slack.com/methods/usergroups.create#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox API v1,https://www.dropbox.com/developers/documentation/http/overview,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Messaging API,https://www.twilio.com/docs/messaging,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Emails API,https://developers.hubspot.com/docs/api/marketing/emails,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk SLA API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Payouts API,https://stripe.com/docs/api/payouts,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Captions API,https://developers.google.com/youtube/v3/docs/captions,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -WhatsApp Business API,https://developers.facebook.com/docs/whatsapp,https://www.whatsapp.com/legal/business-terms,https://developers.facebook.com/docs/whatsapp/changelog,https://www.whatsapp.com/security,https://developers.facebook.com/community -Uber API,https://www.uber.com/legal/privacy/,https://www.uber.com/legal/terms/ -Dropbox Business API,https://www.dropbox.com/developers/business,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Heroku Platform API,https://devcenter.heroku.com/articles/platform-api-reference,https://www.heroku.com/policy/privacy,https://devcenter.heroku.com/articles/platform-api-reference#rate-limits,https://devcenter.heroku.com/changelog,https://www.heroku.com/policy/security -Adobe Analytics API,https://adobedocs.github.io/analytics-2.0-apis/,https://adobedocs.github.io/analytics-2.0-apis/#rate-limiting -QuickBooks Online API,https://developer.intuit.com/app/developer/qbo/docs/api/accounting/overview,https://www.intuit.com/privacy/,https://developer.intuit.com/app/developer/qbo/docs/api/accounting/terms-of-service,https://developer.intuit.com/app/developer/qbo/docs/api/accounting/rate-limits,https://developer.intuit.com/app/developer/qbo/docs/api/accounting/release-notes -LinkedIn Marketing API,https://docs.microsoft.com/en-us/linkedin/marketing/,https://www.linkedin.com/legal/privacy-policy,https://www.linkedin.com/legal/user-agreement,https://docs.microsoft.com/en-us/linkedin/shared/api-guide/concepts/rate-limits,https://www.linkedin.com/help/linkedin/answer/34593 -Google Drive API,https://developers.google.com/drive,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/drive/api/guides/handle-errors#quota-errors,https://cloud.google.com/security,https://groups.google.com/g/google-drive-api -SendGrid API,https://docs.sendgrid.com/,https://sendgrid.com/policies/privacy/,https://sendgrid.com/policies/tos/,https://sendgrid.com/policies/security/,https://sendgrid.com/docs/for-developers -Box Content API,https://developer.box.com/,https://www.box.com/legal/privacypolicy,https://www.box.com/legal/termsofservice,https://developer.box.com/changelog/,https://www.box.com/security,https://community.box.com/ -Yelp Fusion API,https://www.yelp.com/developers -Eventbrite API,https://www.eventbrite.com/platform/docs,https://www.eventbrite.com/support/articles/en_US/Troubleshooting/eventbrite-privacy-policy,https://www.eventbrite.com/support/articles/en_US/Troubleshooting/eventbrite-terms-of-service,https://www.eventbrite.com/platform/docs/rate-limits,https://www.eventbrite.com/platform/docs/changelog,https://www.eventbrite.com/security -Box API,https://developer.box.com,https://www.box.com/legal/privacypolicy,https://www.box.com/legal/termsofservice,https://developer.box.com/changelog/,https://www.box.com/security,https://community.box.com/ -Firebase API,https://firebase.google.com/docs,https://policies.google.com/privacy,https://firebase.google.com/terms,https://firebase.google.com/support/release-notes,https://firebase.google.com/support/privacy,https://firebase.google.com/community -Pinterest Ads API,https://developers.pinterest.com/docs/ads-api,https://policy.pinterest.com/privacy-policy,https://developers.pinterest.com/docs/rate-limits,https://developers.pinterest.com/docs/ads-api/changelog,https://developers.pinterest.com/community +OpenAI API,https://platform.openai.com/,https://openai.com/policies/privacy-policy/,https://openai.com/policies/terms-of-use/,https://developers.openai.com/api/docs/guides/rate-limits,https://developers.openai.com/api/docs/gpts/release-notes,https://openai.com/security-and-privacy/,https://community.openai.com/ +AWS Elastic Beanstalk API,https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/AWSHowTo.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html,https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/Welcome.html#release-notes,https://aws.amazon.com/security/,https://repost.aws/ +Google My Business API,https://developers.google.com/my-business/,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-my-business-api,, +Microsoft Graph People API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=IpL2mZjCZlMR4t9f9iIyMIOMYkuHHD63glFTl_lmLbt5Yu4kJB6N1H9OE-G_B9x7q_sHU1gN5YOFXibmUROk-rUvhmVosfSMfANDvo1YScQhWoCZjcPSRiwgfg4Z_qy0-nvIBE_31X7cITR8B6bPpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPeople,,, +Slack Interactivity API,https://docs.slack.dev/interactivity/,https://docs.slack.dev/interactivity/handling-user-interaction/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox File Request API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio Sync API,https://www.twilio.com/docs/sync,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +HubSpot Engagements API,https://developers.hubspot.com/docs/api-reference/latest/overview,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Support API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Balance API,https://docs.stripe.com/api/balance,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Thumbnails API,https://developers.google.com/youtube/v3/docs/thumbnails,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +Amazon Polly API,https://docs.aws.amazon.com/polly/latest/dg/API_Reference.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/polly/latest/dg/limits.html,https://docs.aws.amazon.com/polly/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ +Google Places API,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api,,, +Microsoft Azure Storage API,https://learn.microsoft.com/en-us/azure/storage/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/azure/storage/common/scalability-targets-standard-account,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=U_P5gT2XW39BQ6O8XZzh7kJsBEbfzCmJZfbwi_CoWS0Eo5sTduR4DvTqviM7Lw3up5kCZ2-v4-lacz7IpnHXJJq-37C7Rv_jfetZYADA-7jjYY9vxUvCjn40y_qnW1hbx2rx32K3-FLnf_E-Y7belEzS-RzpzaC-Hau--s3PDiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureStorage,, +Slack App Directory API,https://api.slack.com/apps,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox API Explorer,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio Verify API,https://www.twilio.com/docs/verify,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +HubSpot Workflow API,https://developers.hubspot.com/docs/api-reference/legacy/automation/workflows/guide,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Guide API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Connect API,https://docs.stripe.com/connect,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Comments API,https://developers.google.com/youtube/v3/docs/comments?hl=pt-br,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +AWS IoT Greengrass API,https://docs.aws.amazon.com/greengrass/v2/developerguide/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/general/latest/gr/iot-core.html,https://docs.aws.amazon.com/greengrass/v2/developerguide/,https://aws.amazon.com/security/,https://repost.aws/ +Google Ads API,https://developers.google.com/google-ads/api,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/google-ads/api/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-ads-api, +Microsoft Graph Notifications API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=qJAMWB0_U9_HCZHHMmsduGW-UiwrLfnRK8P7m62pQwsLt-rkBQ0KhXUjlcnC6m0USqTeYUODb0wIQqxXZeck9wZH8fhF9UOWMeJe8xIRRpc3ip-o73oIGU1CLYzEu5SsRfXmrQk75omASpfQpbgyQLIp2wabj8AtPDIa4RBKt-Q&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FNotifications,,, +Slack Usergroups API,https://docs.slack.dev/reference/methods/usergroups.create/,https://docs.slack.dev/reference/methods/usergroups.create/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox API v1,https://www.dropbox.com/developers/documentation/http/overview,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en, +Twilio Messaging API,https://www.twilio.com/docs/messaging,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +HubSpot Emails API,https://developers.hubspot.com/docs/api/marketing/emails,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk SLA API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Payouts API,https://docs.stripe.com/api/payouts,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Captions API,https://developers.google.com/youtube/v3/docs/captions,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +WhatsApp Business API,https://developers.facebook.com/docs/whatsapp,https://www.whatsapp.com/legal/business-terms,https://developers.facebook.com/docs/whatsapp/changelog,https://www.whatsapp.com/security,https://developers.facebook.com/community,, +Uber API,https://www.uber.com/global/zh/privacy-notice-riders-order-recipients/,https://www.uber.com/au/en/legal/general-terms-of-use/,,,,, +Dropbox Business API,https://www.dropbox.com/developers/documentation/http/overview,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en, +Heroku Platform API,https://devcenter.heroku.com/articles/platform-api-reference,https://www.salesforce.com/company/legal/privacy/?bc=HL,https://devcenter.heroku.com/articles/platform-api-reference#rate-limits,https://devcenter.heroku.com/changelog,https://www.heroku.com/policy/security,, +Adobe Analytics API,https://adobedocs.github.io/analytics-2.0-apis/,https://adobedocs.github.io/analytics-2.0-apis/#rate-limiting,,,,, +QuickBooks Online API,https://developer.intuit.com/app/developer/qbo/docs/api/accounting/overview,https://www.intuit.com/privacy/,https://developer.intuit.com/app/developer/qbo/docs/api/accounting/terms-of-service,https://developer.intuit.com/app/developer/qbo/docs/api/accounting/rate-limits,https://developer.intuit.com/app/developer/qbo/docs/api/accounting/release-notes,, +LinkedIn Marketing API,https://learn.microsoft.com/en-us/linkedin/marketing/?view=li-lms-2026-08,https://www.linkedin.com/legal/privacy-policy,https://www.linkedin.com/legal/user-agreement,https://learn.microsoft.com/en-us/linkedin/shared/api-guide/concepts/rate-limits,https://www.linkedin.com/help/linkedin/answer/a403269/,, +Google Drive API,https://developers.google.com/workspace/drive,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/workspace/drive/api/guides/handle-errors?hl=he,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-drive-api, +SendGrid API,https://www.twilio.com/docs/sendgrid,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/docs/sendgrid/for-developers,, +Box Content API,https://developer.box.com/,https://www.box.com/legal/privacypolicy,https://www.box.com/legal/termsofservice,https://developer.box.com/changelog/,https://www.box.com/security-compliance,https://community.box.com/, +Yelp Fusion API,https://www.yelp.com/developers,,,,,, +Eventbrite API,https://www.eventbrite.com/platform/docs,https://www.eventbrite.com/help/en-us/articles/460838/eventbrite-privacy-policy/,https://www.eventbrite.com/help/en-us/articles/251210/eventbrite-terms-of-service/,https://www.eventbrite.com/platform/docs/rate-limits,https://www.eventbrite.com/platform/docs/changelog,https://www.eventbrite.com.au/security/, +Box API,https://developer.box.com,https://www.box.com/legal/privacypolicy,https://www.box.com/legal/termsofservice,https://developer.box.com/changelog/,https://www.box.com/security-compliance,https://community.box.com/, +Firebase API,https://firebase.google.com/docs,https://policies.google.com/privacy,https://firebase.google.com/terms,https://firebase.google.com/support?hl=ko,https://firebase.google.com/support/privacy,https://firebase.google.com/community, +Pinterest Ads API,https://developers.pinterest.com/docs/overview/welcome/,https://policy.pinterest.com/en/privacy-policy,https://developers.pinterest.com/docs/overview/welcome/,https://developers.pinterest.com/docs/overview/welcome/,https://developers.pinterest.com/,, Zillow API,https://www.zillow.com/howto/api/Overview.htm,https://www.zillow.com/z/privacy.htm,https://www.zillow.com/howto/api/APIOverview.htm#Terms,https://www.zillow.com/howto/api/APIOverview.htm#Usage,https://www.zillow.com/howto/api/Changelog.htm,https://www.zillow.com/security.htm,https://www.zillow.com/howto/api/DiscussionForum.htm -OpenAI API,https://platform.openai.com/docs/,https://openai.com/privacy/,https://openai.com/terms/,https://platform.openai.com/docs/guides/rate-limits,https://platform.openai.com/docs/release-notes,https://openai.com/security/,https://community.openai.com/ -AWS CodeDeploy API,https://docs.aws.amazon.com/codedeploy/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/codedeploy/latest/userguide/limits.html,https://docs.aws.amazon.com/codedeploy/latest/userguide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Calendar API,https://developers.google.com/calendar,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/calendar/releases,https://cloud.google.com/security,https://groups.google.com/g/calendar-api -Microsoft Graph OneNote API,https://learn.microsoft.com/en-us/graph/api/resources/onenote,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/onenote/ct-p/OneNote -Slack Files API,https://api.slack.com/methods/files.list,https://api.slack.com/methods/files.list#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox API v2,https://www.dropbox.com/developers/documentation/http/documentation,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Media Streams API,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Companies API,https://developers.hubspot.com/docs/api/companies,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Apps API,https://developer.zendesk.com/documentation/apps/,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Terminal API,https://stripe.com/docs/api/terminal,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -AWS Lambda API,https://docs.aws.amazon.com/lambda/latest/dg/welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/lambda/latest/dg/limits.html,https://docs.aws.amazon.com/lambda/latest/dg/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Cloud Storage API,https://cloud.google.com/storage/docs,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/storage/quotas,https://cloud.google.com/storage/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-storage-api -Microsoft Planner API,https://learn.microsoft.com/en-us/graph/api/resources/planner-overview,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/planner/ct-p/Planner -Dropbox Transfer API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Programmable Video API,https://www.twilio.com/docs/video,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Marketing API,https://developers.hubspot.com/docs/api/marketing,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Search API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Coupons API,https://stripe.com/docs/api/coupons,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Video Categories API,https://developers.google.com/youtube/v3/docs/videoCategories,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Twitter API v2,https://developer.twitter.com/en/docs/twitter-api,https://twitter.com/en/privacy,https://developer.twitter.com/en/developer-terms,https://developer.twitter.com/en/docs/twitter-api/rate-limits,https://help.twitter.com/en/rules-and-policies/report-security-vulnerability,https://twittercommunity.com/ -Bing Search API,https://learn.microsoft.com/en-us/bing/search-apis/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://learn.microsoft.com/en-us/answers/topics/search-api.html -Google Books API,https://developers.google.com/books,https://policies.google.com/privacy,https://developers.google.com/books/terms,https://cloud.google.com/security,https://groups.google.com/g/google-books-api -PayPal Payouts API,https://developer.paypal.com/docs/payouts/,https://www.paypal.com/us/webapps/mpp/ua/privacy-full,https://www.paypal.com/us/webapps/mpp/ua/useragreement-full,https://www.paypal.com/us/webapps/mpp/security/security-protections,https://www.paypal-community.com/ -Shopify Bulk Operations API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ -Facebook Marketing API,https://developers.facebook.com/docs/marketing-apis,https://www.facebook.com/privacy/explanation,https://developers.facebook.com/terms/,https://developers.facebook.com/docs/marketing-api/changelog,https://www.facebook.com/help/238318146535333,https://developers.facebook.com/community/ -Slack SCIM API,https://api.slack.com/scim,https://api.slack.com/scim#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Google Cloud Translation API,https://cloud.google.com/translate/docs,https://policies.google.com/privacy,https://cloud.google.com/terms,https://cloud.google.com/translate/quotas,https://cloud.google.com/translate/release-notes,https://groups.google.com/g/cloud-translate-api -Microsoft Teams Calling API,https://learn.microsoft.com/en-us/microsoftteams/platform/,https://privacy.microsoft.com/en-us/privacystatement,https://techcommunity.microsoft.com/t5/microsoft-teams/ct-p/MicrosoftTeams -AWS Rekognition API,https://docs.aws.amazon.com/rekognition/latest/dg/API_Reference.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/rekognition/latest/dg/limits.html,https://docs.aws.amazon.com/rekognition/latest/dg/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Cloud Datastore API,https://cloud.google.com/datastore/docs,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/datastore/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-datastore-api -Microsoft Azure Cognitive Services API,https://learn.microsoft.com/en-us/azure/cognitive-services/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/azure-cognitive-services/ct-p/AzureCognitiveServices -Slack Shortcuts API,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Team API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Fax API,https://www.twilio.com/docs/fax,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Social Media API,https://developers.hubspot.com/docs/api/marketing/social,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Messaging API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Invoicing API,https://stripe.com/docs/api/invoices,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Embeds API,https://developers.google.com/youtube/iframe_api_reference,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/iframe_api_reference#Quota,https://developers.google.com/youtube/iframe_api_reference#Changelog,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Google Maps Geocoding API,https://developers.google.com/maps/documentation/geocoding/start,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/geocoding/usage-and-billing,https://cloud.google.com/security,https://groups.google.com/g/maps-geocoding-api -Microsoft Graph Tasks API,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/planner/ct-p/Planner -Slack Channels API,https://api.slack.com/methods/channels.create,https://api.slack.com/methods/channels.create#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox File Requests API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -HubSpot Line Items API,https://developers.hubspot.com/docs/api/crm/line-items,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Stripe Disputes API,https://stripe.com/docs/api/disputes,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Live Broadcasts API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS CloudFront API,https://docs.aws.amazon.com/cloudfront/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Power Automate API,https://learn.microsoft.com/en-us/power-automate/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/power-automate/release-notes,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/power-automate/ct-p/PowerAutomate -Slack Admin API,https://api.slack.com/admin,https://api.slack.com/admin#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Twilio TaskRouter API,https://www.twilio.com/docs/taskrouter,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Blogging API,https://developers.hubspot.com/docs/api/marketing/blogs,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Sunshine Conversations API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Issuing API,https://stripe.com/docs/issuing,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Data API,https://developers.google.com/youtube/v3,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS EKS API,https://docs.aws.amazon.com/eks/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html,https://docs.aws.amazon.com/eks/latest/userguide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google BigQuery API,https://cloud.google.com/bigquery/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/bigquery/quotas,https://cloud.google.com/bigquery/release-notes,https://cloud.google.com/security,https://groups.google.com/g/bigquery-api -Microsoft Graph Planner API,https://learn.microsoft.com/en-us/graph/api/resources/planner,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/planner/ct-p/Planner -Slack Reactions API,https://api.slack.com/methods/reactions.add,https://api.slack.com/methods/reactions.add#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox User API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio IP Messaging API,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Analytics API,https://developers.hubspot.com/docs/api/analytics,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Tags API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -YouTube Watermarks API,https://developers.google.com/youtube/v3/docs/watermarks,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS CloudTrail API,https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-limits.html,https://docs.aws.amazon.com/awscloudtrail/latest/userguide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Cloud Functions API,https://cloud.google.com/functions/docs/apis,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/functions/quotas,https://cloud.google.com/security,https://groups.google.com/g/cloud-functions -Microsoft Graph Intune API,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/intune/ct-p/Intune -Slack Conversations API,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Security API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Stripe Balance Transactions API,https://stripe.com/docs/api/balance_transactions,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Video Abuses API,https://developers.google.com/youtube/v3/docs/videoAbuseReportReasons,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS Polly API,https://docs.aws.amazon.com/polly/latest/dg/what-is.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/polly/latest/dg/limits.html,https://docs.aws.amazon.com/polly/latest/dg/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Cloud Natural Language API,https://cloud.google.com/natural-language/docs,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/natural-language/quotas,https://cloud.google.com/natural-language/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-natural-language-api -Microsoft Graph Security API,https://learn.microsoft.com/en-us/graph/api/resources/security-api-overview,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/security-api/ct-p/SecurityAPI -Slack Emoji API,https://api.slack.com/methods/emoji.list,https://api.slack.com/methods/emoji.list#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Notifications API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Flex API,https://www.twilio.com/docs/flex,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -Zendesk Macros API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -YouTube Partner API,https://developers.google.com/youtube/partner/,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS Secrets Manager API,https://docs.aws.amazon.com/secretsmanager/latest/apireference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/secretsmanager/latest/userguide/reference_limits.html,https://docs.aws.amazon.com/secretsmanager/latest/userguide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Translate API,https://cloud.google.com/translate/docs,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/translate/quotas,https://cloud.google.com/translate/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-translate-api -Microsoft Graph API for Teams,https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/microsoft-teams/ct-p/MicrosoftTeams -Slack Bots API,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Content Management API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Programmable Voice API,https://www.twilio.com/docs/voice,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Campaigns API,https://developers.hubspot.com/docs/api/marketing/campaigns,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Ticket Forms API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Billing API,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Video Abilities API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Microsoft Graph Files API,https://learn.microsoft.com/en-us/graph/api/resources/driveitem,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/files/ct-p/Files -Slack Events API,https://api.slack.com/events,https://api.slack.com/events#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -HubSpot Quotes API,https://developers.hubspot.com/docs/api/crm/quotes,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Help Center API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Radar API,https://stripe.com/docs/api/radar,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Watermark API,https://developers.google.com/youtube/v3/docs/watermarks,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS Security Hub API,https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-api.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-limits.html,https://docs.aws.amazon.com/securityhub/latest/userguide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Graph Insights API,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/insights/ct-p/Insights -Slack Dialogs API,https://api.slack.com/dialogs,https://api.slack.com/dialogs#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Team Auditing API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -HubSpot Sales API,https://developers.hubspot.com/docs/api/crm/sales,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Side Conversations API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Events API,https://stripe.com/docs/api/events,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Resumable Uploads API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Microsoft Azure Face API,https://learn.microsoft.com/en-us/azure/cognitive-services/face/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/azure-cognitive-services/ct-p/AzureCognitiveServices -Slack Workflow API,https://api.slack.com/workflows,https://api.slack.com/workflows#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Core API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Video API,https://www.twilio.com/docs/video,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -Zendesk Voice API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe PaymentLinks API,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Playlists API,https://developers.google.com/youtube/v3/docs/playlists,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Dropbox API,https://www.dropbox.com/developers/documentation,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropbox.com/developers/documentation/http/documentation#rate-limiting,https://www.dropbox.com/security,https://www.dropboxforum.com/ -LinkedIn API,https://docs.microsoft.com/en-us/linkedin,https://www.linkedin.com/legal/privacy-policy,https://www.linkedin.com/legal/user-agreement,https://docs.microsoft.com/en-us/linkedin/shared/api-guide/concepts/rate-limits,https://www.linkedin.com/help/linkedin/answer/34593 -PayPal API,https://developer.paypal.com/docs/api/overview,https://www.paypal.com/us/webapps/mpp/ua/privacy-full,https://www.paypal.com/us/webapps/mpp/ua/useragreement-full,https://developer.paypal.com/docs/api/overview/#rate-limiting,https://www.paypal.com/us/webapps/mpp/security/security-protections,https://www.paypal-community.com/ -Amazon Advertising API,https://advertising.amazon.com/API,https://advertising.amazon.com/terms,https://advertising.amazon.com/API/docs/en-us/get-started/usage-guidelines,https://advertising.amazon.com/API/docs/en-us/changelog,https://advertising.amazon.com/security -Google Analytics API,https://developers.google.com/analytics,https://policies.google.com/privacy,https://developers.google.com/analytics/terms,https://developers.google.com/analytics/devguides/reporting/core/v4/limits-quotas,https://cloud.google.com/security,https://groups.google.com/g/analytics-api -IBM Watson API,https://cloud.ibm.com/docs,https://www.ibm.com/privacy/details/us/en/,https://www.ibm.com/legal/us/en/,https://cloud.ibm.com/docs#usage,https://cloud.ibm.com/docs/release-notes,https://www.ibm.com/security,https://community.ibm.com/ -Zendesk API,https://developer.zendesk.com,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Shopify API,https://shopify.dev/docs,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/docs/api/usage/rate-limits,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ -Microsoft Graph API,https://learn.microsoft.com/en-us/graph/,https://privacy.microsoft.com/en-us/privacystatement,https://www.microsoft.com/en-us/servicesagreement,https://learn.microsoft.com/en-us/graph/throttling,https://security.microsoft.com/,https://techcommunity.microsoft.com/t5/microsoft-graph/ct-p/MicrosoftGraph -Pinterest API,https://developers.pinterest.com/docs/api/,https://policy.pinterest.com/privacy-policy,https://policy.pinterest.com/terms-of-service,https://developers.pinterest.com/docs/api/rate-limits/,https://developers.pinterest.com/docs/changelog/,https://community.pinterest.com/ -HubSpot API,https://developers.hubspot.com/docs,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -ZoomInfo API,https://developer.zoominfo.com/,https://www.zoominfo.com/about-zoominfo/privacy-policy,https://www.zoominfo.com/about-zoominfo/terms-of-use,https://www.zoominfo.com/security -Wix API,https://www.wix.com/about/privacy,https://www.wix.com/about/terms-of-use -Trello API,https://developer.atlassian.com/cloud/trello,https://trello.com/privacy,https://trello.com/legal,https://developer.atlassian.com/cloud/trello/guides/rest-api/rate-limits,https://developer.atlassian.com/cloud/trello/changelog,https://trello.com/security,https://community.atlassian.com/t5/Trello/ct-p/trello -Plaid API,https://plaid.com/docs,https://plaid.com/legal/#enduser-privacy-policy,https://plaid.com/legal/#enduser-privacy-policy,https://plaid.com/docs/errors/rate-limit-exceeded/,https://plaid.com/docs/changelog/,https://plaid.com/security/ -Asana API,https://developers.asana.com/docs,https://asana.com/terms#privacy-policy,https://asana.com/terms,https://developers.asana.com/docs/rate-limits,https://asana.com/security,https://forum.asana.com/ -Intercom API,https://developers.intercom.com/,https://www.intercom.com/legal/privacy,https://www.intercom.com/legal/terms-and-policies,https://www.intercom.com/security,https://community.intercom.com/ -Shopify Admin API,https://shopify.dev/api/admin,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/api/admin#rate-limiting,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ -Payoneer API,https://developer.payoneer.com/,https://developer.payoneer.com/rate-limits,https://developer.payoneer.com/changelog -Telegram Bot API,https://core.telegram.org/bots/api,https://telegram.org/privacy,https://core.telegram.org/terms,https://core.telegram.org/bots/faq#what-are-the-rate-limits,https://core.telegram.org/bots/api-changelog,https://core.telegram.org/security,https://community.telegram.org/ -AWS CodeCommit API,https://docs.aws.amazon.com/codecommit/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/codecommit/latest/userguide/limits.html,https://docs.aws.amazon.com/codecommit/latest/userguide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Maps API,https://developers.google.com/maps/documentation,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/g/maps-api -Microsoft Graph Notebooks API,https://learn.microsoft.com/en-us/graph/api/resources/onenote,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/onenote-api/ct-p/OneNoteAPI -Slack API Logs API,https://api.slack.com/methods/admin.analytics.getFile,https://api.slack.com/methods/admin.analytics.getFile#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Events API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Voice API,https://www.twilio.com/docs/voice,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Deals API,https://developers.hubspot.com/docs/api/deals,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Organizations API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Subscriptions API,https://stripe.com/docs/api/subscriptions,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Subscriptions API,https://developers.google.com/youtube/v3/docs/subscriptions,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS Kinesis API,https://docs.aws.amazon.com/kinesis/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/kinesis/latest/dev/service-sizes-and-limits.html,https://docs.aws.amazon.com/kinesis/latest/dev/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Slack Web API,https://api.slack.com/web,https://api.slack.com/web#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -HubSpot Pipelines API,https://developers.hubspot.com/docs/api/pipelines,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Stripe Subscription API,https://stripe.com/docs/api/subscriptions,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Video API,https://developers.google.com/youtube/v3/docs/videos,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Google Maps Elevation API,https://developers.google.com/maps/documentation/elevation,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/elevation/usage-and-billing,https://cloud.google.com/security,https://groups.google.com/g/maps-elevation-api -Microsoft Graph Reports API,https://learn.microsoft.com/en-us/graph/api/resources/report,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/reports/ct-p/Reports -Slack Audit API,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Sharing API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Messaging Insights API,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -Zendesk Schedules API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -YouTube Analytics Reporting API,https://developers.google.com/youtube/reporting/,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-reporting +OpenAI API,https://developers.openai.com/api/docs,https://openai.com/policies/privacy-policy/,https://openai.com/policies/terms-of-use/,https://developers.openai.com/api/docs/guides/rate-limits,https://platform.openai.com/docs/release-notes,https://openai.com/security-and-privacy/,https://community.openai.com/ +AWS CodeDeploy API,https://docs.aws.amazon.com/codedeploy/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/codedeploy/latest/userguide/limits.html,https://docs.aws.amazon.com/codedeploy/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ +Google Calendar API,https://developers.google.com/workspace/calendar,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/workspace/calendar/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/calendar-api, +Microsoft Graph OneNote API,https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote,, +Slack Files API,https://docs.slack.dev/reference/methods/files.list/,https://docs.slack.dev/reference/methods/files.list/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox API v2,https://www.dropbox.com/developers/documentation/http/documentation,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en, +Twilio Media Streams API,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,,, +HubSpot Companies API,https://developers.hubspot.com/docs/api/companies,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Apps API,https://developer.zendesk.com/documentation/apps/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,, +Stripe Terminal API,https://docs.stripe.com/api/terminal/connection_tokens,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +AWS Lambda API,https://docs.aws.amazon.com/lambda/latest/dg/welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html,https://docs.aws.amazon.com/lambda/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ +Google Cloud Storage API,https://docs.cloud.google.com/storage/docs,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/storage/quotas,https://docs.cloud.google.com/storage/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-storage-api +Microsoft Planner API,https://learn.microsoft.com/en-us/graph/api/resources/planner-overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/Planner,, +Dropbox Transfer API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio Programmable Video API,https://www.twilio.com/docs/video,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +HubSpot Marketing API,https://developers.hubspot.com/docs/api/marketing,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Search API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Coupons API,https://docs.stripe.com/api/coupons,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Video Categories API,https://developers.google.com/youtube/v3/docs/videoCategories,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +Twitter API v2,https://docs.x.com/overview,https://x.com/en/privacy,https://docs.x.com/developer-terms,https://docs.x.com/overview,https://help.twitter.com/en/rules-and-policies/report-security-vulnerability,https://devcommunity.x.com/, +Bing Search API,https://learn.microsoft.com/en-us/previous-versions/bing/search-apis/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://learn.microsoft.com/en-us/answers/tags/,,, +Google Books API,https://developers.google.com/books?hl=th,https://policies.google.com/privacy,https://developers.google.com/books/terms?hl=fa,https://cloud.google.com/security,https://groups.google.com/g/google-books-api,, +PayPal Payouts API,https://developer.paypal.com/payouts/overview,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/,, +Shopify Bulk Operations API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/,, +Facebook Marketing API,https://developers.facebook.com/docs/marketing-apis,https://www.facebook.com/privacy/explanation,https://developers.facebook.com/terms/,https://developers.facebook.com/docs/marketing-api/changelog,https://www.facebook.com/help/238318146535333,https://developers.facebook.com/community/, +Slack SCIM API,https://api.slack.com/scim,https://api.slack.com/scim#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Google Cloud Translation API,https://docs.cloud.google.com/translate/docs,https://policies.google.com/privacy,https://cloud.google.com/terms,https://docs.cloud.google.com/translate/quotas,https://cloud.google.com/translate/release-notes,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-translate-api, +Microsoft Teams Calling API,https://learn.microsoft.com/en-us/microsoftteams/platform/,https://www.microsoft.com/en-us/privacy/privacystatement,https://techcommunity.microsoft.com/category/MicrosoftTeams,,,, +AWS Rekognition API,https://docs.aws.amazon.com/rekognition/latest/dg/API_Reference.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/rekognition/latest/dg/limits.html,https://docs.aws.amazon.com/rekognition/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ +Google Cloud Datastore API,https://docs.cloud.google.com/datastore/docs?hl=he,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/datastore/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-datastore-api, +Microsoft Azure Cognitive Services API,https://learn.microsoft.com/en-us/azure/foundry/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices,,, +Slack Shortcuts API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, +Dropbox Team API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio Fax API,https://help.twilio.com/hc/en-us/articles/1260800821230-Programmable-Fax-Migration-Guide-for-Documo-mFax,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +HubSpot Social Media API,https://developers.hubspot.com/docs/api/marketing/social,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Messaging API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Invoicing API,https://docs.stripe.com/api/invoices,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Embeds API,https://developers.google.com/youtube/iframe_api_reference,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/iframe_api_reference#Quota,https://developers.google.com/youtube/iframe_api_reference#Changelog,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +Google Maps Geocoding API,https://developers.google.com/maps/documentation/geocoding/guides-v3/start?hl=ru,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/geocoding/usage-and-billing?hl=zh-cn,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-geocoding-api, +Microsoft Graph Tasks API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/Planner,,, +Slack Channels API,https://docs.slack.dev/reference/methods/conversations.create/,https://docs.slack.dev/reference/methods/conversations.create/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox File Requests API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +HubSpot Line Items API,https://developers.hubspot.com/docs/api-reference/legacy/crm/objects/line-items/guide,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Stripe Disputes API,https://docs.stripe.com/api/disputes,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Live Broadcasts API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, +AWS CloudFront API,https://docs.aws.amazon.com/cloudfront/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://aws.amazon.com/security/,https://repost.aws/,, +Microsoft Power Automate API,https://learn.microsoft.com/en-us/power-automate/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/dynamics365/release-plans/,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/PowerAutomate,, +Slack Admin API,https://api.slack.com/admin,https://api.slack.com/admin#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Twilio TaskRouter API,https://www.twilio.com/docs/taskrouter,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +HubSpot Blogging API,https://developers.hubspot.com/docs/api/marketing/blogs,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Sunshine Conversations API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Issuing API,https://docs.stripe.com/issuing,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/, +YouTube Data API,https://developers.google.com/youtube/v3,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +AWS EKS API,https://docs.aws.amazon.com/eks/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html,https://docs.aws.amazon.com/eks/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ +Google BigQuery API,https://docs.cloud.google.com/bigquery/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/bigquery/quotas,https://cloud.google.com/bigquery/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/bigquery-api +Microsoft Graph Planner API,https://learn.microsoft.com/en-us/graph/api/resources/planner?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/Planner,, +Slack Reactions API,https://docs.slack.dev/reference/methods/reactions.add/,https://docs.slack.dev/reference/methods/reactions.add/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox User API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio IP Messaging API,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,,, +HubSpot Analytics API,https://developers.hubspot.com/docs/api/analytics,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Tags API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +YouTube Watermarks API,https://developers.google.com/youtube/v3/docs/watermarks?hl=es-419,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +AWS CloudTrail API,https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/awscloudtrail/latest/userguide/,https://docs.aws.amazon.com/awscloudtrail/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ +Google Cloud Functions API,https://docs.cloud.google.com/functions/docs/apis,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/functions/quotas,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-functions, +Microsoft Graph Intune API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=UiKu_ljy0i3OqrHKFrfmcwghmFSgiIcg0-cJ5euPao5usGtTD1xrwT1k-2F7vXrjy9bciyI0wQuSLjz8wKPveqjrySvXJw82lz-_FBmIq51c0Mp8ilqAYMk2tJor5dEFBoMCyWtotPxJtHC2U2bnDA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FIntune,,, +Slack Conversations API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, +Dropbox Security API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Stripe Balance Transactions API,https://docs.stripe.com/api/balance_transactions,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Video Abuses API,https://developers.google.com/youtube/v3/docs/videoAbuseReportReasons?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +AWS Polly API,https://docs.aws.amazon.com/polly/latest/dg/what-is.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/polly/latest/dg/limits.html,https://docs.aws.amazon.com/polly/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ +Google Cloud Natural Language API,https://docs.cloud.google.com/natural-language/docs,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/natural-language/quotas,https://cloud.google.com/natural-language/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-natural-language-api +Microsoft Graph Security API,https://learn.microsoft.com/en-us/graph/api/resources/security-api-overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=aahvtMvAuL3g-R_HaqvWqLALKG73wrFS46yGRkye2nB2Yhzgq_dCkKPYSoSUsqosFXPRuKQxmnz6e27BaSgRRn0X829HGCfb1wEMKNB09dFRjzjyCXR7ytq3qgilEvZ2RloShjKsVPtF14wABX6cWwSy-76MwUet9FLgBxkAIXU&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSecurityAPI,, +Slack Emoji API,https://docs.slack.dev/reference/methods/emoji.list/,https://docs.slack.dev/reference/methods/emoji.list/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox Notifications API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio Flex API,https://www.twilio.com/docs/flex,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Zendesk Macros API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +YouTube Partner API,https://developers.google.com/youtube/partner/,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api,, +AWS Secrets Manager API,https://docs.aws.amazon.com/secretsmanager/latest/apireference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/secretsmanager/latest/userguide/reference_limits.html,https://docs.aws.amazon.com/secretsmanager/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ +Google Translate API,https://docs.cloud.google.com/translate/docs,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/translate/quotas,https://cloud.google.com/translate/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-translate-api +Microsoft Graph API for Teams,https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/MicrosoftTeams,, +Slack Bots API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, +Dropbox Content Management API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio Programmable Voice API,https://www.twilio.com/docs/voice,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +HubSpot Campaigns API,https://developers.hubspot.com/docs/api-reference/legacy/marketing/campaigns/guide,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Ticket Forms API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Billing API,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/, +YouTube Video Abilities API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, +Microsoft Graph Files API,https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=agCR0A5inu0R0s4N1n5Fw1AmtkVxvuKR2EK-4XY0QAARMXkrqvLEid6blj-tLBRqhycsG_bwoB-dy_cq6zkXO_lxO7Ve3W-gatHTsJYRTfWb5RH3hpZp02P3jI6aIO4SR736R78poOzp_jZwiJgUQA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FFiles,, +Slack Events API,https://docs.slack.dev/reference/events/,https://docs.slack.dev/reference/events/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +HubSpot Quotes API,https://developers.hubspot.com/docs/api-reference/legacy/crm/objects/quotes/guide,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Help Center API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Radar API,https://docs.stripe.com/api/radar/early_fraud_warnings,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Watermark API,https://developers.google.com/youtube/v3/docs/watermarks?hl=es-419,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +AWS Security Hub API,https://docs.aws.amazon.com/securityhub/latest/userguide/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/securityhub/latest/userguide/,https://docs.aws.amazon.com/securityhub/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Graph Insights API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=mBhn9aXjLnvMtVbNoGU3rPQtPubFgSY3AeIRoSepa13AJKoU4E9lYO8EpYLCYIAu5TgiLH-aNlurCOzYY1MWkNOOBxp_a8HOND08AQpnTdkMlspVZhTM3b_qEylOiy2SbZ9l1uxaXy9ZPLr_7G4OJdcz6jFqLJNiS8nlCKBMsng&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FInsights,,, +Slack Dialogs API,https://docs.slack.dev/legacy/legacy-dialogs/,https://docs.slack.dev/legacy/legacy-dialogs/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox Team Auditing API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +HubSpot Sales API,https://developers.hubspot.com/docs/api/crm/sales,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Side Conversations API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Events API,https://docs.stripe.com/api/events,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Resumable Uploads API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api,, +Microsoft Azure Face API,https://learn.microsoft.com/en-us/azure/ai-services/face/overview-identity,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices,,, +Slack Workflow API,https://docs.slack.dev/workflows/,https://docs.slack.dev/workflows/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox Core API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio Video API,https://www.twilio.com/docs/video,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Zendesk Voice API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe PaymentLinks API,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/, +YouTube Playlists API,https://developers.google.com/youtube/v3/docs/playlists,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +Dropbox API,https://www.dropbox.com/developers/documentation,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropbox.com/developers/documentation/http/documentation#rate-limiting,https://www.dropbox.com/features/security,https://community.dropbox.com/en, +LinkedIn API,https://learn.microsoft.com/en-us/linkedin/,https://www.linkedin.com/legal/privacy-policy,https://www.linkedin.com/legal/user-agreement,https://learn.microsoft.com/en-us/linkedin/shared/api-guide/concepts/rate-limits,https://www.linkedin.com/help/linkedin/answer/a403269/,, +PayPal API,https://developer.paypal.com/api/rest,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,https://developer.paypal.com/api/rest,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/, +Amazon Advertising API,https://advertising.amazon.com/API,https://advertising.amazon.com/terms,https://advertising.amazon.com/API/docs/en-us/get-started/usage-guidelines,https://advertising.amazon.com/API/docs/en-us/changelog,https://advertising.amazon.com/security,, +Google Analytics API,https://developers.google.com/analytics,https://policies.google.com/privacy,https://developers.google.com/analytics/terms/provisioning/en?hl=hi,https://developers.google.com/analytics/legacy/universal-analytics?hl=bn,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/analytics-api, +IBM Watson API,https://cloud.ibm.com/docs,https://www.ibm.com/us-en/privacy,https://www.ibm.com/legal,https://cloud.ibm.com/docs#usage,https://cloud.ibm.com/docs/release-notes,https://www.ibm.com/solutions/security,https://www.ibm.com/community/ +Zendesk API,https://developer.zendesk.com/documentation/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,, +Shopify API,https://shopify.dev/docs,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/docs/api/usage/limits,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ +Microsoft Graph API,https://learn.microsoft.com/en-us/graph/,https://www.microsoft.com/en-us/privacy/privacystatement,https://www.microsoft.com/en-us/servicesagreement,https://learn.microsoft.com/en-us/graph/throttling,https://login.microsoftonline.com/common/oauth2/authorize?client_id=80ccca67-54bd-44ab-8625-4b79c4dc7775&response_type=code%20id_token&scope=openid%20profile&state=OpenIdConnect.AuthenticationProperties%3DRdojUK_Q-5Nqymz2hLITLMRtwjeueyLhqJRymwIC3HbyhbrLhEV-dXYg08M6WB_Ubug7_xmV5Gdc5qxCMHMrUNsbpKlsjERYikN5CcU8QMwFYFZRzVO5Xlnwq16FltUQEVK2TUYdyTUVt506z68q_Q&response_mode=form_post&nonce=639234153079480059.MDdkYzk1MmQtNjBhNS00NDk0LTg2NjItMTZkMjQ4MzBkOGZiOTdhOTBlZWUtNjI2Mi00ZWY1LTk5OTctMmJhYTVmYWY1NzI2&client-request-id=4b59ab3b-a161-49af-87a1-bd3e50eed501&redirect_uri=https%3A%2F%2Fsecurity.microsoft.com%2F&x-client-SKU=ID_NET472&x-client-ver=8.16.0.0,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=IOvKJsjQCtJfIN4Wu4-ctI2dUUlttuh6FKaI0sLgYvUi403STK24K5mOB4PmRMA__AiGuKa8XUUCctgc6WBkFpfsGl1uyOpnLJAAg0xIXTuXfzaHTLovJfm9C89IQFOGbEOrQZdDwlHg8Ijz3e0K5KuAiPbHN77sew0uNEXmLUg&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FMicrosoftGraph, +Pinterest API,https://developers.pinterest.com/docs/api/v5/introduction/,https://policy.pinterest.com/en/privacy-policy,https://policy.pinterest.com/en/terms-of-service,https://developers.pinterest.com/docs/api/v5/introduction/,https://developers.pinterest.com/docs/changelog/changelog/,https://community.pinterest.biz/, +HubSpot API,https://developers.hubspot.com/docs,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +ZoomInfo API,https://developer.zoominfo.com/,https://www.zoominfo.com/legal/privacy-policy,https://www.zoominfo.com/legal/terms-of-use,https://www.zoominfo.com/security,,, +Wix API,https://www.wix.com/about/privacy,https://www.wix.com/about/terms-of-use,,,,, +Trello API,https://developer.atlassian.com/cloud/trello,https://www.atlassian.com/legal/privacy-policy,https://www.atlassian.com/legal/atlassian-customer-agreement,https://developer.atlassian.com/cloud/trello/guides/rest-api/rate-limits,https://developer.atlassian.com/cloud/trello/changelog,https://trello.com/security,https://community.atlassian.com/forums/Trello/ct-p/trello +Plaid API,https://plaid.com/docs,https://plaid.com/legal/#enduser-privacy-policy,https://plaid.com/legal/#enduser-privacy-policy,https://plaid.com/docs/errors/rate-limit-exceeded/,https://plaid.com/docs/changelog/,https://plaid.com/trust-safety/, +Asana API,https://developers.asana.com/docs/overview,https://asana.com/terms#privacy-policy,https://asana.com/terms,https://developers.asana.com/docs/rate-limits,https://asana.com/security,https://forum.asana.com/, +Intercom API,https://developers.intercom.com/,https://www.intercom.com/legal/privacy,https://www.intercom.com/legal/terms-and-policies,https://www.intercom.com/security,https://community.intercom.com/,, +Shopify Admin API,https://shopify.dev/docs/api/admin-graphql/latest,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/docs/api/admin-graphql/latest,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ +Payoneer API,https://developer.payoneer.com/,https://developer.payoneer.com/rate-limits,https://developer.payoneer.com/changelog,,,, +Telegram Bot API,https://core.telegram.org/bots/api,https://telegram.org/privacy,https://core.telegram.org/terms,https://core.telegram.org/bots/faq#what-are-the-rate-limits,https://core.telegram.org/bots/api-changelog,https://core.telegram.org/security,https://core.telegram.org/ +AWS CodeCommit API,https://docs.aws.amazon.com/codecommit/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/codecommit/latest/userguide/limits.html,https://docs.aws.amazon.com/codecommit/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ +Google Maps API,https://developers.google.com/maps/documentation,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api,, +Microsoft Graph Notebooks API,https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=S4vQUkfylIeaDKBGxjXAjo8CZy9PNdfaitGk768iFFjIDa0MXfQZ18W1jQUorQbBPGrc2iP_gQz1L0JHunKYGKWKJGsTmH-7L1_AhNo-ClnmVQ_rI7FHyblBRN7ZUWrKFoVEWKhaLkv_eStltpLv6uGaxrG1j-tiC8jYZb_aLbg&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNoteAPI,, +Slack API Logs API,https://docs.slack.dev/reference/methods/admin.analytics.getFile/,https://docs.slack.dev/reference/methods/admin.analytics.getFile/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox Events API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio Voice API,https://www.twilio.com/docs/voice,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +HubSpot Deals API,https://developers.hubspot.com/docs/api/deals,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Organizations API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Subscriptions API,https://docs.stripe.com/api/subscriptions,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Subscriptions API,https://developers.google.com/youtube/v3/docs/subscriptions?hl=zh-cn,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +AWS Kinesis API,https://docs.aws.amazon.com/kinesis/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/streams/latest/dev/service-sizes-and-limits.html,https://docs.aws.amazon.com/streams/latest/dev/,https://aws.amazon.com/security/,https://repost.aws/ +Slack Web API,https://docs.slack.dev/apis/web-api/,https://docs.slack.dev/apis/web-api/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +HubSpot Pipelines API,https://developers.hubspot.com/docs/api/pipelines,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Stripe Subscription API,https://docs.stripe.com/api/subscriptions,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Video API,https://developers.google.com/youtube/v3/docs/videos,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +Google Maps Elevation API,https://developers.google.com/maps/documentation/elevation/overview?hl=he,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/elevation/usage-and-billing,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-elevation-api, +Microsoft Graph Reports API,https://learn.microsoft.com/en-us/graph/api/resources/report?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=-DIeHo-K7qlOwwB2aV6WmKHFuRya1EsMaBGIfddPYpKOuFVoHKGPtMzqwGKlWPuaSk2rG0pQ9zbKLJiOVkf1JdczbK7RvI-ABPaT9pypvb9Fv7CGVRpaMZEesHHMr33e7bP3faIA7zD40dRckAyyMw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FReports,, +Slack Audit API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, +Dropbox Sharing API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio Messaging Insights API,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,,, +Zendesk Schedules API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +YouTube Analytics Reporting API,https://developers.google.com/youtube/reporting?hl=th,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-reporting,, Facebook API,https://developers.facebook.com/docs/,https://www.facebook.com/privacy/explanation,https://www.facebook.com/legal/terms,https://developers.facebook.com/docs/graph-api/overview/rate-limiting,https://developers.facebook.com/docs/graph-api/changelog,https://www.facebook.com/help/238318146535333,https://developers.facebook.com/community/ -Twitter API,https://developer.twitter.com/en/docs,https://twitter.com/en/privacy,https://twitter.com/en/tos,https://developer.twitter.com/en/docs/twitter-api/rate-limits,https://help.twitter.com/en/rules-and-policies/report-security-vulnerability,https://twittercommunity.com/ -YouTube API,https://developers.google.com/youtube,https://policies.google.com/privacy,https://www.youtube.com/t/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://www.youtube.com/about/policies/#security,https://groups.google.com/g/youtube-api -Instagram Graph API,https://developers.facebook.com/docs/instagram-api,https://privacycenter.instagram.com/policy,https://developers.facebook.com/terms/,https://developers.facebook.com/docs/instagram-api/changelog,https://help.instagram.com/519522125107875,https://developers.facebook.com/community/ -Reddit API,https://www.reddit.com/dev/api,https://www.redditinc.com/policies/privacy-policy,https://www.redditinc.com/policies/user-agreement,https://www.reddit.com/dev/api#limits,https://www.redditinc.com/blog,https://www.reddit.com/r/redditdev/ -Slack API,https://api.slack.com/,https://api.slack.com/docs/rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -GitHub API,https://docs.github.com/en/rest,https://docs.github.com/en/github/site-policy/github-privacy-statement,https://docs.github.com/en/github/site-policy/github-terms-of-service,https://docs.github.com/en/rest/overview/resources-in-the-rest-api#rate-limiting,https://github.blog/changelog/,https://github.com/security,https://github.community/ -AWS CodePipeline API,https://docs.aws.amazon.com/codepipeline/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/codepipeline/latest/APIReference/limits.html,https://docs.aws.amazon.com/codepipeline/latest/APIReference/Welcome.html#release-notes,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Sheets API,https://developers.google.com/sheets,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/sheets/limits,https://cloud.google.com/security,https://groups.google.com/g/google-sheets-api -Microsoft Azure Event Hubs API,https://learn.microsoft.com/en-us/azure/event-hubs/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/azure/event-hubs/event-hubs-quotas,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/event-hubs/ct-p/EventHubs -Dropbox Badge API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Stripe PaymentIntents API,https://stripe.com/docs/api/payment_intents,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -Google Cloud Vision API,https://cloud.google.com/vision/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/vision/quotas,https://cloud.google.com/vision/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-vision-api -Microsoft Graph Groups API,https://learn.microsoft.com/en-us/graph/api/resources/groups-overview,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/groups/ct-p/Groups -Slack File Sharing API,https://api.slack.com/methods/files.upload,https://api.slack.com/methods/files.upload#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Folder API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Zendesk Request API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Setup Intents API,https://stripe.com/docs/api/setup_intents,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Live Events API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -TikTok API,https://developers.tiktok.com/doc/,https://www.tiktok.com/legal/privacy-policy,https://www.tiktok.com/legal/terms-of-service,https://www.tiktok.com/safety/en/ -WhatsApp Cloud API,https://developers.facebook.com/docs/whatsapp/cloud-api,https://developers.facebook.com/docs/whatsapp/cloud-api/changelog,https://www.whatsapp.com/security,https://developers.facebook.com/community -Notion API,https://developers.notion.com/,https://www.notion.so/Privacy-Policy-3468d120cf614d60844b00fcfb50529d,https://www.notion.so/Terms-of-Service-5d353cf927d1433a9cb2e6b8b69d78a2,https://developers.notion.com/reference/errors,https://developers.notion.com/changelog,https://www.notion.so/Security-65b0336c3b4e43b7b8ad2728052f647b -Calendly API,https://developer.calendly.com/,https://calendly.com/privacy,https://calendly.com/terms,https://developer.calendly.com/api-docs/rate-limits,https://developer.calendly.com/changelog,https://calendly.com/security,https://developer.calendly.com/community -Medium API,https://developers.medium.com/,https://policy.medium.com/privacy-policy-9db0094a1e0f,https://policy.medium.com/medium-terms-of-service-9db0094a1e0f,https://security.medium.com/ -Airbnb API,https://developer.airbnb.com/,https://www.airbnb.com/help/article/2855/privacy-policy,https://www.airbnb.com/terms,https://developer.airbnb.com/docs/rate-limits,https://developer.airbnb.com/docs/changelog,https://www.airbnb.com/security,https://community.airbnb.com/ -Paypal Payouts API,https://developer.paypal.com/docs/payouts/,https://www.paypal.com/us/webapps/mpp/ua/privacy-full,https://www.paypal.com/us/webapps/mpp/ua/legalhub-full,https://developer.paypal.com/docs/api-basics/rate-limiting/,https://www.paypal.com/us/webapps/mpp/security/security-protections,https://developer.paypal.com/community -Etsy API,https://developers.etsy.com/documentation,https://www.etsy.com/legal/privacy,https://www.etsy.com/legal/terms-of-use,https://community.etsy.com/ -Twitter Ads API,https://developer.twitter.com/en/docs/twitter-ads-api,https://twitter.com/en/privacy,https://twitter.com/en/tos,https://help.twitter.com/en/rules-and-policies/report-security-vulnerability,https://twittercommunity.com/ -AWS S3 Glacier API,https://docs.aws.amazon.com/amazonglacier/latest/dev/api.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/amazonglacier/latest/dev/limits.html,https://docs.aws.amazon.com/amazonglacier/latest/dev/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Graph Presence API,https://learn.microsoft.com/en-us/graph/api/resources/presence,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/presence/ct-p/Presence -Slack Reminders API,https://api.slack.com/methods/reminders.add,https://api.slack.com/methods/reminders.add#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Content Explorer API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Voice Insights API,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Properties API,https://developers.hubspot.com/docs/api/crm/properties,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Chat SDK API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Identity API,https://stripe.com/docs/api/identity,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -Twitch Helix API,https://dev.twitch.tv/docs/api,https://www.twitch.tv/p/legal/privacy-policy,https://www.twitch.tv/p/legal/terms-of-service,https://dev.twitch.tv/docs/change-log,https://www.twitch.tv/p/security,https://discuss.dev.twitch.tv/ -Amazon S3 API,https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonS3/latest/userguide/optimizing-performance.html#optimizing-performance-rate-limit,https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html#release_notes,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -YouTube Analytics API,https://developers.google.com/youtube/analytics,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/analytics/quotas,https://developers.google.com/youtube/analytics/release-notes,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Foursquare Places API,https://developer.foursquare.com/docs,https://foursquare.com/legal/privacy,https://foursquare.com/legal/terms -Netflix API,https://help.netflix.com/legal/privacy,https://help.netflix.com/legal/termsofuse,https://netflixtechblog.com/ -Microsoft Graph Print API,https://learn.microsoft.com/en-us/graph/api/resources/print,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/print/ct-p/Print -Slack Interactive Messages API,https://api.slack.com/interactivity,https://api.slack.com/interactivity#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Twilio Notify API,https://www.twilio.com/docs/notify,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -Zendesk Chat API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Checkout API,https://stripe.com/docs/api/checkout,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Monetization API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Zoom API,https://marketplace.zoom.us/docs,https://explore.zoom.us/en/privacy/,https://explore.zoom.us/en/terms/,https://explore.zoom.us/en/security/,https://devforum.zoom.us/ -Adobe Sign API,https://secure.adobesign.com/public/docs/restapi/v6,https://community.adobe.com/t5/adobe-sign/bd-p/adobe-sign -SendBird API,https://sendbird.com/docs,https://community.sendbird.com/ -Microsoft Teams API,https://learn.microsoft.com/en-us/microsoftteams/platform/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/microsoft-teams/ct-p/MicrosoftTeams -Klarna API,https://www.klarna.com/international/privacy-policy/ -PayPal Checkout API,https://developer.paypal.com/docs/checkout/,https://www.paypal.com/us/webapps/mpp/ua/privacy-full,https://www.paypal.com/us/webapps/mpp/ua/useragreement-full,https://www.paypal.com/us/webapps/mpp/security/security-protections,https://www.paypal-community.com/ -AWS CloudFormation API,https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html,https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Photos API,https://developers.google.com/photos,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/g/photos-api -Microsoft Graph Device API,https://learn.microsoft.com/en-us/graph/api/resources/device,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/devices/ct-p/Devices -Slack Apps API,https://api.slack.com/apps,https://api.slack.com/apps#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Sync API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Studio API,https://www.twilio.com/docs/studio,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot CRM API,https://developers.hubspot.com/docs/api/crm,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Stripe Products API,https://stripe.com/docs/api/products,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube API for Broadcasts,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Amazon Translate API,https://docs.aws.amazon.com/translate/latest/dg/API_Reference.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/translate/latest/dg/limits.html,https://docs.aws.amazon.com/translate/latest/dg/whats-new.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Twilio API,https://www.twilio.com/docs/usage/api,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -Stripe API,https://stripe.com/docs/api,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -AWS API Gateway,https://docs.aws.amazon.com/apigateway/latest/developerguide/welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/apigateway/latest/developerguide/limits.html,https://docs.aws.amazon.com/apigateway/latest/developerguide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Translator Text API,https://learn.microsoft.com/en-us/azure/cognitive-services/translator/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/azure-cognitive-services/ct-p/AzureCognitiveServices -Stripe Refunds API,https://stripe.com/docs/api/refunds,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -AWS Step Functions API,https://docs.aws.amazon.com/step-functions/latest/apireference/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/step-functions/latest/dg/limits.html,https://docs.aws.amazon.com/step-functions/latest/dg/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Graph SharePoint API,https://learn.microsoft.com/en-us/graph/api/resources/sharepoint,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/sharepoint/ct-p/SharePoint -Dropbox Revisions API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -HubSpot Forms API,https://developers.hubspot.com/docs/api/forms,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -YouTube Live Streaming API,https://developers.google.com/youtube/v3/live,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/live/getting-started#quota,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-live -AWS EC2 API,https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-resource-limits.html,https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Tasks API,https://developers.google.com/tasks,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/tasks/limits,https://cloud.google.com/security,https://groups.google.com/g/google-tasks-api -Microsoft Graph Mail API,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/outlook-developer/ct-p/OutlookDeveloper -Slack Messaging API,https://api.slack.com/messaging,https://api.slack.com/messaging#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Twilio Authy API,https://www.twilio.com/docs/authy,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Call API,https://developers.hubspot.com/docs/api/calls,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Tickets API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -YouTube Livestreams API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Amazon Rekognition API,https://docs.aws.amazon.com/rekognition/latest/dg/API_Reference.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/rekognition/latest/dg/limits.html,https://docs.aws.amazon.com/rekognition/latest/dg/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Dropbox Search API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Programmable Chat API,https://www.twilio.com/docs/chat,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -Zendesk Sunshine API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -HubSpot CMS API,https://developers.hubspot.com/docs/api/cms,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Microsoft Translator API,https://learn.microsoft.com/en-us/azure/cognitive-services/translator/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/azure-cognitive-services/ct-p/AzureCognitiveServices -AWS Athena API,https://docs.aws.amazon.com/athena/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/athena/latest/ug/service-limits.html,https://docs.aws.amazon.com/athena/latest/ug/athena-whats-new.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Maps Directions API,https://developers.google.com/maps/documentation/directions/start,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/directions/usage-and-billing,https://developers.google.com/maps/documentation/directions/releases,https://cloud.google.com/security,https://groups.google.com/g/maps-api -Microsoft Dynamics 365 API,https://learn.microsoft.com/en-us/dynamics365/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://community.dynamics.com/ -Slack Permissions API,https://api.slack.com/scopes,https://api.slack.com/scopes#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Activity API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -HubSpot Email API,https://developers.hubspot.com/docs/api/marketing/email,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Custom Objects API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Amazon SES API,https://docs.aws.amazon.com/ses/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/ses/latest/APIReference/API_Operations.html,https://docs.aws.amazon.com/ses/latest/APIReference/Welcome.html#release_notes,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Maps Roads API,https://developers.google.com/maps/documentation/roads,https://policies.google.com/privacy,https://developers.google.com/maps/terms,https://developers.google.com/maps/documentation/roads/usage-limits,https://cloud.google.com/security,https://groups.google.com/g/maps-api -Slack App API,https://api.slack.com/apps,https://api.slack.com/docs/rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -HubSpot Contacts API,https://developers.hubspot.com/docs/api/crm/contacts,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Stripe Tax API,https://stripe.com/docs/tax,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -Zendesk Sell API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -YouTube Reporting API,https://developers.google.com/youtube/reporting,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS Backup API,https://docs.aws.amazon.com/aws-backup/latest/devguide/API_Reference.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/aws-backup/latest/devguide/limits.html,https://docs.aws.amazon.com/aws-backup/latest/devguide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Graph Calendar API,https://learn.microsoft.com/en-us/graph/api/resources/calendar,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/outlook-calendar/ct-p/OutlookCalendar -Twilio Conversations API,https://www.twilio.com/docs/conversations,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Marketing Events API,https://developers.hubspot.com/docs/api/marketing/events,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -AWS SNS API,https://docs.aws.amazon.com/sns/latest/api/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/sns/latest/dg/sns-limits.html,https://docs.aws.amazon.com/sns/latest/dg/whats-new.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google People API,https://developers.google.com/people,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/g/google-people-api -Microsoft Graph OneDrive API,https://learn.microsoft.com/en-us/graph/api/resources/onedrive,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/onedrive-developer/ct-p/OneDriveDeveloper -Zendesk Apps Framework API,https://developer.zendesk.com/documentation/apps/,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Transfers API,https://stripe.com/docs/api/transfers,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Categories API,https://developers.google.com/youtube/v3/docs/videoCategories,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS AppStream API,https://docs.aws.amazon.com/appstream2/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Graph DeviceManagement API,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/devicemanagement/ct-p/DeviceManagement -Slack Directory API,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Shared Links API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -HubSpot Blogs API,https://developers.hubspot.com/docs/api/blogs,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -YouTube Embed API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Microsoft OneDrive API,https://learn.microsoft.com/en-us/graph/api/resources/onedrive,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/onedrive-developer/ct-p/OneDriveDeveloper -Google Cloud Pub/Sub API,https://cloud.google.com/pubsub/docs,https://policies.google.com/privacy,https://cloud.google.com/terms,https://cloud.google.com/pubsub/quotas,https://cloud.google.com/pubsub/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-pubsub-discuss -Amazon CloudWatch API,https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_limits.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Spotify Web Playback API,https://developer.spotify.com/documentation/web-playback-sdk/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-playback-sdk/#rate-limits,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/ -Bitly Links API,https://www.bitly.com/pages/privacy,https://www.bitly.com/pages/terms-of-service -AWS AppConfig API,https://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/appconfig/latest/userguide/limits.html,https://docs.aws.amazon.com/appconfig/latest/userguide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Chat API,https://developers.google.com/chat,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/chat/releases,https://cloud.google.com/security,https://groups.google.com/g/google-chat-api -Microsoft Graph Sites API,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/sites/ct-p/Sites -Slack Users API,https://api.slack.com/methods/users.info,https://api.slack.com/methods/users.info#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Stripe Checkout Sessions API,https://stripe.com/docs/api/checkout/sessions,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Caption Tracks API,https://developers.google.com/youtube/v3/docs/captions,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS RDS API,https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Quotas.html,https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReleaseNotes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Firebase Authentication API,https://firebase.google.com/docs/auth,https://policies.google.com/privacy,https://firebase.google.com/terms,https://firebase.google.com/support/release-notes,https://firebase.google.com/support/privacy,https://groups.google.com/g/firebase-auth-api -Dropbox Paper API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Programmable SMS API,https://www.twilio.com/docs/sms,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -Zendesk User Events API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -YouTube Player API,https://developers.google.com/youtube/iframe_api_reference,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/iframe_api_reference#limits,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-iframe-api -AWS Glue API,https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/glue/latest/dg/resource-policy.html,https://docs.aws.amazon.com/glue/latest/dg/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Azure Computer Vision API,https://learn.microsoft.com/en-us/azure/cognitive-services/computer-vision/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/azure-cognitive-services/ct-p/AzureCognitiveServices -Twilio Chat API,https://www.twilio.com/docs/chat,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -Google Tag Manager API,https://developers.google.com/tag-platform/tag-manager,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/g/tagmanager-api -Facebook Messenger API,https://developers.facebook.com/docs/messenger-platform/,https://www.facebook.com/privacy/explanation,https://developers.facebook.com/terms/,https://developers.facebook.com/docs/messenger-platform/changelog,https://www.facebook.com/help/238318146535333,https://developers.facebook.com/community/ -Shopify Analytics API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ -Microsoft Power BI API,https://learn.microsoft.com/en-us/rest/api/power-bi/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/power-bi/ct-p/PowerBI -GitLab CI/CD API,https://about.gitlab.com/privacy/,https://about.gitlab.com/terms/,https://about.gitlab.com/security/,https://forum.gitlab.com/ -Spotify Playlist API,https://developer.spotify.com/documentation/web-api/reference/#category-playlists,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-api/#rate-limiting,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/ -Microsoft Graph Education API,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/education/ct-p/Education -HubSpot Ecommerce API,https://developers.hubspot.com/docs/api/ecommerce,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Stripe Payment Methods API,https://stripe.com/docs/api/payment_methods,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Subscription API,https://developers.google.com/youtube/v3/docs/subscriptions,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS IoT Core API,https://docs.aws.amazon.com/iot/latest/apireference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/iot/latest/developerguide/limits.html,https://docs.aws.amazon.com/iot/latest/developerguide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Slack Bot Users API,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Contacts API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Zendesk Activity Stream API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -YouTube Channel Branding API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Shopify GraphQL API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ -Bitbucket API,https://developer.atlassian.com/bitbucket,https://www.atlassian.com/legal/privacy-policy,https://www.atlassian.com/legal/cloud-terms-of-service,https://bitbucket.org/site/master/issues?status=new&status=open,https://www.atlassian.com/trust/security,https://community.atlassian.com/t5/Bitbucket/ct-p/bitbucket -PayPal Payments API,https://www.paypal.com/us/webapps/mpp/ua/privacy-full,https://www.paypal.com/us/webapps/mpp/ua/useragreement-full,https://developer.paypal.com/docs/api-basics/rate-limiting/,https://www.paypal.com/us/webapps/mpp/security/security-protections,https://www.paypal-community.com/ -Stripe Payment Intents API,https://stripe.com/docs/payments/payment-intents,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -Google Custom Search API,https://developers.google.com/custom-search/v1/introduction,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/custom-search/v1/overview#limits,https://cloud.google.com/security,https://groups.google.com/g/custom-search-api -Dropbox Content API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -PayPal Subscriptions API,https://developer.paypal.com/docs/subscriptions/,https://www.paypal.com/us/webapps/mpp/ua/privacy-full,https://www.paypal.com/us/webapps/mpp/ua/useragreement-full,https://www.paypal.com/us/webapps/mpp/security/security-protections,https://www.paypal-community.com/ -Spotify Ads API,https://developer.spotify.com/documentation/ads-api/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/ -Reddit OAuth API,https://www.reddit.com/dev/api/oauth,https://www.redditinc.com/policies/privacy-policy,https://www.redditinc.com/policies/user-agreement,https://www.reddit.com/dev/api/oauth#limits,https://www.redditinc.com/blog,https://www.reddit.com/r/redditdev/ -Shopify Fulfillment API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ +Twitter API,https://docs.x.com/overview,https://x.com/en/privacy,https://x.com/en/tos,https://docs.x.com/overview,https://help.twitter.com/en/rules-and-policies/report-security-vulnerability,https://devcommunity.x.com/, +YouTube API,https://developers.google.com/youtube?hl=id,https://policies.google.com/privacy,https://www.youtube.com/t/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://www.youtube.com/howyoutubeworks/our-policies/,https://groups.google.com/g/youtube-api +Instagram Graph API,https://developers.facebook.com/docs/instagram-api,https://privacycenter.instagram.com/policy,https://developers.facebook.com/terms/,https://developers.facebook.com/docs/instagram-api/changelog,https://help.instagram.com/519522125107875,https://developers.facebook.com/community/, +Reddit API,https://www.reddit.com/dev/api,https://www.reddit.com/policies/privacy-policy,https://redditinc.com/policies/user-agreement,https://www.reddit.com/dev/api#limits,https://redditinc.com/news,https://www.reddit.com/r/redditdev/, +Slack API,https://docs.slack.dev/,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +GitHub API,https://docs.github.com/en/rest,https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement,https://docs.github.com/en/site-policy/github-terms/github-terms-of-service,https://docs.github.com/en/rest/using-the-rest-api/getting-started-with-the-rest-api,https://github.blog/changelog/,https://github.com/security,https://github.com/orgs/community/discussions/ +AWS CodePipeline API,https://docs.aws.amazon.com/codepipeline/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/codepipeline/latest/APIReference/,https://docs.aws.amazon.com/codepipeline/latest/APIReference/Welcome.html#release-notes,https://aws.amazon.com/security/,https://repost.aws/ +Google Sheets API,https://developers.google.com/workspace/sheets?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/workspace/sheets/api/limits?hl=vi,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-sheets-api, +Microsoft Azure Event Hubs API,https://learn.microsoft.com/en-us/azure/event-hubs/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/azure/event-hubs/event-hubs-quotas,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=OfT4aohP62ba_zd6MVDVAjHfFF1wGzp0MXR8G3H1H2H-mO2L78JTbQ-Gxb0C_zMph0TUXaXIMQuL0as-BH2X-nHEzKX_lJyhFZkATSUgu4a_IQ8ftNTp-E_79GUot0YDZIXUpG-vSvDaU8XX5fFevUnxWpD7v8k7EsD-iDPcLSw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FEventHubs,, +Dropbox Badge API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Stripe PaymentIntents API,https://docs.stripe.com/api/payment_intents,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +Google Cloud Vision API,https://docs.cloud.google.com/vision/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/vision/quotas,https://cloud.google.com/vision/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-vision-api +Microsoft Graph Groups API,https://learn.microsoft.com/en-us/graph/api/resources/groups-overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=lIXngyBXKsipYINl9GunF17fJWYqwKKLEg0lVdndqXSXBtUi_OWGZqv17kflV4RYoY0NeobOyjOh3aaatisipI298vjRef9TxPhryS3h_POdqsxiy2IQNkTFIAjiPqaRe3KEAPgnynhYCknk0CtRwQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FGroups,, +Slack File Sharing API,https://docs.slack.dev/reference/methods/files.upload/,https://docs.slack.dev/reference/methods/files.upload/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox Folder API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Zendesk Request API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Setup Intents API,https://docs.stripe.com/api/setup_intents,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Live Events API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, +TikTok API,https://developers.tiktok.com/doc/,https://www.tiktok.com/legal/page/row/privacy-policy/en,https://www.tiktok.com/legal/page/row/terms-of-service/en,https://www.tiktok.com/safety/en/,,, +WhatsApp Cloud API,https://developers.facebook.com/docs/whatsapp/cloud-api,https://developers.facebook.com/docs/whatsapp/cloud-api/changelog,https://www.whatsapp.com/security,https://developers.facebook.com/community,,, +Notion API,https://developers.notion.com/guides/get-started/overview,https://www.notion.so/Privacy-Policy-3468d120cf614d60844b00fcfb50529d,https://www.notion.so/Terms-of-Service-5d353cf927d1433a9cb2e6b8b69d78a2,https://developers.notion.com/reference/errors,https://developers.notion.com/changelog,https://www.notion.so/Security-65b0336c3b4e43b7b8ad2728052f647b, +Calendly API,https://developer.calendly.com/,https://calendly.com/legal/privacy-notice,https://calendly.com/legal/customer-terms-conditions,https://developer.calendly.com/api-docs/rate-limits,https://developer.calendly.com/changelog,https://calendly.com/security,https://developer.calendly.com/community +Medium API,https://medium.engineering/?gi=9069274de046,https://policy.medium.com/medium-terms-of-service-9db0094a1e0f,https://policy.medium.com/medium-terms-of-service-9db0094a1e0f,https://security.medium.com/,,, +Airbnb API,https://developer.withairbnb.com/,https://www.airbnb.com/help/article/2855/privacy-policy,https://www.airbnb.com/help/article/2908,https://www.airbnb.com/login_with_redirect?redirect_url=%2Foauth2%2Fauth%3Fredirect_uri%3Dhttps%253A%252F%252Foauth.readme.io%252Fp%252Fairbnb-group%252Foauth%252Fcallback%26scope%3Dpartner_profile_read%252Cbasic_profile_read%252Cemail_read%26state%3D%252Fhomes%252Fdocs%252Frate-limits%26response_type%3Dcode%26client_id%3D7bgoybsfef2r71egvdcwt8fze,https://www.airbnb.com/login_with_redirect?redirect_url=%2Foauth2%2Fauth%3Fredirect_uri%3Dhttps%253A%252F%252Foauth.readme.io%252Fp%252Fairbnb-group%252Foauth%252Fcallback%26scope%3Dpartner_profile_read%252Cbasic_profile_read%252Cemail_read%26state%3D%252Fhomes%252Fdocs%252Fchangelog%26response_type%3Dcode%26client_id%3D7bgoybsfef2r71egvdcwt8fze,https://www.airbnb.com/e/security,https://community.withairbnb.com/t5/Community-Center/ct-p/community-center +Paypal Payouts API,https://developer.paypal.com/payouts/overview,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/home,https://developer.paypal.com/docs/api-basics/rate-limiting/,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://developer.paypal.com/community, +Etsy API,https://developers.etsy.com/documentation,https://www.etsy.com/legal/privacy,https://www.etsy.com/legal/terms-of-use,https://community.etsy.com/,,, +Twitter Ads API,https://docs.x.com/overview,https://x.com/en/privacy,https://x.com/en/tos,https://help.twitter.com/en/rules-and-policies/report-security-vulnerability,https://devcommunity.x.com/,, +AWS S3 Glacier API,https://docs.aws.amazon.com/amazonglacier/latest/dev/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/amazonglacier/latest/dev/,https://docs.aws.amazon.com/amazonglacier/latest/dev/,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Graph Presence API,https://learn.microsoft.com/en-us/graph/api/resources/presence?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=SPH8ED7f1Q8BKkACfdxlzkUrQv63uctiMnocU9QlhPmTHkiWgCoDeGotaPVFc_pdVU8oKQYmf7Bo9eZFf_wyN31TXv3Kbl61H_2bxS5Cg9g7vh4ME-C_-qz8eTAQMUXRk55nz3orDoXF3cHf1DvJTgPJ4CSdghzKO91xPHaxOl4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPresence,, +Slack Reminders API,https://docs.slack.dev/reference/methods/reminders.add/,https://docs.slack.dev/reference/methods/reminders.add/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox Content Explorer API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio Voice Insights API,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,,, +HubSpot Properties API,https://developers.hubspot.com/docs/api-reference/legacy/crm/properties/guide,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Chat SDK API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Identity API,https://docs.stripe.com/api/identity/verification_sessions,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +Twitch Helix API,https://dev.twitch.tv/docs/api,https://legal.twitch.com/legal/privacy-policy,https://legal.twitch.com/legal/terms-of-service,https://dev.twitch.tv/docs/change-log,https://www.twitch.tv/p/security,https://discuss.dev.twitch.com/, +Amazon S3 API,https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonS3/latest/userguide/optimizing-performance.html#optimizing-performance-rate-limit,https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html#release_notes,https://aws.amazon.com/security/,https://repost.aws/ +YouTube Analytics API,https://developers.google.com/youtube/analytics,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/reporting?hl=pt-br,https://developers.google.com/youtube/reporting,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +Foursquare Places API,https://docs.foursquare.com/developer/docs/foursquare-sdks-overview,https://foursquare.com/legal/privacy-center/foursquare-privacy-policy-consumer-services/,https://foursquare.com/legal/terms,,,, +Netflix API,https://help.netflix.com/legal/privacy,https://help.netflix.com/legal/termsofuse,https://netflixtechblog.com/?gi=9f707bc7f1a4,,,, +Microsoft Graph Print API,https://learn.microsoft.com/en-us/graph/api/resources/print?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=ga8fXg-L519ZXCFJOcugjzhBzMxU3JztV3WbHVrGAHO9tfw5a_VGJGMYY3nmEEm_xavYhQs8Yhl8ctRQZmp2bHISVwwz7BVIt_TMbEGd3SB1csReETXO4uyQnxigdgbeeALvidXRxS3PvnpX5DQsHQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPrint,, +Slack Interactive Messages API,https://docs.slack.dev/interactivity/,https://docs.slack.dev/interactivity/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Twilio Notify API,https://www.twilio.com/docs/notify,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Zendesk Chat API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Checkout API,https://docs.stripe.com/api/checkout/sessions,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Monetization API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api,,, +Zoom API,https://developers.zoom.us/docs/,https://www.zoom.com/en/trust/privacy/privacy-statement/,https://www.zoom.com/en/trust/terms/,https://www.zoom.com/en/trust/security/,https://devforum.zoom.us/,, +Adobe Sign API,https://secure.na1.adobesign.com/public/docs/restapi/v6,https://community.adobe.com/adobe-acrobat-sign-28,,,,, +SendBird API,https://sendbird.com/docs,https://community.sendbird.com/,,,,, +Microsoft Teams API,https://learn.microsoft.com/en-us/microsoftteams/platform/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/MicrosoftTeams,,, +Klarna API,https://www.klarna.com/international/privacy-policy/,,,,,, +PayPal Checkout API,https://developer.paypal.com/checkout,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/,, +AWS CloudFormation API,https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html,https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/,https://aws.amazon.com/security/,https://repost.aws/ +Google Photos API,https://developers.google.com/photos,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/photos-api,, +Microsoft Graph Device API,https://learn.microsoft.com/en-us/graph/api/resources/device?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=AFt1gJtvSXpFXIxovgJRdYIBsjRpQzi2WMWr9b5_3kWd7V9pWTG_V6WpqAamgAfS38TnkvBt2MWth0WS4j0TnwofzjedKwPh0P4FKBqCS0y7Cepb5n77ymz0TMU6nvEdkXOKr8WByLDI5Z3FnbBc8g&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDevices,, +Slack Apps API,https://api.slack.com/apps,https://api.slack.com/apps#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox Sync API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio Studio API,https://www.twilio.com/docs/studio,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +HubSpot CRM API,https://developers.hubspot.com/docs/api/crm,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Stripe Products API,https://docs.stripe.com/api/products,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube API for Broadcasts,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, +Amazon Translate API,https://docs.aws.amazon.com/translate/latest/APIReference/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/translate/latest/dg/,https://docs.aws.amazon.com/translate/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ +Twilio API,https://www.twilio.com/docs/usage/api,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Stripe API,https://docs.stripe.com/api,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +AWS API Gateway,https://docs.aws.amazon.com/apigateway/latest/developerguide/welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/apigateway/latest/developerguide/limits.html,https://docs.aws.amazon.com/apigateway/latest/developerguide/,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Translator Text API,https://learn.microsoft.com/en-us/azure/ai-services/translator/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices,,, +Stripe Refunds API,https://docs.stripe.com/api/refunds,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +AWS Step Functions API,https://docs.aws.amazon.com/step-functions/latest/apireference/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/step-functions/latest/dg/service-quotas.html,https://docs.aws.amazon.com/step-functions/latest/dg/welcome.html,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Graph SharePoint API,https://learn.microsoft.com/en-us/graph/api/resources/sharepoint?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=1OIXvxtUgtctvRMt3UFYHpzXcscmEUGzGr6Op09CASKVMzKmM_moS6pPZ1EHIbKp2a_tZK538TV9rdugEA9Xh0uK3Kdsks2fFNjhYbZi-HyETDGtTb4Cm8ONDvACq4rfh7h7gcch9oQVRM5Qlnl1vp3nv9tHA7mf4gp45H2Vhos&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSharePoint,, +Dropbox Revisions API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +HubSpot Forms API,https://developers.hubspot.com/docs/api/forms,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +YouTube Live Streaming API,https://developers.google.com/youtube/v3/live/getting-started?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/live/getting-started?hl=he,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-live, +AWS EC2 API,https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-resource-limits.html,https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/,https://aws.amazon.com/security/,https://repost.aws/ +Google Tasks API,https://developers.google.com/workspace/tasks?hl=zh-cn,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/workspace/tasks/limits?hl=bn,https://cloud.google.com/security,https://groups.google.com/g/google-tasks-api, +Microsoft Graph Mail API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=W4uWdy1RJ19lG9lJRXaCdcEAk_cL87J9O4sIhl9HIGxAm1f-w-0XGUKj10ZbLc4jMWOKt7FHhi5liUOYBTIC-SbP2giPwXv7sF4oc_9zavhglu8A3n8LECT-G8r5QLoplpZuB3khomkZc8B9nHDHBiqbWDrchDVvrFYaO5kZG4k&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookDeveloper,,, +Slack Messaging API,https://docs.slack.dev/messaging/,https://docs.slack.dev/messaging/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Twilio Authy API,https://www.twilio.com/docs/authy,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +HubSpot Call API,https://developers.hubspot.com/docs/api/calls,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Tickets API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +YouTube Livestreams API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, +Amazon Rekognition API,https://docs.aws.amazon.com/rekognition/latest/dg/API_Reference.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/rekognition/latest/dg/limits.html,https://docs.aws.amazon.com/rekognition/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ +Dropbox Search API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio Programmable Chat API,https://www.twilio.com/docs/chat,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Zendesk Sunshine API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +HubSpot CMS API,https://developers.hubspot.com/docs/api/cms,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Microsoft Translator API,https://learn.microsoft.com/en-us/azure/ai-services/translator/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices,,, +AWS Athena API,https://docs.aws.amazon.com/athena/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/athena/latest/ug/service-limits.html,https://docs.aws.amazon.com/athena/latest/ug/,https://aws.amazon.com/security/,https://repost.aws/ +Google Maps Directions API,https://developers.google.com/maps/documentation/directions/start?hl=he,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/directions/usage-and-billing?hl=fa,https://developers.google.com/maps/documentation/directions/releases,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api +Microsoft Dynamics 365 API,https://learn.microsoft.com/en-us/dynamics365/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://community.dynamics.com/,,, +Slack Permissions API,https://docs.slack.dev/reference/scopes/,https://docs.slack.dev/reference/scopes/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox Activity API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +HubSpot Email API,https://developers.hubspot.com/docs/api/marketing/email,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Custom Objects API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Amazon SES API,https://docs.aws.amazon.com/ses/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/ses/latest/APIReference/API_Operations.html,https://docs.aws.amazon.com/ses/latest/APIReference/Welcome.html#release_notes,https://aws.amazon.com/security/,https://repost.aws/ +Google Maps Roads API,https://developers.google.com/maps/documentation/roads,https://policies.google.com/privacy,https://cloud.google.com/maps-platform/terms,https://developers.google.com/maps/documentation/roads/usage-and-billing,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api, +Slack App API,https://api.slack.com/apps,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +HubSpot Contacts API,https://developers.hubspot.com/docs/api-reference/legacy/crm/objects/contacts/guide,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Stripe Tax API,https://docs.stripe.com/tax,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +Zendesk Sell API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +YouTube Reporting API,https://developers.google.com/youtube/reporting,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api,, +AWS Backup API,https://docs.aws.amazon.com/aws-backup/latest/devguide/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/aws-backup/latest/devguide/,https://docs.aws.amazon.com/aws-backup/latest/devguide/,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Graph Calendar API,https://learn.microsoft.com/en-us/graph/api/resources/calendar?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=FUiZ57pDenN2vqWpceO8S9uA-W4qBcgTDgV_qJBnM117LQyLQTN7mxuGBcwqhSl8ng1O7qZjsaOcwZAmGyO6VJXXsS1WdNHeLGSPu4NHJfVilXsSuNsz_-utVvStCouNc8JEEjtZQ8Bc3a2yn3deJ6bCZf7tM1FYSYQWcbuKZb8&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookCalendar,, +Twilio Conversations API,https://www.twilio.com/docs/conversations,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +HubSpot Marketing Events API,https://developers.hubspot.com/docs/api/marketing/events,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +AWS SNS API,https://docs.aws.amazon.com/sns/latest/api/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/sns/latest/dg/,https://docs.aws.amazon.com/sns/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ +Google People API,https://developers.google.com/people,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-people-api,, +Microsoft Graph OneDrive API,https://learn.microsoft.com/en-us/graph/api/resources/onedrive?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=HfPeQh0_RYaCRf36VBH5tBxqe1MWs42oRuuytkTOTCPiqNYvSGBKJw5uQcXKpjuM19WPaVlSRQXOXmKOn14AOyXV39nye0Oa8ARujaW9OFUZnUwJ_Xp0fydrfuP0-cxe5TDT1Ajj4rVv6wbIjPO7N40A4nImXYvY58QsNY0OZpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneDriveDeveloper,, +Zendesk Apps Framework API,https://developer.zendesk.com/documentation/apps/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,, +Stripe Transfers API,https://docs.stripe.com/api/transfers,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Categories API,https://developers.google.com/youtube/v3/docs/videoCategories,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +AWS AppStream API,https://docs.aws.amazon.com/appstream2/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://aws.amazon.com/security/,https://repost.aws/,, +Microsoft Graph DeviceManagement API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=V-1RQMF48do9f_ch08ENZvdewH9WA0hDLUiJOk-ewEm_nsdFZ0JkIumxqzXRX6J44VLhygxBvge0qHIKxvTSrNn7NnbhyEDfszPUL4x5Ca_a4JcNuuzvKYQ7GQapSy84l8psAJts5fuB8vHf1gPHAksZtLYc9afP0ObBKleWNBA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDeviceManagement,,, +Slack Directory API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, +Dropbox Shared Links API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +HubSpot Blogs API,https://developers.hubspot.com/docs/api/blogs,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +YouTube Embed API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api,,, +Microsoft OneDrive API,https://learn.microsoft.com/en-us/graph/api/resources/onedrive?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=HfPeQh0_RYaCRf36VBH5tBxqe1MWs42oRuuytkTOTCPiqNYvSGBKJw5uQcXKpjuM19WPaVlSRQXOXmKOn14AOyXV39nye0Oa8ARujaW9OFUZnUwJ_Xp0fydrfuP0-cxe5TDT1Ajj4rVv6wbIjPO7N40A4nImXYvY58QsNY0OZpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneDriveDeveloper,, +Google Cloud Pub/Sub API,https://docs.cloud.google.com/pubsub/docs?hl=es-419,https://policies.google.com/privacy,https://cloud.google.com/terms,https://docs.cloud.google.com/pubsub/quotas,https://cloud.google.com/pubsub/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-pubsub-discuss +Amazon CloudWatch API,https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_limits.html,https://aws.amazon.com/security/,https://repost.aws/, +Spotify Web Playback API,https://developer.spotify.com/documentation/web-playback-sdk/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-playback-sdk/#rate-limits,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/, +Bitly Links API,https://bitly.com/pages/privacy,https://bitly.com/pages/terms-of-service,,,,, +AWS AppConfig API,https://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/appconfig/latest/userguide/,https://docs.aws.amazon.com/appconfig/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ +Google Chat API,https://developers.google.com/workspace/chat?hl=he,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/workspace/chat/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-chat-api, +Microsoft Graph Sites API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=47VNIbUQY_55YwUiqtznImZeU8FI86dAwwgyTtEy4m0viBWqNqfH4PSfeKSQBTz6G_tNFoVuLJ6OLOd3Un73-G9L9Dr6dA4u4E3rklt8a7v-CdVbP6kk7KYrnPaW2xnptlihp5DVK_yuwqnqDyCD5w&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSites,,, +Slack Users API,https://docs.slack.dev/reference/methods/users.info/,https://docs.slack.dev/reference/methods/users.info/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Stripe Checkout Sessions API,https://docs.stripe.com/api/checkout/sessions,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Caption Tracks API,https://developers.google.com/youtube/v3/docs/captions,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, +AWS RDS API,https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/,https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/,https://aws.amazon.com/security/,https://repost.aws/ +Google Firebase Authentication API,https://firebase.google.com/docs/auth?hl=vi,https://policies.google.com/privacy,https://firebase.google.com/terms,https://firebase.google.com/support?hl=ko,https://firebase.google.com/support/privacy,https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-auth-api, +Dropbox Paper API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio Programmable SMS API,https://www.twilio.com/docs/messaging,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Zendesk User Events API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +YouTube Player API,https://developers.google.com/youtube/iframe_api_reference,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/iframe_api_reference?hl=ja,https://support.google.com/youtube/answer/2801895,https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-iframe-api, +AWS Glue API,https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/glue/latest/dg/,https://docs.aws.amazon.com/glue/latest/dg/release-notes.html,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Azure Computer Vision API,https://learn.microsoft.com/en-us/azure/ai-services/computer-vision/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices,,, +Twilio Chat API,https://www.twilio.com/docs/chat,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Google Tag Manager API,https://developers.google.com/tag-platform/tag-manager?hl=fa,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/tagmanager-api,, +Facebook Messenger API,https://developers.facebook.com/docs/messenger-platform/,https://www.facebook.com/privacy/explanation,https://developers.facebook.com/terms/,https://developers.facebook.com/docs/messenger-platform/changelog,https://www.facebook.com/help/238318146535333,https://developers.facebook.com/community/, +Shopify Analytics API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/,, +Microsoft Power BI API,https://learn.microsoft.com/en-us/rest/api/power-bi/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/PowerBI,,, +GitLab CI/CD API,https://about.gitlab.com/privacy/,https://about.gitlab.com/terms/,https://about.gitlab.com/security/,https://forum.gitlab.com/,,, +Spotify Playlist API,https://developer.spotify.com/documentation/web-api/reference/#category-playlists,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-api/#rate-limiting,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/, +Microsoft Graph Education API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=7i82YI2UXZEHMmEDtf7kdkFX4J5t3rkO5FHcEYl0c80C18ToRhzlBFwJUdALJFUsDDodyrMIwIuC5GQ9_xg5tpOheRlKLXaZAqHCNnuOEFTaRQbX8b7pZbpnWfYk50K9mGzW2Gv5Lgwuobl0tXvNVOMET0HH--Zq1hCWy8hU8vs&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FEducation,,, +HubSpot Ecommerce API,https://developers.hubspot.com/docs/api/ecommerce,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Stripe Payment Methods API,https://docs.stripe.com/api/payment_methods,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Subscription API,https://developers.google.com/youtube/v3/docs/subscriptions?hl=zh-cn,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +AWS IoT Core API,https://docs.aws.amazon.com/iot/latest/apireference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/iot/latest/developerguide/,https://docs.aws.amazon.com/iot/latest/developerguide/,https://aws.amazon.com/security/,https://repost.aws/ +Slack Bot Users API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, +Dropbox Contacts API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Zendesk Activity Stream API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +YouTube Channel Branding API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, +Shopify GraphQL API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/,, +Bitbucket API,https://developer.atlassian.com/cloud/bitbucket/?utm_source=%2Fbitbucket&utm_medium=302,https://www.atlassian.com/legal/privacy-policy,https://www.atlassian.com/legal/atlassian-customer-agreement,https://jira.atlassian.com/projects/BCLOUD?status=new&status=open,https://www.atlassian.com/trust/data-protection,https://community.atlassian.com/forums/Bitbucket/ct-p/bitbucket, +PayPal Payments API,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,https://developer.paypal.com/docs/api-basics/rate-limiting/,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/,, +Stripe Payment Intents API,https://docs.stripe.com/payments/payment-intents,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +Google Custom Search API,https://developers.google.com/custom-search/v1/introduction?hl=fr,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/custom-search/v1/overview#limits,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/custom-search-api, +Dropbox Content API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +PayPal Subscriptions API,https://developer.paypal.com/subscriptions/about,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/,, +Spotify Ads API,https://developer.spotify.com/documentation/ads-api/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/,, +Reddit OAuth API,https://www.reddit.com/dev/api/oauth,https://www.reddit.com/policies/privacy-policy,https://redditinc.com/policies/user-agreement,https://www.reddit.com/dev/api/oauth#limits,https://redditinc.com/news,https://www.reddit.com/r/redditdev/, +Shopify Fulfillment API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/,, Instagram Basic Display API,https://developers.facebook.com/docs/instagram-basic-display-api,https://privacycenter.instagram.com/policy,https://developers.facebook.com/terms/,https://developers.facebook.com/docs/instagram-basic-display-api/overview/#rate-limits,https://developers.facebook.com/docs/instagram-basic-display-api/changelog,https://help.instagram.com/519522125107875,https://developers.facebook.com/community/ -Azure Form Recognizer API,https://learn.microsoft.com/en-us/azure/applied-ai-services/form-recognizer/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/form-recognizer/ct-p/FormRecognizer -Amazon Comprehend API,https://docs.aws.amazon.com/comprehend/latest/dg/what-is.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/comprehend/latest/dg/limits.html,https://docs.aws.amazon.com/comprehend/latest/dg/whats-new.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Dropbox Sign API,https://app.hellosign.com/api,https://www.dropbox.com/privacy,https://www.hellosign.com/terms,https://app.hellosign.com/api/reference#rate-limits,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Slack Incoming Webhooks API,https://api.slack.com/messaging/webhooks,https://api.slack.com/messaging/webhooks#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Google Cloud Identity API,https://cloud.google.com/identity/docs,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/g/cloud-identity-api -Microsoft Teams Webhooks API,https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webhook,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webhook#rate-limits,https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webhook#release-notes,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/microsoft-teams/ct-p/MicrosoftTeams -Slack Block Kit API,https://api.slack.com/block-kit,https://api.slack.com/block-kit#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -AWS Amplify API,https://docs.aws.amazon.com/amplify/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/amplify/latest/userguide/limits.html,https://docs.aws.amazon.com/amplify/latest/userguide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Graph Compliance API,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/compliance/ct-p/Compliance -Slack Access Logs API,https://api.slack.com/admin/access-logs,https://api.slack.com/admin/access-logs#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Metadata API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Zendesk Triggers API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Spotify Web API,https://developer.spotify.com/documentation/web-api/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/ -Uber Eats API,https://www.uber.com/legal/privacy/,https://www.uber.com/legal/terms/ -GitLab API,https://docs.gitlab.com/ee/api/,https://about.gitlab.com/privacy/,https://about.gitlab.com/terms/,https://about.gitlab.com/security/,https://forum.gitlab.com/ -Cloudinary API,https://cloudinary.com/documentation,https://cloudinary.com/privacy,https://community.cloudinary.com/ -Bitly API,https://www.bitly.com/pages/privacy,https://www.bitly.com/pages/terms-of-service -DocuSign API,https://developers.docusign.com/docs/esign-rest-api/,https://www.docusign.com/company/privacy-policy,https://developers.docusign.com/changelog,https://www.docusign.com/trust/security,https://support.docusign.com/community -RingCentral API,https://developers.ringcentral.com/guide,https://www.ringcentral.com/legal/privacy-notice.html,https://developers.ringcentral.com/guide/rate-limits,https://developers.ringcentral.com/changelog,https://community.ringcentral.com/ -Zoom Video API,https://developers.zoom.us/docs,https://explore.zoom.us/en/privacy/,https://explore.zoom.us/en/terms/,https://explore.zoom.us/en/trust/security/,https://devforum.zoom.us/ -OpenWeatherMap One Call API,https://openweathermap.org/api/one-call-api,https://openweathermap.org/privacy-policy,https://openweathermap.org/terms,https://openweathermap.org/api/one-call-api#limits -Slack Workflow Builder API,https://api.slack.com/workflows,https://api.slack.com/workflows#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Chooser API,https://www.dropbox.com/developers/chooser,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Zendesk Mobile SDK API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Slack Message Events API,https://api.slack.com/events-api,https://api.slack.com/events-api#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Collaboration API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Google Vision API,https://cloud.google.com/vision/docs,https://policies.google.com/privacy,https://cloud.google.com/terms,https://cloud.google.com/vision/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-vision-api-discuss -Firebase Authentication API,https://firebase.google.com/docs/auth,https://policies.google.com/privacy,https://firebase.google.com/terms,https://firebase.google.com/docs/auth/limits,https://firebase.google.com/support/release-notes,https://firebase.google.com/support/privacy,https://groups.google.com/g/firebase-talk -Intercom Conversations API,https://developers.intercom.com/intercom-api-reference/reference,https://www.intercom.com/legal/privacy,https://www.intercom.com/legal/terms-and-policies,https://www.intercom.com/security,https://community.intercom.com/ -Shopify Storefront API,https://shopify.dev/docs/api/storefront,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ -Bitbucket Pipelines API,https://developer.atlassian.com/bitbucket/api/2/reference/pipelines,https://www.atlassian.com/legal/privacy-policy,https://www.atlassian.com/legal/cloud-terms-of-service,https://developer.atlassian.com/bitbucket/api/2/reference/rate-limits,https://developer.atlassian.com/cloud/bitbucket/changelog,https://www.atlassian.com/trust/security,https://community.atlassian.com/t5/Bitbucket/ct-p/bitbucket -Okta API,https://developer.okta.com/docs/,https://www.okta.com/privacy-policy/,https://www.okta.com/agreements/,https://developer.okta.com/docs/release-notes/,https://www.okta.com/security/,https://support.okta.com/help/community -MongoDB Atlas API,https://www.mongodb.com/docs/atlas/api/,https://www.mongodb.com/legal/privacy-policy,https://www.mongodb.com/docs/atlas/release-notes/,https://www.mongodb.com/community/forums/ -Amazon Lex API,https://docs.aws.amazon.com/lex/latest/dg/API_Reference.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/lex/latest/dg/limits.html,https://docs.aws.amazon.com/lex/latest/dg/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Outlook API,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/outlook-developer/ct-p/OutlookDeveloper -Zendesk Explore API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Twilio Proxy API,https://www.twilio.com/docs/proxy,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -AWS Elastic Load Balancing API,https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/limits.html,https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Cloud Spanner API,https://cloud.google.com/spanner/docs,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/spanner/quotas,https://cloud.google.com/security,https://groups.google.com/g/cloud-spanner-api -Microsoft Graph Bookings API,https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/bookings-api/ct-p/BookingsAPI -Dropbox App Folder API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -HubSpot Feedback Surveys API,https://developers.hubspot.com/docs/api/feedback-surveys,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Chat Conversations API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Invoices API,https://stripe.com/docs/api/invoices,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Channel Sections API,https://developers.google.com/youtube/v3/docs/channelSections,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS ECS API,https://docs.aws.amazon.com/AmazonECS/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html,https://docs.aws.amazon.com/AmazonECS/latest/developerguide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Slack API Permissions API,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Twilio Lookup API,https://www.twilio.com/docs/lookup,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/docs/lookup#rate-limits,https://www.twilio.com/changelog -Stripe Charges API,https://stripe.com/docs/api/charges,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Livestreaming API,https://developers.google.com/youtube/v3/live,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS App Runner API,https://docs.aws.amazon.com/apprunner/latest/api/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Cloud Speech-to-Text API,https://cloud.google.com/speech-to-text/docs,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/speech-to-text/quotas,https://cloud.google.com/speech-to-text/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-speech-to-text -Microsoft Graph Device Management API,https://learn.microsoft.com/en-us/graph/api/resources/device,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/device-management/ct-p/DeviceManagement -Zendesk NPS API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Salesforce API,https://developer.salesforce.com/docs,https://www.salesforce.com/company/privacy/,https://www.salesforce.com/company/legal/agreements/,https://security.salesforce.com/,https://developer.salesforce.com/forums -Discord API,https://discord.com/developers/docs/intro,https://discord.com/privacy,https://discord.com/terms,https://discord.com/developers/docs/topics/rate-limits,https://discord.com/developers/docs/change-log,https://discord.com/security,https://discord.com/developers/community -Microsoft Azure API,https://learn.microsoft.com/en-us/azure/developer/,https://privacy.microsoft.com/en-us/privacystatement,https://techcommunity.microsoft.com/t5/azure-developer/ct-p/AzureDeveloper -Microsoft Graph Drive API,https://learn.microsoft.com/en-us/graph/api/resources/drive,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/drive/ct-p/Drive -Slack Search API,https://api.slack.com/methods/search.all,https://api.slack.com/methods/search.all#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Thumbnails API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -HubSpot CRM Timeline API,https://developers.hubspot.com/docs/api/crm-timeline,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Activities API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics, -Stripe Payment Links API,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Super Chat API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Slack Workflows API,https://api.slack.com/workflows,https://api.slack.com/workflows#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Twilio Autopilot API,https://www.twilio.com/docs/autopilot,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Calendar API,https://developers.hubspot.com/docs/api/calendar,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -AWS Simple Queue Service (SQS) API,https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/limits.html,https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Cloud Monitoring API,https://cloud.google.com/monitoring/api/v3,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/monitoring/quotas,https://cloud.google.com/monitoring/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-monitoring-api -Slack Admin Audit API,https://api.slack.com/admin/audit-logs,https://api.slack.com/admin/audit-logs#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -HubSpot Tickets API,https://developers.hubspot.com/docs/api/tickets,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Ticketing API,https://developer.zendesk.com/documentation/ticketing/,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Google Cloud AutoML API,https://cloud.google.com/automl/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/g/automl-api -Zendesk Suspended Tickets API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -YouTube Search API,https://developers.google.com/youtube/v3/docs/search,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS Config API,https://docs.aws.amazon.com/config/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/config/latest/APIReference/API_Limits.html,https://docs.aws.amazon.com/config/latest/developerguide/ReleaseNotes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Graph Directory API,https://learn.microsoft.com/en-us/graph/api/resources/directory,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/directory/ct-p/Directory -Slack Admin Analytics API,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Spaces API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio Wireless API,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -HubSpot Owners API,https://developers.hubspot.com/docs/api/crm/owners,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Web Widget API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Microsoft Graph Notes API,https://learn.microsoft.com/en-us/graph/api/resources/onenote,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/onenote/ct-p/OneNote -Slack API Testing API,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -HubSpot Workflows API,https://developers.hubspot.com/docs/api/workflows,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Email API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Google Cloud Run API,https://cloud.google.com/run/docs,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/run/quotas,https://cloud.google.com/run/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-run-api -AWS Translate API,https://docs.aws.amazon.com/translate/latest/dg/what-is.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/translate/latest/dg/limits.html,https://docs.aws.amazon.com/translate/latest/dg/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Google Firebase Cloud Messaging API,https://firebase.google.com/docs/cloud-messaging,https://policies.google.com/privacy,https://firebase.google.com/terms/,https://firebase.google.com/support/release-notes,https://cloud.google.com/security,https://groups.google.com/g/firebase-cloud-messaging -HubSpot Task Queues API,https://developers.hubspot.com/docs/api/tasks/queues,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Stripe Bank Accounts API,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Comment Threads API,https://developers.google.com/youtube/v3/docs/commentThreads,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS DynamoDB API,https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ServiceQuotas.html,https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ServiceQuotas.html#release-notes,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Slack Pins API,https://api.slack.com/methods/pins.add,https://api.slack.com/methods/pins.add#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Zendesk Reporting API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Google Firebase Realtime Database API,https://firebase.google.com/docs/database,https://policies.google.com/privacy,https://firebase.google.com/terms/,https://firebase.google.com/support/release-notes,https://firebase.google.com/support/privacy,https://groups.google.com/g/firebase-realtime-database -Slack Messages API,https://api.slack.com/messaging,https://api.slack.com/messaging#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Zendesk App Framework API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Discounts API,https://stripe.com/docs/api/discounts,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Playlist Items API,https://developers.google.com/youtube/v3/docs/playlistItems,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS IAM Identity Center API,https://docs.aws.amazon.com/singlesignon/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Graph Messages API,https://learn.microsoft.com/en-us/graph/api/resources/message,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/messages/ct-p/Messages -Dropbox Authentication API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Twilio API for WhatsApp,https://www.twilio.com/docs/whatsapp,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -Zendesk Permissions API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Google Cloud Bigtable API,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/bigtable/quotas,https://cloud.google.com/bigtable/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-bigtable-api -Twilio Call Feedback API,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -Zendesk Integration API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -YouTube Playlist API,https://developers.google.com/youtube/v3/docs/playlists,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Figma API,https://www.figma.com/developers/docs,https://www.figma.com/privacy,https://www.figma.com/developers/api-rate-limits,https://www.figma.com/developers/changelog,https://www.figma.com/security,https://forum.figma.com -Cloudflare API,https://developers.cloudflare.com,https://www.cloudflare.com/privacypolicy,https://www.cloudflare.com/terms,https://www.cloudflare.com/security,https://community.cloudflare.com -eBay API,https://developer.ebay.com/docs,https://developer.ebay.com/api-docs/static/rate-limits.html,https://developer.ebay.com/api-docs/static/release-notes.html,https://community.ebay.com -Mailchimp API,https://mailchimp.com/developer,https://mailchimp.com/legal/privacy,https://mailchimp.com/legal/terms,https://mailchimp.com/developer/transactional/docs/rate-limits,https://mailchimp.com/developer/release-notes,https://mailchimp.com/about/security,https://mailchimp.com/developer/community -Twitch API,https://dev.twitch.tv/docs,https://www.twitch.tv/p/legal/privacy-policy,https://www.twitch.tv/p/legal/terms-of-service,https://dev.twitch.tv/docs/api/guide/#rate-limits,https://dev.twitch.tv/docs/change-log,https://www.twitch.tv/p/security,https://discuss.dev.twitch.tv/ -Google AdSense API,https://developers.google.com/adsense/management/,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/g/google-adsense-api -AWS Simple Notification Service (SNS) API,https://docs.aws.amazon.com/sns/latest/api/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/sns/latest/dg/sns-limits.html,https://docs.aws.amazon.com/sns/latest/dg/sns-release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Slack Audit Logs API,https://api.slack.com/admin/audit-logs,https://api.slack.com/admin/audit-logs#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Zendesk Ticket Fields API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Google Analytics Reporting API,https://developers.google.com/analytics/devguides/reporting/core/v4,https://policies.google.com/privacy,https://developers.google.com/analytics/terms,https://developers.google.com/analytics/devguides/reporting/core/v4/limits-quotas,https://developers.google.com/analytics/devguides/reporting/core/v4/release-notes,https://cloud.google.com/security,https://groups.google.com/g/analytics-api -YouTube Data API v3,https://developers.google.com/youtube/v3,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://cloud.google.com/security,https://groups.google.com/g/youtube-api -SendGrid Email API,https://docs.sendgrid.com/,https://sendgrid.com/policies/privacy/,https://sendgrid.com/policies/tos/,https://sendgrid.com/policies/security/,https://sendgrid.com/docs/for-developers -Azure Blob Storage API,https://learn.microsoft.com/en-us/azure/storage/blobs/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/azure-storage/ct-p/AzureStorage -Intercom Lead API,https://developers.intercom.com/intercom-api-reference/reference,https://www.intercom.com/legal/privacy,https://www.intercom.com/legal/terms-and-policies,https://www.intercom.com/security,https://community.intercom.com/ -Shopify Inventory API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ -Trello Cards API,https://developer.atlassian.com/cloud/trello/rest/api-group-cards/,https://trello.com/privacy,https://trello.com/legal,https://developer.atlassian.com/cloud/trello/guides/rest-api/rate-limits,https://developer.atlassian.com/cloud/trello/changelog,https://trello.com/security,https://community.atlassian.com/t5/Trello/ct-p/trello -AWS Elastic Transcoder API,https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/what-is.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/limits.html,https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/whats-new.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Dynamics API,https://learn.microsoft.com/en-us/dynamics365/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://community.dynamics.com/ -Slack RTM API,https://api.slack.com/rtm,https://api.slack.com/rtm#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Slack Analytics API,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Discovery API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -HubSpot E-commerce API,https://developers.hubspot.com/docs/api/ecommerce,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk SLA Breaches API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Tax Rates API,https://stripe.com/docs/api/tax_rates,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -YouTube Notifications API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS Identity and Access Management (IAM) API,https://docs.aws.amazon.com/IAM/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html,https://docs.aws.amazon.com/IAM/latest/UserGuide/change-log.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Graph User API,https://learn.microsoft.com/en-us/graph/api/resources/user,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/user/ct-p/User -Slack OAuth API,https://api.slack.com/authentication,https://api.slack.com/authentication#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Dropbox Audit Logs API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Zendesk Customer Satisfaction API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Twilio Call Insights API,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -Dropbox Admin API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Zendesk Webhooks API,https://developer.zendesk.com/documentation/webhooks/,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Microsoft OneNote API,https://learn.microsoft.com/en-us/graph/api/resources/onenote,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/onenote/ct-p/OneNote -Zendesk Users API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Microsoft Azure Speech Service API,https://learn.microsoft.com/en-us/azure/cognitive-services/speech-service/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/azure-cognitive-services/ct-p/AzureCognitiveServices -Zendesk Talk API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -YouTube Channel API,https://developers.google.com/youtube/v3/docs/channels,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -PayPal Orders API,https://developer.paypal.com/docs/api/orders/v2/,https://www.paypal.com/us/webapps/mpp/ua/privacy-full,https://developer.paypal.com/docs/api/terms-of-service,https://developer.paypal.com/docs/api/limits,https://developer.paypal.com/docs/api/changelog,https://www.paypal.com/us/webapps/mpp/security/security-protections,https://www.paypal-community.com/ -AWS S3 API,https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonS3/latest/userguide/optimizing-performance.html#optimizing-performance-rate-limit,https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html#release_notes,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Twilio SMS API,https://www.twilio.com/docs/sms,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -Dropbox Files API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -OpenAI DALL-E API,https://platform.openai.com/docs/guides/images,https://openai.com/privacy/,https://openai.com/terms/,https://platform.openai.com/docs/guides/images/rate-limits,https://platform.openai.com/docs/release-notes,https://openai.com/security/,https://community.openai.com/ -Azure Machine Learning API,https://learn.microsoft.com/en-us/azure/machine-learning/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/azure-machine-learning/ct-p/AzureMachineLearning -Adobe Creative Cloud API,https://www.adobe.io/apis/creativecloud.html -GitHub Actions API,https://docs.github.com/en/rest/actions,https://docs.github.com/en/github/site-policy/github-privacy-statement,https://docs.github.com/en/github/site-policy/github-terms-of-service,https://docs.github.com/en/rest/overview/resources-in-the-rest-api#rate-limiting,https://github.blog/changelog/,https://github.com/security,https://github.community/ -Shopify Discounts API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ -Figma File API,https://www.figma.com/developers/api,https://www.figma.com/privacy,https://www.figma.com/developers/api/rate-limits,https://www.figma.com/developers/changelog,https://www.figma.com/security,https://forum.figma.com/ -MongoDB Realm API,https://www.mongodb.com/legal/privacy-policy,https://www.mongodb.com/security,https://community.mongodb.com/ -OpenAI GPT API,https://platform.openai.com/docs,https://openai.com/privacy/,https://openai.com/terms/,https://platform.openai.com/docs/guides/rate-limits,https://platform.openai.com/docs/release-notes,https://openai.com/security/,https://community.openai.com/ -Dropbox File Metadata API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Microsoft Azure Key Vault API,https://learn.microsoft.com/en-us/azure/key-vault/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/azure-key-vault/ct-p/AzureKeyVault -Slack API (General),https://api.slack.com/,https://api.slack.com/docs/rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Google Cloud BigQuery API,https://cloud.google.com/bigquery/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/bigquery/quotas,https://cloud.google.com/bigquery/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-bigquery -YouTube Content ID API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-partner-api -Dropbox Data Loss Prevention API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/security,https://www.dropboxforum.com/ -Zendesk Metrics API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -YouTube Content Owners API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS App Mesh API,https://docs.aws.amazon.com/app-mesh/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/app-mesh/latest/userguide/limits.html,https://docs.aws.amazon.com/app-mesh/latest/userguide/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Graph Teamwork API,https://learn.microsoft.com/en-us/graph/api/resources/teamwork,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/teamwork/ct-p/Teamwork -Slack User API,https://api.slack.com/methods/users.list,https://api.slack.com/methods/users.list#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Zendesk Custom Fields API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Customers API,https://stripe.com/docs/api/customers,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -Xero API,https://developer.xero.com/documentation,https://www.xero.com/legal/privacy/,https://www.xero.com/legal/terms/,https://developer.xero.com/changelog -GitHub GraphQL API,https://docs.github.com/en/graphql,https://docs.github.com/en/github/site-policy/github-privacy-statement,https://docs.github.com/en/github/site-policy/github-terms-of-service,https://docs.github.com/en/graphql/overview/resource-limitations,https://github.blog/changelog/,https://github.com/security,https://github.community/ -Google Maps Places API,https://developers.google.com/maps/documentation/places,https://policies.google.com/privacy,https://developers.google.com/maps/terms,https://cloud.google.com/security,https://groups.google.com/g/google-maps-api -Slack Bot API,https://api.slack.com/docs/rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -AWS CloudWatch API,https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_limits.html,https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/release-notes.html,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -HubSpot Contact Properties API,https://developers.hubspot.com/docs/api/contact-properties,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -YouTube Data v3 API,https://developers.google.com/youtube/v3,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Microsoft Graph Identity API,https://learn.microsoft.com/en-us/graph/api/resources/identity,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/identity/ct-p/Identity -Slack Scopes API,https://api.slack.com/scopes,https://api.slack.com/scopes#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -HubSpot Tasks API,https://developers.hubspot.com/docs/api/tasks,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Insights API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics -Stripe Payments API,https://stripe.com/privacy,https://stripe.com/legal,https://stripe.com/docs/rate-limits,https://stripe.com/docs/changelog,https://stripe.com/docs/security,https://support.stripe.com/ -Google Cloud Tasks API,https://cloud.google.com/tasks/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/g/cloud-tasks-api -Google Maps Geolocation API,https://developers.google.com/maps/documentation/geolocation,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/geolocation/usage-and-billing,https://cloud.google.com/security,https://groups.google.com/g/maps-api-geolocation -Slack Status API,https://api.slack.com/methods/users.getPresence,https://api.slack.com/methods/users.getPresence#rate-limits,https://api.slack.com/changelog,https://slack.com/security,https://slackcommunity.com/ -Microsoft Graph Teams API,https://learn.microsoft.com/en-us/graph/api/resources/teams-api-overview,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/teams/ct-p/Teams -HubSpot Email Marketing API,https://developers.hubspot.com/docs/api/email-marketing,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/api/usage-details,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -YouTube Data Insights API,https://developers.google.com/youtube/analytics,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://developers.google.com/youtube/analytics/quota,https://developers.google.com/youtube/analytics/release-notes,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-analytics -Trello Webhooks API,https://developer.atlassian.com/cloud/trello/rest/api-group-webhooks/,https://trello.com/privacy,https://trello.com/legal,https://developer.atlassian.com/cloud/trello/guides/rest-api/rate-limits,https://developer.atlassian.com/cloud/trello/changelog,https://trello.com/security,https://community.atlassian.com/t5/Trello/ct-p/trello -Azure DevOps API,https://learn.microsoft.com/en-us/rest/api/azure/devops,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/azure-devops/ct-p/AzureDevOps -GitHub Checks API,https://docs.github.com/en/rest/checks,https://docs.github.com/en/github/site-policy/github-privacy-statement,https://docs.github.com/en/github/site-policy/github-terms-of-service,https://docs.github.com/en/rest/overview/resources-in-the-rest-api#rate-limiting,https://github.blog/changelog/,https://github.com/security,https://github.community/ -Spotify Follow API,https://developer.spotify.com/documentation/web-api/reference/#category-follow,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-api/#rate-limiting,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/ -Spotify API,https://developer.spotify.com/documentation/web-api/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-api/#rate-limiting,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/ -Amazon Kinesis API,https://docs.aws.amazon.com/kinesis/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/kinesis/latest/dev/service-sizes-and-limits.html,https://docs.aws.amazon.com/kinesis/latest/APIReference/Welcome.html#release_notes,https://aws.amazon.com/security/,https://forums.aws.amazon.com/ -Microsoft Azure Bot Service API,https://learn.microsoft.com/en-us/azure/bot-service/,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/bot-framework/ct-p/BotFramework -YouTube Live API,https://developers.google.com/youtube/v3/live,https://policies.google.com/privacy,https://developers.google.com/youtube/terms,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Microsoft Graph To-Do API,https://learn.microsoft.com/en-us/graph/api/resources/todo-overview,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/to-do/ct-p/ToDo -Twilio Email API,https://www.twilio.com/docs/sendgrid,https://www.twilio.com/legal/privacy,https://www.twilio.com/legal/tos,https://www.twilio.com/changelog -Microsoft Graph Calendar Events API,https://learn.microsoft.com/en-us/graph/api/resources/event,https://privacy.microsoft.com/en-us/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/t5/calendar-events/ct-p/CalendarEvents -Zendesk SLA Policies API,https://www.zendesk.com/company/customers-partners/privacy-policy/,https://www.zendesk.com/company/terms,https://support.zendesk.com/hc/en-us/community/topics +Azure Form Recognizer API,https://learn.microsoft.com/en-us/azure/ai-services/document-intelligence/?view=doc-intel-4.0.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=GVRlRjf9i5pCIwPyWna8Ngjyavl0h999nXaLHjbOnI3j00lz9A67rHG0EArEjldfX_0O23ujSg4dKqnSDIdBmKfD30BiAoZOWASmN3QCuaXRz9kku5M0C98TA0Dqu0SgduhyFNT0sE1md8UAEysTVD_TWGwNMZHf2sIWzwjRyd4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FFormRecognizer,,, +Amazon Comprehend API,https://docs.aws.amazon.com/comprehend/latest/dg/what-is.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/comprehend/latest/dg/,https://docs.aws.amazon.com/comprehend/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ +Dropbox Sign API,https://sign.dropbox.com/products/dropbox-sign-api,https://www.dropbox.com/privacy,https://sign.dropbox.com/about/terms,https://developers.hellosign.com/api/api-reference-welcome,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Slack Incoming Webhooks API,https://docs.slack.dev/messaging/sending-messages-using-incoming-webhooks/,https://docs.slack.dev/messaging/sending-messages-using-incoming-webhooks/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Google Cloud Identity API,https://docs.cloud.google.com/identity/docs?hl=pt-br,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-identity-api,, +Microsoft Teams Webhooks API,https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webhook,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webhook#rate-limits,https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webhook#release-notes,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/MicrosoftTeams, +Slack Block Kit API,https://docs.slack.dev/block-kit/,https://docs.slack.dev/block-kit/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +AWS Amplify API,https://docs.aws.amazon.com/amplify/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/amplify/latest/userguide/,https://docs.aws.amazon.com/amplify/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Graph Compliance API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=j09SoIc0r1G6N6P41OLqGj-aY4j1pLhqZ4UatlcElmXTzM28lE0EPX0wZtktGN5_DO41-raxFzh65VdBHskMZ5PFfZuthZ9qAqQTXHkFCdTcCEIDUzcBfliPi7kTyTBD-3pHZtODLlWQxXBHX_pQF9JazzyQ6MYR1o51vXB6sNM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FCompliance,,, +Slack Access Logs API,https://api.slack.com/admin/access-logs,https://api.slack.com/admin/access-logs#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox Metadata API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Zendesk Triggers API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Spotify Web API,https://developer.spotify.com/documentation/web-api/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/,, +Uber Eats API,https://www.uber.com/global/zh/privacy-notice-riders-order-recipients/,https://www.uber.com/au/en/legal/general-terms-of-use/,,,,, +GitLab API,https://docs.gitlab.com/api/,https://about.gitlab.com/privacy/,https://about.gitlab.com/terms/,https://about.gitlab.com/security/,https://forum.gitlab.com/,, +Cloudinary API,https://cloudinary.com/documentation,https://cloudinary.com/privacy,https://cloudinary.com/developers/community,,,, +Bitly API,https://bitly.com/pages/privacy,https://bitly.com/pages/terms-of-service,,,,, +DocuSign API,https://developers.docusign.com/docs/esign-rest-api/,https://www.docusign.com/privacy,https://developers.docusign.com/changelog,https://www.docusign.com/trust/security,https://support.docusign.com/community,, +RingCentral API,https://developers.ringcentral.com/guide,https://www.ringcentral.com/legal/privacy-notice.html,https://developers.ringcentral.com/guide/rate-limits,https://developers.ringcentral.com/changelog,https://community.ringcentral.com/,, +Zoom Video API,https://developers.zoom.us/docs,https://www.zoom.com/en/trust/privacy/privacy-statement/,https://www.zoom.com/en/trust/terms/,https://www.zoom.com/en/trust/security/,https://devforum.zoom.us/,, +OpenWeatherMap One Call API,https://openweathermap.org/api/one-call-api,https://openweather.co.uk/privacy-policy,https://openweather.co.uk/api/files/file/Openweather_website_terms_and_conditions_of_use.pdf,https://openweathermap.org/api/one-call-api#limits,,, +Slack Workflow Builder API,https://docs.slack.dev/workflows/,https://docs.slack.dev/workflows/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox Chooser API,https://www.dropbox.com/developers/chooser,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en, +Zendesk Mobile SDK API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Slack Message Events API,https://docs.slack.dev/apis/events-api/,https://docs.slack.dev/apis/events-api/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox Collaboration API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Google Vision API,https://docs.cloud.google.com/vision/docs,https://policies.google.com/privacy,https://cloud.google.com/terms,https://docs.cloud.google.com/vision/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-vision-api-discuss, +Firebase Authentication API,https://firebase.google.com/docs/auth?hl=vi,https://policies.google.com/privacy,https://firebase.google.com/terms,https://firebase.google.com/docs/auth/limits,https://firebase.google.com/support?hl=ko,https://firebase.google.com/support/privacy,https://groups.google.com/g/firebase-talk +Intercom Conversations API,https://developers.intercom.com/docs/references/introduction,https://www.intercom.com/legal/privacy,https://www.intercom.com/legal/terms-and-policies,https://www.intercom.com/security,https://community.intercom.com/,, +Shopify Storefront API,https://shopify.dev/docs/api/storefront/latest,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/, +Bitbucket Pipelines API,https://developer.atlassian.com/cloud/bitbucket/?utm_source=%2Fbitbucket%2Fapi%2F2%2Freference%2Fpipelines&utm_medium=302,https://www.atlassian.com/legal/privacy-policy,https://www.atlassian.com/legal/atlassian-customer-agreement,https://developer.atlassian.com/cloud/bitbucket/?utm_source=%2Fbitbucket%2Fapi%2F2%2Freference%2Frate-limits&utm_medium=302,https://developer.atlassian.com/cloud/bitbucket/changelog,https://www.atlassian.com/trust/data-protection,https://community.atlassian.com/forums/Bitbucket/ct-p/bitbucket +Okta API,https://developer.okta.com/,https://www.okta.com/legal/privacy-policy/,https://www.okta.com/legal/,https://developer.okta.com/docs/release-notes/,https://trust.okta.com/,https://support.okta.com/help/s/community?language=en_US, +MongoDB Atlas API,https://www.mongodb.com/docs/atlas/api/,https://www.mongodb.com/legal/privacy/privacy-policy,https://www.mongodb.com/docs/atlas/release-notes/,https://www.mongodb.com/community/forums/,,, +Amazon Lex API,https://docs.aws.amazon.com/lex/latest/dg/API_Reference.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/lex/latest/dg/limits.html,https://docs.aws.amazon.com/lex/latest/dg/release-notes.html,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Outlook API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=W4uWdy1RJ19lG9lJRXaCdcEAk_cL87J9O4sIhl9HIGxAm1f-w-0XGUKj10ZbLc4jMWOKt7FHhi5liUOYBTIC-SbP2giPwXv7sF4oc_9zavhglu8A3n8LECT-G8r5QLoplpZuB3khomkZc8B9nHDHBiqbWDrchDVvrFYaO5kZG4k&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookDeveloper,,, +Zendesk Explore API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Twilio Proxy API,https://www.twilio.com/docs/proxy,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +AWS Elastic Load Balancing API,https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/,https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/,https://aws.amazon.com/security/,https://repost.aws/ +Google Cloud Spanner API,https://docs.cloud.google.com/spanner/docs?hl=id,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/spanner/quotas,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-spanner-api, +Microsoft Graph Bookings API,https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=n6Eng-_d_GM2InaREQ0Zkn_7wNq6l8IBGIzmHYB23RAeRFvBOobd5xvGhnDTBGqmUxKg0KQIcDAimTYMoUvMBJ3zPzGlT4eh6jCXfMORn_dyBYF3bRTRzWF8HaE8yD9RIXA0BSV8aW78UMvFnibYOlMwBSibvOM2bIk-yZlnfaM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FBookingsAPI,, +Dropbox App Folder API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +HubSpot Feedback Surveys API,https://developers.hubspot.com/docs/api/feedback-surveys,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Chat Conversations API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Invoices API,https://docs.stripe.com/api/invoices,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Channel Sections API,https://developers.google.com/youtube/v3/docs/channelSections?hl=id,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +AWS ECS API,https://docs.aws.amazon.com/AmazonECS/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html,https://docs.aws.amazon.com/AmazonECS/latest/developerguide/,https://aws.amazon.com/security/,https://repost.aws/ +Slack API Permissions API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, +Twilio Lookup API,https://www.twilio.com/docs/lookup,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/docs/lookup#rate-limits,https://www.twilio.com/en-us/changelog,, +Stripe Charges API,https://docs.stripe.com/api/charges,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Livestreaming API,https://developers.google.com/youtube/v3/live/getting-started?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +AWS App Runner API,https://docs.aws.amazon.com/apprunner/latest/api/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://aws.amazon.com/security/,https://repost.aws/,, +Google Cloud Speech-to-Text API,https://docs.cloud.google.com/speech-to-text/docs?hl=es-419,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/speech-to-text/docs/v1/quotas,https://cloud.google.com/speech-to-text/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-speech-to-text +Microsoft Graph Device Management API,https://learn.microsoft.com/en-us/graph/api/resources/device?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=DTid1B__UHheVVpJgLvs2rIAaSFGwwhihmSKHXZJvFbPYS_79TAxN2g0vvlP9HNajOEjjCBugo2kcOLt3gr8QLyWVQmVy5ZEcFu8ERVaXq_u0MDBFE_u5fDLXIU_Jgr_2ok5sGfsorKDofMrk5c4PiJU1nGhDVs8N-Iwa_YJFIw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDeviceManagement,, +Zendesk NPS API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Salesforce API,https://developer.salesforce.com/docs,https://www.salesforce.com/company/legal/privacy/?bc=HL,https://www.salesforce.com/company/legal/?bc=HL,https://security.salesforce.com/,https://trailhead.salesforce.com/trailblazer-community/feed,, +Discord API,https://docs.discord.com/developers/intro,https://discord.com/privacy,https://discord.com/terms,https://docs.discord.com/developers/topics/rate-limits,https://docs.discord.com/developers/change-log,https://discord.com/security,https://discord.com/developers/community +Microsoft Azure API,https://learn.microsoft.com/en-us/azure/developer/,https://www.microsoft.com/en-us/privacy/privacystatement,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=rPYOxdILNGwP_nvfLLJS1XSyL-rMuyEVDVMnB2w9wnhcRG5YETcu1KRWybnfgImAfrtKY3YnmQWWzyw_LXqRi5xIgmqDgCWfBQI3b0upF4QqzHOFzGJ5u8GMCelLqw03N4FTZ5q97ghEM7sDKyakdedOheyMW6pcIlx2zaTHpEo&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureDeveloper,,,, +Microsoft Graph Drive API,https://learn.microsoft.com/en-us/graph/api/resources/drive?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=WhIYCTe2qUkMqn3vheoxSPlcbtV-PawqSoTMWP-XlLcl6ummOWVxvA2dBCImRgDn30AKhCIJwgUlfXRBUT9qqHy7GkDMmY63XEvKRDgu4HPm2u7hutQ84DiKURgXXmsU0mltyJTzzjtWDvuLRAIGdQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDrive,, +Slack Search API,https://docs.slack.dev/reference/methods/search.all/,https://docs.slack.dev/reference/methods/search.all/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox Thumbnails API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +HubSpot CRM Timeline API,https://developers.hubspot.com/docs/api/crm-timeline,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Activities API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Payment Links API,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/, +YouTube Super Chat API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, +Slack Workflows API,https://docs.slack.dev/workflows/,https://docs.slack.dev/workflows/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Twilio Autopilot API,https://www.twilio.com/docs,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +HubSpot Calendar API,https://developers.hubspot.com/docs/api/calendar,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +AWS Simple Queue Service (SQS) API,https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/,https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-release-notes.html,https://aws.amazon.com/security/,https://repost.aws/ +Google Cloud Monitoring API,https://docs.cloud.google.com/monitoring/api/v3,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/monitoring/quotas?hl=es-419,https://docs.cloud.google.com/monitoring/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-monitoring-api +Slack Admin Audit API,https://api.slack.com/admin/audit-logs,https://api.slack.com/admin/audit-logs#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +HubSpot Tickets API,https://developers.hubspot.com/docs/api/tickets,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Ticketing API,https://developer.zendesk.com/documentation/ticketing/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,, +Google Cloud AutoML API,https://docs.cloud.google.com/gemini-enterprise-agent-platform,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/automl-api,, +Zendesk Suspended Tickets API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +YouTube Search API,https://developers.google.com/youtube/v3/docs/search?hl=es-419,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +AWS Config API,https://docs.aws.amazon.com/config/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/config/latest/APIReference/,https://docs.aws.amazon.com/config/latest/developerguide/,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Graph Directory API,https://learn.microsoft.com/en-us/graph/api/resources/directory?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=eRLbTLwJ3I77DFvxxyZA4GB5IxfXUfpvzAdK3DRNvyNnvOOneKwvf3RDkRm4_DmlxujoVWUlV9oKdJgNlMJ4PyvRLQQ2nES6Xi1wfON_z-d2_sFfiSKzSfKqfa-apSW7zfLUeI2QOKqlDemEuN9MxOe9DszxdbKw74BpMe4wd5s&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDirectory,, +Slack Admin Analytics API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, +Dropbox Spaces API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio Wireless API,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,,, +HubSpot Owners API,https://developers.hubspot.com/docs/api-reference/legacy/crm/owners/guide,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Web Widget API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Microsoft Graph Notes API,https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote,, +Slack API Testing API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, +HubSpot Workflows API,https://developers.hubspot.com/docs/api/workflows,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Email API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Google Cloud Run API,https://docs.cloud.google.com/run/docs,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/run/quotas,https://docs.cloud.google.com/run/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-run-api +AWS Translate API,https://docs.aws.amazon.com/translate/latest/dg/what-is.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/translate/latest/dg/,https://docs.aws.amazon.com/translate/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ +Google Firebase Cloud Messaging API,https://firebase.google.com/docs/cloud-messaging,https://policies.google.com/privacy,https://firebase.google.com/terms/,https://firebase.google.com/support?hl=ko,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-cloud-messaging, +HubSpot Task Queues API,https://developers.hubspot.com/docs/api/tasks/queues,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Stripe Bank Accounts API,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/, +YouTube Comment Threads API,https://developers.google.com/youtube/v3/docs/commentThreads,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +AWS DynamoDB API,https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ServiceQuotas.html,https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ServiceQuotas.html#release-notes,https://aws.amazon.com/security/,https://repost.aws/ +Slack Pins API,https://docs.slack.dev/reference/methods/pins.add/,https://docs.slack.dev/reference/methods/pins.add/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Zendesk Reporting API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Google Firebase Realtime Database API,https://firebase.google.com/docs/database,https://policies.google.com/privacy,https://firebase.google.com/terms/,https://firebase.google.com/support?hl=ko,https://firebase.google.com/support/privacy,https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-realtime-database, +Slack Messages API,https://docs.slack.dev/messaging/,https://docs.slack.dev/messaging/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Zendesk App Framework API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Discounts API,https://docs.stripe.com/api/discounts,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Playlist Items API,https://developers.google.com/youtube/v3/docs/playlistItems?hl=fr,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +AWS IAM Identity Center API,https://docs.aws.amazon.com/singlesignon/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://aws.amazon.com/security/,https://repost.aws/,, +Microsoft Graph Messages API,https://learn.microsoft.com/en-us/graph/api/resources/message?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=Cs5q0H2HwBYrOQJy4A-6pVScGk-6VS0GZgfUcMo9GsLiwgbQs5Eto_tqJCZa57QNuovIQzWZuWSL61TYED5GnUdpCd2wOiRy6bkzujXPFXyns9Ox1tkVfSWa5Fp-EiVDCxEbjvor9z00HCdfYYqI3sJQR_B09m7TbfuE8lQ4Vnc&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FMessages,, +Dropbox Authentication API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio API for WhatsApp,https://www.twilio.com/docs/whatsapp,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Zendesk Permissions API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Google Cloud Bigtable API,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/bigtable/quotas,https://docs.cloud.google.com/bigtable/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-bigtable-api, +Twilio Call Feedback API,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,,, +Zendesk Integration API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +YouTube Playlist API,https://developers.google.com/youtube/v3/docs/playlists,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +Figma API,https://developers.figma.com/docs/rest-api/,https://www.figma.com/legal/privacy/,https://www.figma.com/developers/api-rate-limits,https://www.figma.com/developers/changelog,https://www.figma.com/security,https://forum.figma.com, +Cloudflare API,https://developers.cloudflare.com,https://www.cloudflare.com/privacypolicy,https://www.cloudflare.com/terms,https://www.cloudflare.com/cybersecurity/,https://community.cloudflare.com,, +eBay API,https://developer.ebay.com/docs,https://developer.ebay.com/api-docs/static/rate-limits.html,https://developer.ebay.com/api-docs/static/release-notes.html,https://community.ebay.com,,, +Mailchimp API,https://mailchimp.com/developer,https://www.intuit.com/privacy/statement/,https://mailchimp.com/legal/terms,https://mailchimp.com/developer/,https://mailchimp.com/developer/release-notes,https://mailchimp.com/about/security,https://mailchimp.com/developer/ +Twitch API,https://dev.twitch.tv/docs,https://legal.twitch.com/legal/privacy-policy,https://legal.twitch.com/legal/terms-of-service,https://dev.twitch.tv/docs/api/guide/#rate-limits,https://dev.twitch.tv/docs/change-log,https://www.twitch.tv/p/security,https://discuss.dev.twitch.com/ +Google AdSense API,https://developers.google.com/adsense/management/,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-adsense-api,, +AWS Simple Notification Service (SNS) API,https://docs.aws.amazon.com/sns/latest/api/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/sns/latest/dg/,https://docs.aws.amazon.com/sns/latest/dg/sns-release-notes.html,https://aws.amazon.com/security/,https://repost.aws/ +Slack Audit Logs API,https://api.slack.com/admin/audit-logs,https://api.slack.com/admin/audit-logs#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Zendesk Ticket Fields API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Google Analytics Reporting API,https://developers.google.com/analytics/legacy/universal-analytics?hl=fa,https://policies.google.com/privacy,https://developers.google.com/analytics/terms/provisioning/en?hl=hi,https://developers.google.com/analytics/legacy/universal-analytics?hl=bn,https://developers.google.com/analytics/legacy/universal-analytics?hl=zh-cn,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/analytics-api +YouTube Data API v3,https://developers.google.com/youtube/v3,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://cloud.google.com/security,https://groups.google.com/g/youtube-api +SendGrid Email API,https://www.twilio.com/docs/sendgrid,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/docs/sendgrid/for-developers,, +Azure Blob Storage API,https://learn.microsoft.com/en-us/azure/storage/blobs/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=U_P5gT2XW39BQ6O8XZzh7kJsBEbfzCmJZfbwi_CoWS0Eo5sTduR4DvTqviM7Lw3up5kCZ2-v4-lacz7IpnHXJJq-37C7Rv_jfetZYADA-7jjYY9vxUvCjn40y_qnW1hbx2rx32K3-FLnf_E-Y7belEzS-RzpzaC-Hau--s3PDiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureStorage,,, +Intercom Lead API,https://developers.intercom.com/docs/references/introduction,https://www.intercom.com/legal/privacy,https://www.intercom.com/legal/terms-and-policies,https://www.intercom.com/security,https://community.intercom.com/,, +Shopify Inventory API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/,, +Trello Cards API,https://developer.atlassian.com/cloud/trello/rest/api-group-cards/,https://www.atlassian.com/legal/privacy-policy,https://www.atlassian.com/legal/atlassian-customer-agreement,https://developer.atlassian.com/cloud/trello/guides/rest-api/rate-limits,https://developer.atlassian.com/cloud/trello/changelog,https://trello.com/security,https://community.atlassian.com/forums/Trello/ct-p/trello +AWS Elastic Transcoder API,https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/what-is.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/limits.html,https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/whats-new.html,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Dynamics API,https://learn.microsoft.com/en-us/dynamics365/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://community.dynamics.com/,,, +Slack RTM API,https://docs.slack.dev/legacy/legacy-rtm-api/,https://docs.slack.dev/legacy/legacy-rtm-api/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Slack Analytics API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, +Dropbox Discovery API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +HubSpot E-commerce API,https://developers.hubspot.com/docs/api/ecommerce,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk SLA Breaches API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Tax Rates API,https://docs.stripe.com/api/tax_rates,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Notifications API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, +AWS Identity and Access Management (IAM) API,https://docs.aws.amazon.com/IAM/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html,https://docs.aws.amazon.com/IAM/latest/UserGuide/,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Graph User API,https://learn.microsoft.com/en-us/graph/api/resources/user?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=90qNwhmKFR98VL6RWt6ZI2eVEt655YJECxnKUl3avLhtoHHpaspMcCbozrUIvkJ6qLulvvhDlVtjue5mp7As-byJ9ZK1MEB_ySJnO8BYilslPA4zvFJKA1FosFOSzcKcCcrSQ8D-hhYHQ2ifSBMFuw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FUser,, +Slack OAuth API,https://docs.slack.dev/authentication/,https://docs.slack.dev/authentication/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Dropbox Audit Logs API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Zendesk Customer Satisfaction API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Twilio Call Insights API,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,,, +Dropbox Admin API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Zendesk Webhooks API,https://developer.zendesk.com/documentation/webhooks/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,, +Microsoft OneNote API,https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote,, +Zendesk Users API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Microsoft Azure Speech Service API,https://learn.microsoft.com/en-us/azure/ai-services/speech-service/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices,,, +Zendesk Talk API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +YouTube Channel API,https://developers.google.com/youtube/v3/docs/channels?hl=fr,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +PayPal Orders API,https://developer.paypal.com/api/orders/v2,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://developer.paypal.com/docs/api/terms-of-service,https://developer.paypal.com/docs/api/limits,https://developer.paypal.com/docs/api/changelog,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/ +AWS S3 API,https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonS3/latest/userguide/optimizing-performance.html#optimizing-performance-rate-limit,https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html#release_notes,https://aws.amazon.com/security/,https://repost.aws/ +Twilio SMS API,https://www.twilio.com/docs/messaging,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Dropbox Files API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +OpenAI DALL-E API,https://developers.openai.com/api/docs/guides/images-vision,https://openai.com/policies/privacy-policy/,https://openai.com/policies/terms-of-use/,https://platform.openai.com/docs/guides/images/rate-limits,https://platform.openai.com/docs/release-notes,https://openai.com/security-and-privacy/,https://community.openai.com/ +Azure Machine Learning API,https://learn.microsoft.com/en-us/azure/machine-learning/?view=azureml-api-2,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=zROw5wHr3lmISbg6g36HwY-keOIjuN3WcImyANj04T07XoKgNJoWmbythyoTptCaooz5Z-Ccr_R8ww6yUtPbwomO4WUeH6NF4X5lnaEWUxenrR7uBiAPKwTIRNqUkoV1EZ_O52JmKFgUC-FmnGR21IHT8q-xMyXthFwXY9z3nS4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureMachineLearning,,, +Adobe Creative Cloud API,https://developer.adobe.com/creative-cloud/,,,,,, +GitHub Actions API,https://docs.github.com/en/rest/actions,https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement,https://docs.github.com/en/site-policy/github-terms/github-terms-of-service,https://docs.github.com/en/rest/using-the-rest-api/getting-started-with-the-rest-api,https://github.blog/changelog/,https://github.com/security,https://github.com/orgs/community/discussions/ +Shopify Discounts API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/,, +Figma File API,https://developers.figma.com/docs/rest-api/,https://www.figma.com/legal/privacy/,https://www.figma.com/developers/api/rate-limits,https://www.figma.com/developers/changelog,https://www.figma.com/security,https://forum.figma.com/, +MongoDB Realm API,https://www.mongodb.com/legal/privacy/privacy-policy,https://www.mongodb.com/company/contact/mongodb-vulnerability-disclosure-policy,https://www.mongodb.com/community,,,, +OpenAI GPT API,https://developers.openai.com/api/docs,https://openai.com/policies/privacy-policy/,https://openai.com/policies/terms-of-use/,https://developers.openai.com/api/docs/guides/rate-limits,https://platform.openai.com/docs/release-notes,https://openai.com/security-and-privacy/,https://community.openai.com/ +Dropbox File Metadata API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Microsoft Azure Key Vault API,https://learn.microsoft.com/en-us/azure/key-vault/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=ZiUGw1Odf4aFfXyPOPzZCHl1O8_PBRUyFBRAqMVHRFuNNMhDSb59uUSNRhOKw7kgMI3W5lMX7v4m0r3CjvVbA2Wvq8m3cGza8MZqZYrCFxeNx0E1qGgs4fcAXyhqD1Fp8PHGh63FsGfhd4NJeKqdHdPnvleqmVVOIyF0ZxrfJUI&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureKeyVault,,, +Slack API (General),https://docs.slack.dev/,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Google Cloud BigQuery API,https://docs.cloud.google.com/bigquery/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/bigquery/quotas,https://cloud.google.com/bigquery/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-bigquery +YouTube Content ID API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-partner-api,,, +Dropbox Data Loss Prevention API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Zendesk Metrics API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +YouTube Content Owners API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api,,, +AWS App Mesh API,https://docs.aws.amazon.com/app-mesh/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/app-mesh/latest/userguide/,https://docs.aws.amazon.com/app-mesh/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Graph Teamwork API,https://learn.microsoft.com/en-us/graph/api/resources/teamwork?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=d3aTO6UGEiexyOD3fkeKfNxcOYXuff0Xb-wVIub1jQuwXs902HC2VyM-933PJaiDIkY6XBxNPt3-_h2WiO6l_dgqqxCF7D_HNOnnT-YYJhleMAgLFnggUSw_YiizF3Gokh9qkbGhuDVcgeOvMlTOYTHP7hGxa0R1iH4Ql7ZysFk&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FTeamwork,, +Slack User API,https://docs.slack.dev/reference/methods/users.list/,https://docs.slack.dev/reference/methods/users.list/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Zendesk Custom Fields API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Customers API,https://docs.stripe.com/api/customers,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +Xero API,https://developer.xero.com/documentation/getting-started-guide/,https://www.xero.com/au/legal/privacy/,https://www.xero.com/au/legal/terms/,https://developer.xero.com/changelog,,, +GitHub GraphQL API,https://docs.github.com/en/graphql,https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement,https://docs.github.com/en/site-policy/github-terms/github-terms-of-service,https://docs.github.com/en/graphql/overview/rate-limits-and-query-limits-for-the-graphql-api,https://github.blog/changelog/,https://github.com/security,https://github.com/orgs/community/discussions/ +Google Maps Places API,https://developers.google.com/maps/documentation/places/web-service?hl=zh-tw,https://policies.google.com/privacy,https://cloud.google.com/maps-platform/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-maps-api,, +Slack Bot API,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,, +AWS CloudWatch API,https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_limits.html,https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/,https://aws.amazon.com/security/,https://repost.aws/ +HubSpot Contact Properties API,https://developers.hubspot.com/docs/api/contact-properties,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +YouTube Data v3 API,https://developers.google.com/youtube/v3,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started#quota,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +Microsoft Graph Identity API,https://learn.microsoft.com/en-us/graph/api/resources/identity?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=tQSeWcrYantrCh-3DazJ-Qrs7zgUCL4gPraOHkMrXV9nLJxokK_d22YM5gZ3uduWQYIkLPVxAYZvbd-W9MI_UHy0aKmgcQKBRBLzsltrOJZ6ZB_EYVH-G6PAvuxYY9LqObCamB3Ytrf4zLX7CxAUI9IBPOr4gsmohaNIa8Q_B-w&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FIdentity,, +Slack Scopes API,https://docs.slack.dev/reference/scopes/,https://docs.slack.dev/reference/scopes/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +HubSpot Tasks API,https://developers.hubspot.com/docs/api/tasks,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +Zendesk Insights API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Stripe Payments API,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/, +Google Cloud Tasks API,https://docs.cloud.google.com/tasks/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-tasks-api,, +Google Maps Geolocation API,https://developers.google.com/maps/documentation/geolocation/overview?hl=hi,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/geolocation/usage-and-billing?hl=es-419,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api-geolocation, +Slack Status API,https://docs.slack.dev/reference/methods/users.getPresence/,https://docs.slack.dev/reference/methods/users.getPresence/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Microsoft Graph Teams API,https://learn.microsoft.com/en-us/graph/api/resources/teams-api-overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=8MRaro1axFVPLv-5Jw7hsabra579tmzGn2McuMYY8p6krWq5v85WyJhQDQs301KpZwMpEuPq2y8KA_70w5zH7JE1E_QNA-qO_HSjSINYxL7dcr_P6Wqk8bh9RsStJz4YJ8O--gsQxhW45zkhlv1MBQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FTeams,, +HubSpot Email Marketing API,https://developers.hubspot.com/docs/api/email-marketing,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ +YouTube Data Insights API,https://developers.google.com/youtube/analytics,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/reporting?hl=id,https://developers.google.com/youtube/reporting,https://support.google.com/youtube/answer/2801895,https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-analytics +Trello Webhooks API,https://developer.atlassian.com/cloud/trello/rest/api-group-webhooks/,https://www.atlassian.com/legal/privacy-policy,https://www.atlassian.com/legal/atlassian-customer-agreement,https://developer.atlassian.com/cloud/trello/guides/rest-api/rate-limits,https://developer.atlassian.com/cloud/trello/changelog,https://trello.com/security,https://community.atlassian.com/forums/Trello/ct-p/trello +Azure DevOps API,https://learn.microsoft.com/en-us/rest/api/azure/devops/?view=azure-devops-rest-7.2,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=Cgaoc2ik8LTspiHuGZeeQSl4YBnS1jv8nPujNaXjD1ZqICxMo_UHgKScVQGMbo_jmAGze3tWjlpO3GP0q4xuMpbmUzW5yBCuY_xyq2BsqlTK0_JGB6uvbzA_VEnOKjv-tBN3wLkp-nSf02ueHDtE4rNPYsqmHj5S0JjOxt_UIJM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureDevOps,,, +GitHub Checks API,https://docs.github.com/en/rest/checks,https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement,https://docs.github.com/en/site-policy/github-terms/github-terms-of-service,https://docs.github.com/en/rest/using-the-rest-api/getting-started-with-the-rest-api,https://github.blog/changelog/,https://github.com/security,https://github.com/orgs/community/discussions/ +Spotify Follow API,https://developer.spotify.com/documentation/web-api/reference/#category-follow,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-api/#rate-limiting,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/, +Spotify API,https://developer.spotify.com/documentation/web-api/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-api/#rate-limiting,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/, +Amazon Kinesis API,https://docs.aws.amazon.com/kinesis/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/streams/latest/dev/service-sizes-and-limits.html,https://docs.aws.amazon.com/kinesis/latest/APIReference/Welcome.html#release_notes,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Azure Bot Service API,https://learn.microsoft.com/en-us/azure/bot-service/?view=azure-bot-service-4.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JR0rIU5PpefkLwJmdBjteOAy3YJ0DmKB9DLuCjwuAmHrn-HI_vlxwUQfQs5P1frDbeBOUAy0y_3nY3OVz33DZHR5EaaEQaFGaM1VGLq4naYMpyLDCIpo3GY1XpkYPCO7uWIwADpq1DpD9IO6LbKeHEIVop0hOiYyWgC-fAhT8JE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FBotFramework,,, +YouTube Live API,https://developers.google.com/youtube/v3/live/getting-started?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api,, +Microsoft Graph To-Do API,https://learn.microsoft.com/en-us/graph/api/resources/todo-overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=eA5z9uH5wD78dGoyLIBbKp_MkAwag9X4HJEMPZuCaYEg68YdTTE9LFFfvuos8pvSuWcJQaPQtcQcwYY7ez4KAGSIPDuPx0MwBVy3bdsHHPYojLMlxr21Cot-45ApAfbaGhR4N2Vw-oae22aCL8bcHA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FToDo,, +Twilio Email API,https://www.twilio.com/docs/sendgrid,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Microsoft Graph Calendar Events API,https://learn.microsoft.com/en-us/graph/api/resources/event?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=2JHWBkEFTQl7qFFT4QORVaL3WsuG8uakeO2q4DXhhl4tmPE3Py9AwG31nOJFLQAzcG3h0bhXMAzRJXnQj2_E1SGMjtdbD_7zonGs9fh4cAODRvtXtBv4mL4pPAXugdPyOPshWu0aXU5mVgklHudZXY7t3_qJ0N7Or93NwZ_3oiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FCalendarEvents,, +Zendesk SLA Policies API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, diff --git a/datasets/link-health-history.csv b/datasets/link-health-history.csv new file mode 100644 index 0000000..fb0fe28 --- /dev/null +++ b/datasets/link-health-history.csv @@ -0,0 +1,8 @@ +date,column,checked,ok,moved,dead,blocked,error,other,llms_txt_hosts,llms_txt_serving,rows_complete,rows_total +2026-08-27,Official_Documentation_URL,176,67,76,29,1,0,3,164,74,176,562 +2026-08-27,Privacy Policy,176,130,44,0,1,0,1,164,74,176,562 +2026-08-27,Terms of Service,176,101,71,1,1,0,2,164,74,176,562 +2026-08-27,Rate Limiting Policy,176,52,117,4,1,0,2,164,74,176,562 +2026-08-27,Release Notes,176,62,96,15,1,0,2,164,74,176,562 +2026-08-27,Security Policy,176,135,38,0,1,0,2,164,74,176,562 +2026-08-27,Developer Community/Forum,176,100,72,0,1,1,2,164,74,176,562 diff --git a/datasets/link-health.json b/datasets/link-health.json new file mode 100644 index 0000000..f4d500b --- /dev/null +++ b/datasets/link-health.json @@ -0,0 +1,15316 @@ +{ + "generatedAt": "2026-08-27T08:14:45.527Z", + "csv": "api-docs-urls.csv", + "rows": 562, + "columns": [ + "Official_Documentation_URL", + "Privacy Policy", + "Terms of Service", + "Rate Limiting Policy", + "Release Notes", + "Security Policy", + "Developer Community/Forum" + ], + "distinctUrls": 959, + "alignment": { + "rowsComplete": 176, + "rowsIncomplete": 386, + "shareComplete": 0.3132, + "fieldCountHistogram": { + "2": 3, + "3": 8, + "4": 68, + "5": 73, + "6": 161, + "7": 73, + "8": 176 + }, + "documentationCellLooksLikeAnotherColumn": 189, + "shiftedExamples": [ + { + "api": "Microsoft Graph People API", + "looksLike": "Privacy Policy" + }, + { + "api": "Slack Interactivity API", + "looksLike": "Developer Community/Forum" + }, + { + "api": "Dropbox File Request API", + "looksLike": "Privacy Policy" + }, + { + "api": "Zendesk Support API", + "looksLike": "Privacy Policy" + }, + { + "api": "Google Places API", + "looksLike": "Privacy Policy" + }, + { + "api": "Slack App Directory API", + "looksLike": "Developer Community/Forum" + }, + { + "api": "Dropbox API Explorer", + "looksLike": "Privacy Policy" + }, + { + "api": "Zendesk Guide API", + "looksLike": "Privacy Policy" + }, + { + "api": "Microsoft Graph Notifications API", + "looksLike": "Privacy Policy" + }, + { + "api": "Slack Usergroups API", + "looksLike": "Developer Community/Forum" + }, + { + "api": "Zendesk SLA API", + "looksLike": "Privacy Policy" + }, + { + "api": "Uber API", + "looksLike": "Privacy Policy" + }, + { + "api": "Slack Files API", + "looksLike": "Developer Community/Forum" + }, + { + "api": "Twilio Media Streams API", + "looksLike": "Privacy Policy" + }, + { + "api": "Dropbox Transfer API", + "looksLike": "Privacy Policy" + }, + { + "api": "Zendesk Search API", + "looksLike": "Privacy Policy" + }, + { + "api": "Shopify Bulk Operations API", + "looksLike": "Privacy Policy" + }, + { + "api": "Slack SCIM API", + "looksLike": "Developer Community/Forum" + }, + { + "api": "Slack Shortcuts API", + "looksLike": "Release Notes" + }, + { + "api": "Dropbox Team API", + "looksLike": "Privacy Policy" + }, + { + "api": "Zendesk Messaging API", + "looksLike": "Privacy Policy" + }, + { + "api": "Microsoft Graph Tasks API", + "looksLike": "Privacy Policy" + }, + { + "api": "Slack Channels API", + "looksLike": "Developer Community/Forum" + }, + { + "api": "Dropbox File Requests API", + "looksLike": "Privacy Policy" + }, + { + "api": "YouTube Live Broadcasts API", + "looksLike": "Privacy Policy" + } + ], + "note": "Per-column statistics cover structurally complete rows only. Incomplete rows omit fields rather than blanking them, so their columns are shifted and cannot be attributed to a named column." + }, + "totals": { + "checked": 1232, + "ok": 647, + "moved": 514, + "dead": 49, + "blocked": 7, + "error": 1, + "other": 14 + }, + "byColumn": { + "Official_Documentation_URL": { + "checked": 176, + "ok": 67, + "moved": 76, + "dead": 29, + "blocked": 1, + "error": 0, + "other": 3 + }, + "Privacy Policy": { + "checked": 176, + "ok": 130, + "moved": 44, + "dead": 0, + "blocked": 1, + "error": 0, + "other": 1 + }, + "Terms of Service": { + "checked": 176, + "ok": 101, + "moved": 71, + "dead": 1, + "blocked": 1, + "error": 0, + "other": 2 + }, + "Rate Limiting Policy": { + "checked": 176, + "ok": 52, + "moved": 117, + "dead": 4, + "blocked": 1, + "error": 0, + "other": 2 + }, + "Release Notes": { + "checked": 176, + "ok": 62, + "moved": 96, + "dead": 15, + "blocked": 1, + "error": 0, + "other": 2 + }, + "Security Policy": { + "checked": 176, + "ok": 135, + "moved": 38, + "dead": 0, + "blocked": 1, + "error": 0, + "other": 2 + }, + "Developer Community/Forum": { + "checked": 176, + "ok": 100, + "moved": 72, + "dead": 0, + "blocked": 1, + "error": 1, + "other": 2 + } + }, + "llmsTxt": { + "hostsProbed": 164, + "hostsServing": 74, + "share": 0.4512, + "byHost": { + "docs.aws.amazon.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "aws.amazon.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "learn.microsoft.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "techcommunity.microsoft.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "developers.google.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "groups.google.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "api.slack.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "platform.openai.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "forums.aws.amazon.com": { + "status": 200, + "serves": true, + "outcome": "moved" + }, + "community.openai.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "slack.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "www.dropbox.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "www.zendesk.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "policies.google.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "privacy.microsoft.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "openai.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "slackcommunity.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "stripe.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "support.stripe.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "devcenter.heroku.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "www.heroku.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "support.zendesk.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "adobedocs.github.io": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "community.hubspot.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "cloud.google.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.whatsapp.com": { + "status": 400, + "serves": false, + "outcome": "other" + }, + "developers.facebook.com": { + "status": 400, + "serves": false, + "outcome": "other" + }, + "docs.microsoft.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.dropboxforum.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.box.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "developer.box.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "developers.hubspot.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.linkedin.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.uber.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.yelp.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "legal.hubspot.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.eventbrite.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "developer.intuit.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "firebase.google.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.twilio.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "community.box.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.zillow.com": { + "status": 403, + "serves": false, + "outcome": "blocked" + }, + "developer.zendesk.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "developer.twitter.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "policy.pinterest.com": { + "status": 403, + "serves": false, + "outcome": "blocked" + }, + "www.shopify.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "www.paypal.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "developer.paypal.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "twitter.com": { + "status": 200, + "serves": true, + "outcome": "moved" + }, + "developers.pinterest.com": { + "status": 500, + "serves": false, + "outcome": "other" + }, + "sendgrid.com": { + "status": 200, + "serves": true, + "outcome": "moved" + }, + "community.shopify.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "www.ibm.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "community.ibm.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "shopify.dev": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.microsoft.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "help.twitter.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.facebook.com": { + "status": 400, + "serves": false, + "outcome": "other" + }, + "twittercommunity.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "security.microsoft.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "docs.sendgrid.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "developer.zoominfo.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "cloud.ibm.com": { + "status": 200, + "serves": true, + "outcome": "moved" + }, + "www.wix.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "developers.asana.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "trello.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "community.atlassian.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "support.google.com": { + "status": 200, + "serves": true, + "outcome": "moved" + }, + "developer.atlassian.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "community.pinterest.com": { + "status": 200, + "serves": true, + "outcome": "moved" + }, + "forum.asana.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "plaid.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "developers.intercom.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "developer.payoneer.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "www.intercom.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "www.zoominfo.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "www.reddit.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "advertising.amazon.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.youtube.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "docs.github.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "github.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "core.telegram.org": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "asana.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "github.blog": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "community.intercom.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "telegram.org": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "help.instagram.com": { + "status": 400, + "serves": false, + "outcome": "other" + }, + "developer.calendly.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "calendly.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "developers.notion.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "developers.tiktok.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.notion.so": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "github.community": { + "status": 200, + "serves": true, + "outcome": "moved" + }, + "community.telegram.org": { + "status": 200, + "serves": true, + "outcome": "moved" + }, + "policy.medium.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "privacycenter.instagram.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.redditinc.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "developers.medium.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "developers.etsy.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.tiktok.com": { + "status": 200, + "serves": true, + "outcome": "moved" + }, + "developer.airbnb.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.etsy.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.airbnb.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "security.medium.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "community.etsy.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "marketplace.zoom.us": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "dev.twitch.tv": { + "status": 403, + "serves": false, + "outcome": "blocked" + }, + "foursquare.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.twitch.tv": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "sendbird.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "community.airbnb.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "discuss.dev.twitch.tv": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.klarna.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "help.netflix.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "netflixtechblog.com": { + "status": 200, + "serves": true, + "outcome": "moved" + }, + "community.adobe.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "devforum.zoom.us": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "about.gitlab.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "developer.spotify.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "www.atlassian.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "secure.adobesign.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.spotify.com": { + "status": 200, + "serves": true, + "outcome": "moved" + }, + "docs.gitlab.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "community.sendbird.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "app.hellosign.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.hellosign.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "cloudinary.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "www.bitly.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "explore.zoom.us": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "community.cloudinary.com": { + "status": 200, + "serves": true, + "outcome": "moved" + }, + "forum.gitlab.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.ringcentral.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "community.dynamics.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "bitbucket.org": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.okta.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "developers.ringcentral.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "community.ringcentral.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "developer.salesforce.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "developers.zoom.us": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "developer.okta.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.salesforce.com": { + "status": 200, + "serves": true, + "outcome": "moved" + }, + "support.okta.com": { + "status": 401, + "serves": false, + "outcome": "blocked" + }, + "www.docusign.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "developers.docusign.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "developers.cloudflare.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "support.docusign.com": { + "status": 200, + "serves": true, + "outcome": "moved" + }, + "www.cloudflare.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "discord.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "openweathermap.org": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "security.salesforce.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "developer.ebay.com": { + "status": 403, + "serves": false, + "outcome": "blocked" + }, + "mailchimp.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "community.cloudflare.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "www.xero.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "www.figma.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "community.mongodb.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.mongodb.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "community.ebay.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "forum.figma.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "developer.xero.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.adobe.io": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "www.intuit.com": { + "status": 400, + "serves": false, + "outcome": "other" + }, + "developer.foursquare.com": { + "status": 0, + "serves": false, + "outcome": "error" + }, + "www.paypal-community.com": { + "status": 0, + "serves": false, + "outcome": "error" + } + } + }, + "findings": [ + { + "api": "Adobe Creative Cloud API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.adobe.io/apis/creativecloud.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.adobe.com/creative-cloud/" + }, + { + "api": "Adobe Sign API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://secure.adobesign.com/public/docs/restapi/v6", + "outcome": "moved", + "status": 200, + "finalUrl": "https://secure.na1.adobesign.com/public/docs/restapi/v6" + }, + { + "api": "Adobe Sign API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://community.adobe.com/t5/adobe-sign/bd-p/adobe-sign", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.adobe.com/adobe-acrobat-sign-28" + }, + { + "api": "Airbnb API", + "column": "Official_Documentation_URL", + "url": "https://developer.airbnb.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.withairbnb.com/" + }, + { + "api": "Airbnb API", + "column": "Terms of Service", + "url": "https://www.airbnb.com/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.airbnb.com/help/article/2908" + }, + { + "api": "Airbnb API", + "column": "Rate Limiting Policy", + "url": "https://developer.airbnb.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.airbnb.com/login_with_redirect?redirect_url=%2Foauth2%2Fauth%3Fredirect_uri%3Dhttps%253A%252F%252Foauth.readme.io%252Fp%252Fairbnb-group%252Foauth%252Fcallback%26scope%3Dpartner_profile_read%252Cbasic_profile_read%252Cemail_read%26state%3D%252Fhomes%252Fdocs%252Frate-limits%26response_type%3Dcode%26client_id%3D7bgoybsfef2r71egvdcwt8fze" + }, + { + "api": "Airbnb API", + "column": "Release Notes", + "url": "https://developer.airbnb.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.airbnb.com/login_with_redirect?redirect_url=%2Foauth2%2Fauth%3Fredirect_uri%3Dhttps%253A%252F%252Foauth.readme.io%252Fp%252Fairbnb-group%252Foauth%252Fcallback%26scope%3Dpartner_profile_read%252Cbasic_profile_read%252Cemail_read%26state%3D%252Fhomes%252Fdocs%252Fchangelog%26response_type%3Dcode%26client_id%3D7bgoybsfef2r71egvdcwt8fze" + }, + { + "api": "Airbnb API", + "column": "Security Policy", + "url": "https://www.airbnb.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.airbnb.com/e/security" + }, + { + "api": "Airbnb API", + "column": "Developer Community/Forum", + "url": "https://community.airbnb.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.withairbnb.com/t5/Community-Center/ct-p/community-center" + }, + { + "api": "Amazon Advertising API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://advertising.amazon.com/API", + "outcome": "dead", + "status": 404, + "finalUrl": "https://advertising.amazon.com/page-not-found" + }, + { + "api": "Amazon Advertising API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://advertising.amazon.com/security", + "outcome": "other", + "status": 504, + "finalUrl": "https://advertising.amazon.com/security" + }, + { + "api": "Amazon CloudWatch API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "Amazon Comprehend API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/comprehend/latest/dg/limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/comprehend/latest/dg/" + }, + { + "api": "Amazon Comprehend API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/comprehend/latest/dg/whats-new.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/comprehend/latest/dg/" + }, + { + "api": "Amazon Comprehend API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "Amazon Kinesis API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/kinesis/latest/dev/service-sizes-and-limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/streams/latest/dev/service-sizes-and-limits.html" + }, + { + "api": "Amazon Kinesis API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "Amazon Lex API", + "column": "Official_Documentation_URL", + "url": "https://docs.aws.amazon.com/lex/latest/dg/API_Reference.html", + "outcome": "dead", + "status": 404, + "finalUrl": "https://docs.aws.amazon.com/lex/latest/dg/API_Reference.html" + }, + { + "api": "Amazon Lex API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/lex/latest/dg/limits.html", + "outcome": "dead", + "status": 404, + "finalUrl": "https://docs.aws.amazon.com/lex/latest/dg/limits.html" + }, + { + "api": "Amazon Lex API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/lex/latest/dg/release-notes.html", + "outcome": "dead", + "status": 404, + "finalUrl": "https://docs.aws.amazon.com/lex/latest/dg/release-notes.html" + }, + { + "api": "Amazon Lex API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "Amazon Polly API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/polly/latest/dg/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/polly/latest/dg/" + }, + { + "api": "Amazon Polly API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "Amazon Rekognition API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/rekognition/latest/dg/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/rekognition/latest/dg/" + }, + { + "api": "Amazon Rekognition API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "Amazon S3 API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "Amazon SES API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "Amazon Translate API", + "column": "Official_Documentation_URL", + "url": "https://docs.aws.amazon.com/translate/latest/dg/API_Reference.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/translate/latest/APIReference/" + }, + { + "api": "Amazon Translate API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/translate/latest/dg/limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/translate/latest/dg/" + }, + { + "api": "Amazon Translate API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/translate/latest/dg/whats-new.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/translate/latest/dg/" + }, + { + "api": "Amazon Translate API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "Asana API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.asana.com/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.asana.com/docs/overview" + }, + { + "api": "Asana API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://asana.com/security", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://trustcenter.asana.com/" + }, + { + "api": "AWS Amplify API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/amplify/latest/userguide/limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/amplify/latest/userguide/" + }, + { + "api": "AWS Amplify API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/amplify/latest/userguide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/amplify/latest/userguide/" + }, + { + "api": "AWS Amplify API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS API Gateway", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/apigateway/latest/developerguide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/apigateway/latest/developerguide/" + }, + { + "api": "AWS API Gateway", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS App Mesh API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/app-mesh/latest/userguide/limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/app-mesh/latest/userguide/" + }, + { + "api": "AWS App Mesh API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/app-mesh/latest/userguide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/app-mesh/latest/userguide/" + }, + { + "api": "AWS App Mesh API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS App Runner API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS AppConfig API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/appconfig/latest/userguide/limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/appconfig/latest/userguide/" + }, + { + "api": "AWS AppConfig API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/appconfig/latest/userguide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/appconfig/latest/userguide/" + }, + { + "api": "AWS AppConfig API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS AppStream API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Athena API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/athena/latest/ug/athena-whats-new.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/athena/latest/ug/" + }, + { + "api": "AWS Athena API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Backup API", + "column": "Official_Documentation_URL", + "url": "https://docs.aws.amazon.com/aws-backup/latest/devguide/API_Reference.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/aws-backup/latest/devguide/" + }, + { + "api": "AWS Backup API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/aws-backup/latest/devguide/limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/aws-backup/latest/devguide/" + }, + { + "api": "AWS Backup API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/aws-backup/latest/devguide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/aws-backup/latest/devguide/" + }, + { + "api": "AWS Backup API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS CloudFormation API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/" + }, + { + "api": "AWS CloudFormation API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS CloudFront API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS CloudTrail API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/awscloudtrail/latest/userguide/" + }, + { + "api": "AWS CloudTrail API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/awscloudtrail/latest/userguide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/awscloudtrail/latest/userguide/" + }, + { + "api": "AWS CloudTrail API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS CloudWatch API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/" + }, + { + "api": "AWS CloudWatch API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS CodeCommit API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/codecommit/latest/userguide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/codecommit/latest/userguide/" + }, + { + "api": "AWS CodeCommit API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS CodeDeploy API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/codedeploy/latest/userguide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/codedeploy/latest/userguide/" + }, + { + "api": "AWS CodeDeploy API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS CodePipeline API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/codepipeline/latest/APIReference/limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/codepipeline/latest/APIReference/" + }, + { + "api": "AWS CodePipeline API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Config API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/config/latest/APIReference/API_Limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/config/latest/APIReference/" + }, + { + "api": "AWS Config API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/config/latest/developerguide/ReleaseNotes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/config/latest/developerguide/" + }, + { + "api": "AWS Config API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS DynamoDB API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS EC2 API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/" + }, + { + "api": "AWS EC2 API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS ECS API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/AmazonECS/latest/developerguide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/AmazonECS/latest/developerguide/" + }, + { + "api": "AWS ECS API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS EKS API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/eks/latest/userguide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/eks/latest/userguide/" + }, + { + "api": "AWS EKS API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Elastic Beanstalk API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Elastic Load Balancing API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/" + }, + { + "api": "AWS Elastic Load Balancing API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/" + }, + { + "api": "AWS Elastic Load Balancing API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Elastic Transcoder API", + "column": "Official_Documentation_URL", + "url": "https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/what-is.html", + "outcome": "dead", + "status": 404, + "finalUrl": "https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/what-is.html" + }, + { + "api": "AWS Elastic Transcoder API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/limits.html", + "outcome": "dead", + "status": 404, + "finalUrl": "https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/limits.html" + }, + { + "api": "AWS Elastic Transcoder API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/whats-new.html", + "outcome": "dead", + "status": 404, + "finalUrl": "https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/whats-new.html" + }, + { + "api": "AWS Elastic Transcoder API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Glue API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/glue/latest/dg/resource-policy.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/glue/latest/dg/" + }, + { + "api": "AWS Glue API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS IAM Identity Center API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Identity and Access Management (IAM) API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html" + }, + { + "api": "AWS Identity and Access Management (IAM) API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/IAM/latest/UserGuide/change-log.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/IAM/latest/UserGuide/" + }, + { + "api": "AWS Identity and Access Management (IAM) API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS IoT Core API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/iot/latest/developerguide/limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/iot/latest/developerguide/" + }, + { + "api": "AWS IoT Core API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/iot/latest/developerguide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/iot/latest/developerguide/" + }, + { + "api": "AWS IoT Core API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS IoT Greengrass API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/greengrass/v2/developerguide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/greengrass/v2/developerguide/" + }, + { + "api": "AWS IoT Greengrass API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Kinesis API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/kinesis/latest/dev/service-sizes-and-limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/streams/latest/dev/service-sizes-and-limits.html" + }, + { + "api": "AWS Kinesis API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/kinesis/latest/dev/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/streams/latest/dev/" + }, + { + "api": "AWS Kinesis API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Lambda API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/lambda/latest/dg/limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html" + }, + { + "api": "AWS Lambda API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/lambda/latest/dg/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/lambda/latest/dg/" + }, + { + "api": "AWS Lambda API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Polly API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/polly/latest/dg/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/polly/latest/dg/" + }, + { + "api": "AWS Polly API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS RDS API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Quotas.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/" + }, + { + "api": "AWS RDS API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReleaseNotes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/" + }, + { + "api": "AWS RDS API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Rekognition API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/rekognition/latest/dg/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/rekognition/latest/dg/" + }, + { + "api": "AWS Rekognition API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS S3 API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS S3 Glacier API", + "column": "Official_Documentation_URL", + "url": "https://docs.aws.amazon.com/amazonglacier/latest/dev/api.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/amazonglacier/latest/dev/" + }, + { + "api": "AWS S3 Glacier API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/amazonglacier/latest/dev/limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/amazonglacier/latest/dev/" + }, + { + "api": "AWS S3 Glacier API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/amazonglacier/latest/dev/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/amazonglacier/latest/dev/" + }, + { + "api": "AWS S3 Glacier API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Secrets Manager API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/secretsmanager/latest/userguide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/secretsmanager/latest/userguide/" + }, + { + "api": "AWS Secrets Manager API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Security Hub API", + "column": "Official_Documentation_URL", + "url": "https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-api.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/securityhub/latest/userguide/" + }, + { + "api": "AWS Security Hub API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/securityhub/latest/userguide/" + }, + { + "api": "AWS Security Hub API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/securityhub/latest/userguide/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/securityhub/latest/userguide/" + }, + { + "api": "AWS Security Hub API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Simple Notification Service (SNS) API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/sns/latest/dg/sns-limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/sns/latest/dg/" + }, + { + "api": "AWS Simple Notification Service (SNS) API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Simple Queue Service (SQS) API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/" + }, + { + "api": "AWS Simple Queue Service (SQS) API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS SNS API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/sns/latest/dg/sns-limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/sns/latest/dg/" + }, + { + "api": "AWS SNS API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/sns/latest/dg/whats-new.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/sns/latest/dg/" + }, + { + "api": "AWS SNS API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Step Functions API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/step-functions/latest/dg/limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/step-functions/latest/dg/service-quotas.html" + }, + { + "api": "AWS Step Functions API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/step-functions/latest/dg/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/step-functions/latest/dg/welcome.html" + }, + { + "api": "AWS Step Functions API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "AWS Translate API", + "column": "Rate Limiting Policy", + "url": "https://docs.aws.amazon.com/translate/latest/dg/limits.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/translate/latest/dg/" + }, + { + "api": "AWS Translate API", + "column": "Release Notes", + "url": "https://docs.aws.amazon.com/translate/latest/dg/release-notes.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.aws.amazon.com/translate/latest/dg/" + }, + { + "api": "AWS Translate API", + "column": "Developer Community/Forum", + "url": "https://forums.aws.amazon.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://repost.aws/" + }, + { + "api": "Azure Blob Storage API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Azure Blob Storage API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/azure-storage/ct-p/AzureStorage", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=U_P5gT2XW39BQ6O8XZzh7kJsBEbfzCmJZfbwi_CoWS0Eo5sTduR4DvTqviM7Lw3up5kCZ2-v4-lacz7IpnHXJJq-37C7Rv_jfetZYADA-7jjYY9vxUvCjn40y_qnW1hbx2rx32K3-FLnf_E-Y7belEzS-RzpzaC-Hau--s3PDiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureStorage" + }, + { + "api": "Azure DevOps API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/rest/api/azure/devops", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/rest/api/azure/devops/?view=azure-devops-rest-7.2" + }, + { + "api": "Azure DevOps API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Azure DevOps API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/azure-devops/ct-p/AzureDevOps", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=Cgaoc2ik8LTspiHuGZeeQSl4YBnS1jv8nPujNaXjD1ZqICxMo_UHgKScVQGMbo_jmAGze3tWjlpO3GP0q4xuMpbmUzW5yBCuY_xyq2BsqlTK0_JGB6uvbzA_VEnOKjv-tBN3wLkp-nSf02ueHDtE4rNPYsqmHj5S0JjOxt_UIJM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureDevOps" + }, + { + "api": "Azure Form Recognizer API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/azure/applied-ai-services/form-recognizer/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/azure/ai-services/document-intelligence/?view=doc-intel-4.0.0" + }, + { + "api": "Azure Form Recognizer API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Azure Form Recognizer API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/form-recognizer/ct-p/FormRecognizer", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=GVRlRjf9i5pCIwPyWna8Ngjyavl0h999nXaLHjbOnI3j00lz9A67rHG0EArEjldfX_0O23ujSg4dKqnSDIdBmKfD30BiAoZOWASmN3QCuaXRz9kku5M0C98TA0Dqu0SgduhyFNT0sE1md8UAEysTVD_TWGwNMZHf2sIWzwjRyd4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FFormRecognizer" + }, + { + "api": "Azure Machine Learning API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/azure/machine-learning/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/azure/machine-learning/?view=azureml-api-2" + }, + { + "api": "Azure Machine Learning API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Azure Machine Learning API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/azure-machine-learning/ct-p/AzureMachineLearning", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=zROw5wHr3lmISbg6g36HwY-keOIjuN3WcImyANj04T07XoKgNJoWmbythyoTptCaooz5Z-Ccr_R8ww6yUtPbwomO4WUeH6NF4X5lnaEWUxenrR7uBiAPKwTIRNqUkoV1EZ_O52JmKFgUC-FmnGR21IHT8q-xMyXthFwXY9z3nS4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureMachineLearning" + }, + { + "api": "Bing Search API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/bing/search-apis/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/previous-versions/bing/search-apis/" + }, + { + "api": "Bing Search API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Bing Search API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/answers/topics/search-api.html", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/answers/tags/" + }, + { + "api": "Bitbucket API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developer.atlassian.com/bitbucket", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.atlassian.com/cloud/bitbucket/?utm_source=%2Fbitbucket&utm_medium=302" + }, + { + "api": "Bitbucket API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.atlassian.com/legal/cloud-terms-of-service", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.atlassian.com/legal/atlassian-customer-agreement" + }, + { + "api": "Bitbucket API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://bitbucket.org/site/master/issues?status=new&status=open", + "outcome": "moved", + "status": 200, + "finalUrl": "https://jira.atlassian.com/projects/BCLOUD?status=new&status=open" + }, + { + "api": "Bitbucket API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.atlassian.com/trust/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.atlassian.com/trust/data-protection" + }, + { + "api": "Bitbucket API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://community.atlassian.com/t5/Bitbucket/ct-p/bitbucket", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.atlassian.com/forums/Bitbucket/ct-p/bitbucket" + }, + { + "api": "Bitbucket Pipelines API", + "column": "Official_Documentation_URL", + "url": "https://developer.atlassian.com/bitbucket/api/2/reference/pipelines", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.atlassian.com/cloud/bitbucket/?utm_source=%2Fbitbucket%2Fapi%2F2%2Freference%2Fpipelines&utm_medium=302" + }, + { + "api": "Bitbucket Pipelines API", + "column": "Terms of Service", + "url": "https://www.atlassian.com/legal/cloud-terms-of-service", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.atlassian.com/legal/atlassian-customer-agreement" + }, + { + "api": "Bitbucket Pipelines API", + "column": "Rate Limiting Policy", + "url": "https://developer.atlassian.com/bitbucket/api/2/reference/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.atlassian.com/cloud/bitbucket/?utm_source=%2Fbitbucket%2Fapi%2F2%2Freference%2Frate-limits&utm_medium=302" + }, + { + "api": "Bitbucket Pipelines API", + "column": "Security Policy", + "url": "https://www.atlassian.com/trust/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.atlassian.com/trust/data-protection" + }, + { + "api": "Bitbucket Pipelines API", + "column": "Developer Community/Forum", + "url": "https://community.atlassian.com/t5/Bitbucket/ct-p/bitbucket", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.atlassian.com/forums/Bitbucket/ct-p/bitbucket" + }, + { + "api": "Bitly API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.bitly.com/pages/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://bitly.com/pages/privacy" + }, + { + "api": "Bitly API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.bitly.com/pages/terms-of-service", + "outcome": "moved", + "status": 200, + "finalUrl": "https://bitly.com/pages/terms-of-service" + }, + { + "api": "Bitly Links API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.bitly.com/pages/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://bitly.com/pages/privacy" + }, + { + "api": "Bitly Links API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.bitly.com/pages/terms-of-service", + "outcome": "moved", + "status": 200, + "finalUrl": "https://bitly.com/pages/terms-of-service" + }, + { + "api": "Box API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.box.com/legal/privacypolicy", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://www.box.com/legal/privacypolicy" + }, + { + "api": "Box API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.box.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.box.com/security-compliance" + }, + { + "api": "Box Content API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.box.com/legal/privacypolicy", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://www.box.com/legal/privacypolicy" + }, + { + "api": "Box Content API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.box.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.box.com/security-compliance" + }, + { + "api": "Calendly API", + "column": "Privacy Policy", + "url": "https://calendly.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://calendly.com/legal/privacy-notice" + }, + { + "api": "Calendly API", + "column": "Terms of Service", + "url": "https://calendly.com/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://calendly.com/legal/customer-terms-conditions" + }, + { + "api": "Cloudflare API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.cloudflare.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.cloudflare.com/cybersecurity/" + }, + { + "api": "Cloudinary API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://community.cloudinary.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://cloudinary.com/developers/community" + }, + { + "api": "Discord API", + "column": "Official_Documentation_URL", + "url": "https://discord.com/developers/docs/intro", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.discord.com/developers/intro" + }, + { + "api": "Discord API", + "column": "Rate Limiting Policy", + "url": "https://discord.com/developers/docs/topics/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.discord.com/developers/topics/rate-limits" + }, + { + "api": "Discord API", + "column": "Release Notes", + "url": "https://discord.com/developers/docs/change-log", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.discord.com/developers/change-log" + }, + { + "api": "DocuSign API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.docusign.com/company/privacy-policy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.docusign.com/privacy" + }, + { + "api": "Dropbox Activity API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Activity API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Activity API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Admin API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Admin API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Admin API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox API Explorer", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox API Explorer", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox API Explorer", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox API v1", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox API v1", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox API v1", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox API v2", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox API v2", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox API v2", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox App Folder API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox App Folder API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox App Folder API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Audit Logs API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Audit Logs API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Audit Logs API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Authentication API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Authentication API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Authentication API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Badge API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Badge API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Badge API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Business API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.dropbox.com/developers/business", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/developers/documentation/http/overview" + }, + { + "api": "Dropbox Business API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Business API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Business API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Chooser API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Chooser API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Chooser API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Collaboration API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Collaboration API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Collaboration API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Contacts API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Contacts API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Contacts API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Content API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Content API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Content API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Content Explorer API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Content Explorer API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Content Explorer API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Content Management API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Content Management API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Content Management API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Core API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Core API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Core API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Data Loss Prevention API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Data Loss Prevention API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Data Loss Prevention API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Discovery API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Discovery API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Discovery API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Events API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Events API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Events API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox File Metadata API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox File Metadata API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox File Metadata API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox File Request API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox File Request API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox File Request API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox File Requests API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox File Requests API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox File Requests API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Files API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Files API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Files API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Folder API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Folder API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Folder API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Metadata API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Metadata API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Metadata API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Notifications API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Notifications API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Notifications API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Paper API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Paper API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Paper API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Revisions API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Revisions API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Revisions API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Search API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Search API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Search API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Security API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Security API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Security API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Shared Links API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Shared Links API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Shared Links API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Sharing API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Sharing API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Sharing API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Sign API", + "column": "Official_Documentation_URL", + "url": "https://app.hellosign.com/api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://sign.dropbox.com/products/dropbox-sign-api" + }, + { + "api": "Dropbox Sign API", + "column": "Terms of Service", + "url": "https://www.hellosign.com/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://sign.dropbox.com/about/terms" + }, + { + "api": "Dropbox Sign API", + "column": "Rate Limiting Policy", + "url": "https://app.hellosign.com/api/reference#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hellosign.com/api/api-reference-welcome" + }, + { + "api": "Dropbox Sign API", + "column": "Release Notes", + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Sign API", + "column": "Security Policy", + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Sign API", + "column": "Developer Community/Forum", + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Spaces API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Spaces API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Spaces API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Sync API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Sync API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Sync API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Team API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Team API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Team API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Team Auditing API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Team Auditing API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Team Auditing API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Thumbnails API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Thumbnails API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Thumbnails API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox Transfer API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox Transfer API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox Transfer API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "Dropbox User API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "outcome": "dead", + "status": 404, + "finalUrl": "https://community.dropbox.com/en/t5/Announcements/bg-p/101003000" + }, + { + "api": "Dropbox User API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.dropbox.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.dropbox.com/features/security" + }, + { + "api": "Dropbox User API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.dropboxforum.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.dropbox.com/en" + }, + { + "api": "eBay API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developer.ebay.com/docs", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://developer.ebay.com/docs" + }, + { + "api": "eBay API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developer.ebay.com/api-docs/static/rate-limits.html", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://developer.ebay.com/api-docs/static/rate-limits.html" + }, + { + "api": "eBay API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developer.ebay.com/api-docs/static/release-notes.html", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://developer.ebay.com/api-docs/static/release-notes.html" + }, + { + "api": "Etsy API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.etsy.com/legal/privacy", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://www.etsy.com/legal/privacy" + }, + { + "api": "Etsy API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.etsy.com/legal/terms-of-use", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://www.etsy.com/legal/terms-of-use" + }, + { + "api": "Eventbrite API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.eventbrite.com/support/articles/en_US/Troubleshooting/eventbrite-privacy-policy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.eventbrite.com/help/en-us/articles/460838/eventbrite-privacy-policy/" + }, + { + "api": "Eventbrite API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.eventbrite.com/support/articles/en_US/Troubleshooting/eventbrite-terms-of-service", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.eventbrite.com/help/en-us/articles/251210/eventbrite-terms-of-service/" + }, + { + "api": "Eventbrite API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://www.eventbrite.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.eventbrite.com.au/security/" + }, + { + "api": "Facebook API", + "column": "Official_Documentation_URL", + "url": "https://developers.facebook.com/docs/", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/" + }, + { + "api": "Facebook API", + "column": "Privacy Policy", + "url": "https://www.facebook.com/privacy/explanation", + "outcome": "other", + "status": 400, + "finalUrl": "https://www.facebook.com/privacy/explanation" + }, + { + "api": "Facebook API", + "column": "Terms of Service", + "url": "https://www.facebook.com/legal/terms", + "outcome": "other", + "status": 400, + "finalUrl": "https://www.facebook.com/legal/terms" + }, + { + "api": "Facebook API", + "column": "Rate Limiting Policy", + "url": "https://developers.facebook.com/docs/graph-api/overview/rate-limiting", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/graph-api/overview/rate-limiting" + }, + { + "api": "Facebook API", + "column": "Release Notes", + "url": "https://developers.facebook.com/docs/graph-api/changelog", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/graph-api/changelog" + }, + { + "api": "Facebook API", + "column": "Security Policy", + "url": "https://www.facebook.com/help/238318146535333", + "outcome": "other", + "status": 400, + "finalUrl": "https://www.facebook.com/help/238318146535333" + }, + { + "api": "Facebook API", + "column": "Developer Community/Forum", + "url": "https://developers.facebook.com/community/", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/community/" + }, + { + "api": "Facebook Marketing API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.facebook.com/docs/marketing-apis", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/marketing-api" + }, + { + "api": "Facebook Marketing API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.facebook.com/privacy/explanation", + "outcome": "other", + "status": 400, + "finalUrl": "https://www.facebook.com/privacy/explanation" + }, + { + "api": "Facebook Marketing API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.facebook.com/terms/", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/terms/" + }, + { + "api": "Facebook Marketing API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.facebook.com/docs/marketing-api/changelog", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/graph-api/changelog" + }, + { + "api": "Facebook Marketing API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.facebook.com/help/238318146535333", + "outcome": "other", + "status": 400, + "finalUrl": "https://www.facebook.com/help/238318146535333" + }, + { + "api": "Facebook Marketing API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://developers.facebook.com/community/", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/community/" + }, + { + "api": "Facebook Messenger API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.facebook.com/docs/messenger-platform/", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/messenger-platform/" + }, + { + "api": "Facebook Messenger API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.facebook.com/privacy/explanation", + "outcome": "other", + "status": 400, + "finalUrl": "https://www.facebook.com/privacy/explanation" + }, + { + "api": "Facebook Messenger API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.facebook.com/terms/", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/terms/" + }, + { + "api": "Facebook Messenger API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.facebook.com/docs/messenger-platform/changelog", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/messenger-platform/changelog" + }, + { + "api": "Facebook Messenger API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.facebook.com/help/238318146535333", + "outcome": "other", + "status": 400, + "finalUrl": "https://www.facebook.com/help/238318146535333" + }, + { + "api": "Facebook Messenger API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://developers.facebook.com/community/", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/community/" + }, + { + "api": "Figma API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.figma.com/developers/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.figma.com/docs/rest-api/" + }, + { + "api": "Figma API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.figma.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.figma.com/legal/privacy/" + }, + { + "api": "Figma API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.figma.com/developers/api-rate-limits", + "outcome": "dead", + "status": 404, + "finalUrl": "https://www.figma.com/developers/api-rate-limits/" + }, + { + "api": "Figma API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.figma.com/developers/changelog", + "outcome": "dead", + "status": 404, + "finalUrl": "https://www.figma.com/developers/changelog/" + }, + { + "api": "Figma File API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.figma.com/developers/api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.figma.com/docs/rest-api/" + }, + { + "api": "Figma File API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.figma.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.figma.com/legal/privacy/" + }, + { + "api": "Figma File API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.figma.com/developers/api/rate-limits", + "outcome": "dead", + "status": 404, + "finalUrl": "https://www.figma.com/developers/api/rate-limits/" + }, + { + "api": "Figma File API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.figma.com/developers/changelog", + "outcome": "dead", + "status": 404, + "finalUrl": "https://www.figma.com/developers/changelog/" + }, + { + "api": "Firebase API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://firebase.google.com/support/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://firebase.google.com/support?hl=ko" + }, + { + "api": "Firebase Authentication API", + "column": "Official_Documentation_URL", + "url": "https://firebase.google.com/docs/auth", + "outcome": "moved", + "status": 200, + "finalUrl": "https://firebase.google.com/docs/auth?hl=vi" + }, + { + "api": "Firebase Authentication API", + "column": "Release Notes", + "url": "https://firebase.google.com/support/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://firebase.google.com/support?hl=ko" + }, + { + "api": "Foursquare Places API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developer.foursquare.com/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.foursquare.com/developer/docs/foursquare-sdks-overview" + }, + { + "api": "Foursquare Places API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://foursquare.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://foursquare.com/legal/privacy-center/foursquare-privacy-policy-consumer-services/" + }, + { + "api": "GitHub Actions API", + "column": "Privacy Policy", + "url": "https://docs.github.com/en/github/site-policy/github-privacy-statement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement" + }, + { + "api": "GitHub Actions API", + "column": "Terms of Service", + "url": "https://docs.github.com/en/github/site-policy/github-terms-of-service", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.github.com/en/site-policy/github-terms/github-terms-of-service" + }, + { + "api": "GitHub Actions API", + "column": "Rate Limiting Policy", + "url": "https://docs.github.com/en/rest/overview/resources-in-the-rest-api#rate-limiting", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.github.com/en/rest/using-the-rest-api/getting-started-with-the-rest-api" + }, + { + "api": "GitHub Actions API", + "column": "Developer Community/Forum", + "url": "https://github.community/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://github.com/orgs/community/discussions/" + }, + { + "api": "GitHub API", + "column": "Privacy Policy", + "url": "https://docs.github.com/en/github/site-policy/github-privacy-statement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement" + }, + { + "api": "GitHub API", + "column": "Terms of Service", + "url": "https://docs.github.com/en/github/site-policy/github-terms-of-service", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.github.com/en/site-policy/github-terms/github-terms-of-service" + }, + { + "api": "GitHub API", + "column": "Rate Limiting Policy", + "url": "https://docs.github.com/en/rest/overview/resources-in-the-rest-api#rate-limiting", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.github.com/en/rest/using-the-rest-api/getting-started-with-the-rest-api" + }, + { + "api": "GitHub API", + "column": "Developer Community/Forum", + "url": "https://github.community/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://github.com/orgs/community/discussions/" + }, + { + "api": "GitHub Checks API", + "column": "Privacy Policy", + "url": "https://docs.github.com/en/github/site-policy/github-privacy-statement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement" + }, + { + "api": "GitHub Checks API", + "column": "Terms of Service", + "url": "https://docs.github.com/en/github/site-policy/github-terms-of-service", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.github.com/en/site-policy/github-terms/github-terms-of-service" + }, + { + "api": "GitHub Checks API", + "column": "Rate Limiting Policy", + "url": "https://docs.github.com/en/rest/overview/resources-in-the-rest-api#rate-limiting", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.github.com/en/rest/using-the-rest-api/getting-started-with-the-rest-api" + }, + { + "api": "GitHub Checks API", + "column": "Developer Community/Forum", + "url": "https://github.community/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://github.com/orgs/community/discussions/" + }, + { + "api": "GitHub GraphQL API", + "column": "Privacy Policy", + "url": "https://docs.github.com/en/github/site-policy/github-privacy-statement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement" + }, + { + "api": "GitHub GraphQL API", + "column": "Terms of Service", + "url": "https://docs.github.com/en/github/site-policy/github-terms-of-service", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.github.com/en/site-policy/github-terms/github-terms-of-service" + }, + { + "api": "GitHub GraphQL API", + "column": "Rate Limiting Policy", + "url": "https://docs.github.com/en/graphql/overview/resource-limitations", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.github.com/en/graphql/overview/rate-limits-and-query-limits-for-the-graphql-api" + }, + { + "api": "GitHub GraphQL API", + "column": "Developer Community/Forum", + "url": "https://github.community/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://github.com/orgs/community/discussions/" + }, + { + "api": "GitLab API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://docs.gitlab.com/ee/api/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.gitlab.com/api/" + }, + { + "api": "Google Ads API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/google-ads-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-ads-api" + }, + { + "api": "Google AdSense API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://groups.google.com/g/google-adsense-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-adsense-api" + }, + { + "api": "Google Analytics API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.google.com/analytics/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/analytics/terms/provisioning/en?hl=hi" + }, + { + "api": "Google Analytics API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/analytics/devguides/reporting/core/v4/limits-quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/analytics/legacy/universal-analytics?hl=bn" + }, + { + "api": "Google Analytics API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/analytics-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/analytics-api" + }, + { + "api": "Google Analytics Reporting API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/analytics/devguides/reporting/core/v4", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/analytics/legacy/universal-analytics?hl=fa" + }, + { + "api": "Google Analytics Reporting API", + "column": "Terms of Service", + "url": "https://developers.google.com/analytics/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/analytics/terms/provisioning/en?hl=hi" + }, + { + "api": "Google Analytics Reporting API", + "column": "Rate Limiting Policy", + "url": "https://developers.google.com/analytics/devguides/reporting/core/v4/limits-quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/analytics/legacy/universal-analytics?hl=bn" + }, + { + "api": "Google Analytics Reporting API", + "column": "Release Notes", + "url": "https://developers.google.com/analytics/devguides/reporting/core/v4/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/analytics/legacy/universal-analytics?hl=zh-cn" + }, + { + "api": "Google Analytics Reporting API", + "column": "Developer Community/Forum", + "url": "https://groups.google.com/g/analytics-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/analytics-api" + }, + { + "api": "Google BigQuery API", + "column": "Official_Documentation_URL", + "url": "https://cloud.google.com/bigquery/docs/reference/rest", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/bigquery/docs/reference/rest" + }, + { + "api": "Google BigQuery API", + "column": "Rate Limiting Policy", + "url": "https://cloud.google.com/bigquery/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/bigquery/quotas" + }, + { + "api": "Google BigQuery API", + "column": "Release Notes", + "url": "https://cloud.google.com/bigquery/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://cloud.google.com/bigquery/release-notes" + }, + { + "api": "Google BigQuery API", + "column": "Developer Community/Forum", + "url": "https://groups.google.com/g/bigquery-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/bigquery-api" + }, + { + "api": "Google Books API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/books", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/books?hl=th" + }, + { + "api": "Google Books API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.google.com/books/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/books/terms?hl=fa" + }, + { + "api": "Google Calendar API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/calendar", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/workspace/calendar" + }, + { + "api": "Google Calendar API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/calendar/releases", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/workspace/calendar/release-notes" + }, + { + "api": "Google Calendar API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/calendar-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/calendar-api" + }, + { + "api": "Google Chat API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/chat", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/workspace/chat?hl=he" + }, + { + "api": "Google Chat API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/chat/releases", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/workspace/chat/release-notes" + }, + { + "api": "Google Chat API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/google-chat-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-chat-api" + }, + { + "api": "Google Cloud AutoML API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://cloud.google.com/automl/docs/reference/rest", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/gemini-enterprise-agent-platform" + }, + { + "api": "Google Cloud AutoML API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://groups.google.com/g/automl-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/automl-api" + }, + { + "api": "Google Cloud BigQuery API", + "column": "Official_Documentation_URL", + "url": "https://cloud.google.com/bigquery/docs/reference/rest", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/bigquery/docs/reference/rest" + }, + { + "api": "Google Cloud BigQuery API", + "column": "Rate Limiting Policy", + "url": "https://cloud.google.com/bigquery/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/bigquery/quotas" + }, + { + "api": "Google Cloud BigQuery API", + "column": "Release Notes", + "url": "https://cloud.google.com/bigquery/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://cloud.google.com/bigquery/release-notes" + }, + { + "api": "Google Cloud BigQuery API", + "column": "Developer Community/Forum", + "url": "https://groups.google.com/g/cloud-bigquery", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-bigquery" + }, + { + "api": "Google Cloud Bigtable API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://cloud.google.com/bigtable/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/bigtable/quotas" + }, + { + "api": "Google Cloud Bigtable API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://cloud.google.com/bigtable/docs/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/bigtable/docs/release-notes" + }, + { + "api": "Google Cloud Bigtable API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/cloud-bigtable-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-bigtable-api" + }, + { + "api": "Google Cloud Datastore API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://cloud.google.com/datastore/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/datastore/docs?hl=he" + }, + { + "api": "Google Cloud Datastore API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://cloud.google.com/datastore/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://cloud.google.com/datastore/release-notes" + }, + { + "api": "Google Cloud Datastore API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/cloud-datastore-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-datastore-api" + }, + { + "api": "Google Cloud Functions API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://cloud.google.com/functions/docs/apis", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/functions/docs/apis" + }, + { + "api": "Google Cloud Functions API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://cloud.google.com/functions/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/functions/quotas" + }, + { + "api": "Google Cloud Functions API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/cloud-functions", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-functions" + }, + { + "api": "Google Cloud Identity API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://cloud.google.com/identity/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/identity/docs?hl=pt-br" + }, + { + "api": "Google Cloud Identity API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://groups.google.com/g/cloud-identity-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-identity-api" + }, + { + "api": "Google Cloud Monitoring API", + "column": "Official_Documentation_URL", + "url": "https://cloud.google.com/monitoring/api/v3", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/monitoring/api/v3" + }, + { + "api": "Google Cloud Monitoring API", + "column": "Rate Limiting Policy", + "url": "https://cloud.google.com/monitoring/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/monitoring/quotas?hl=es-419" + }, + { + "api": "Google Cloud Monitoring API", + "column": "Release Notes", + "url": "https://cloud.google.com/monitoring/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/monitoring/docs/release-notes" + }, + { + "api": "Google Cloud Monitoring API", + "column": "Developer Community/Forum", + "url": "https://groups.google.com/g/cloud-monitoring-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-monitoring-api" + }, + { + "api": "Google Cloud Natural Language API", + "column": "Official_Documentation_URL", + "url": "https://cloud.google.com/natural-language/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/natural-language/docs" + }, + { + "api": "Google Cloud Natural Language API", + "column": "Rate Limiting Policy", + "url": "https://cloud.google.com/natural-language/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/natural-language/quotas" + }, + { + "api": "Google Cloud Natural Language API", + "column": "Release Notes", + "url": "https://cloud.google.com/natural-language/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://cloud.google.com/natural-language/release-notes" + }, + { + "api": "Google Cloud Natural Language API", + "column": "Developer Community/Forum", + "url": "https://groups.google.com/g/cloud-natural-language-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-natural-language-api" + }, + { + "api": "Google Cloud Pub/Sub API", + "column": "Official_Documentation_URL", + "url": "https://cloud.google.com/pubsub/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/pubsub/docs?hl=es-419" + }, + { + "api": "Google Cloud Pub/Sub API", + "column": "Rate Limiting Policy", + "url": "https://cloud.google.com/pubsub/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/pubsub/quotas" + }, + { + "api": "Google Cloud Pub/Sub API", + "column": "Release Notes", + "url": "https://cloud.google.com/pubsub/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://cloud.google.com/pubsub/release-notes" + }, + { + "api": "Google Cloud Run API", + "column": "Official_Documentation_URL", + "url": "https://cloud.google.com/run/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/run/docs" + }, + { + "api": "Google Cloud Run API", + "column": "Rate Limiting Policy", + "url": "https://cloud.google.com/run/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/run/quotas" + }, + { + "api": "Google Cloud Run API", + "column": "Release Notes", + "url": "https://cloud.google.com/run/docs/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/run/docs/release-notes" + }, + { + "api": "Google Cloud Run API", + "column": "Developer Community/Forum", + "url": "https://groups.google.com/g/cloud-run-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-run-api" + }, + { + "api": "Google Cloud Spanner API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://cloud.google.com/spanner/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/spanner/docs?hl=id" + }, + { + "api": "Google Cloud Spanner API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://cloud.google.com/spanner/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/spanner/quotas" + }, + { + "api": "Google Cloud Spanner API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/cloud-spanner-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-spanner-api" + }, + { + "api": "Google Cloud Speech-to-Text API", + "column": "Official_Documentation_URL", + "url": "https://cloud.google.com/speech-to-text/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/speech-to-text/docs?hl=es-419" + }, + { + "api": "Google Cloud Speech-to-Text API", + "column": "Rate Limiting Policy", + "url": "https://cloud.google.com/speech-to-text/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/speech-to-text/docs/v1/quotas" + }, + { + "api": "Google Cloud Speech-to-Text API", + "column": "Release Notes", + "url": "https://cloud.google.com/speech-to-text/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://cloud.google.com/speech-to-text/release-notes" + }, + { + "api": "Google Cloud Speech-to-Text API", + "column": "Developer Community/Forum", + "url": "https://groups.google.com/g/cloud-speech-to-text", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-speech-to-text" + }, + { + "api": "Google Cloud Storage API", + "column": "Official_Documentation_URL", + "url": "https://cloud.google.com/storage/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/storage/docs" + }, + { + "api": "Google Cloud Storage API", + "column": "Rate Limiting Policy", + "url": "https://cloud.google.com/storage/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/storage/quotas" + }, + { + "api": "Google Cloud Storage API", + "column": "Release Notes", + "url": "https://cloud.google.com/storage/docs/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/storage/docs/release-notes" + }, + { + "api": "Google Cloud Storage API", + "column": "Developer Community/Forum", + "url": "https://groups.google.com/g/cloud-storage-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-storage-api" + }, + { + "api": "Google Cloud Tasks API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://cloud.google.com/tasks/docs/reference/rest", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/tasks/docs/reference/rest" + }, + { + "api": "Google Cloud Tasks API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://groups.google.com/g/cloud-tasks-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-tasks-api" + }, + { + "api": "Google Cloud Translation API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://cloud.google.com/translate/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/translate/docs" + }, + { + "api": "Google Cloud Translation API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://cloud.google.com/translate/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/translate/quotas" + }, + { + "api": "Google Cloud Translation API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://cloud.google.com/translate/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://cloud.google.com/translate/release-notes" + }, + { + "api": "Google Cloud Translation API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/cloud-translate-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-translate-api" + }, + { + "api": "Google Cloud Vision API", + "column": "Official_Documentation_URL", + "url": "https://cloud.google.com/vision/docs/reference/rest", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/vision/docs/reference/rest" + }, + { + "api": "Google Cloud Vision API", + "column": "Rate Limiting Policy", + "url": "https://cloud.google.com/vision/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/vision/quotas" + }, + { + "api": "Google Cloud Vision API", + "column": "Release Notes", + "url": "https://cloud.google.com/vision/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://cloud.google.com/vision/release-notes" + }, + { + "api": "Google Cloud Vision API", + "column": "Developer Community/Forum", + "url": "https://groups.google.com/g/cloud-vision-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-vision-api" + }, + { + "api": "Google Custom Search API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/custom-search/v1/introduction", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/custom-search/v1/introduction?hl=fr" + }, + { + "api": "Google Custom Search API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/custom-search-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/custom-search-api" + }, + { + "api": "Google Drive API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/drive", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/workspace/drive" + }, + { + "api": "Google Drive API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/drive/api/guides/handle-errors#quota-errors", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/workspace/drive/api/guides/handle-errors?hl=he" + }, + { + "api": "Google Drive API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/google-drive-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-drive-api" + }, + { + "api": "Google Firebase Authentication API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://firebase.google.com/docs/auth", + "outcome": "moved", + "status": 200, + "finalUrl": "https://firebase.google.com/docs/auth?hl=vi" + }, + { + "api": "Google Firebase Authentication API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://firebase.google.com/support/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://firebase.google.com/support?hl=ko" + }, + { + "api": "Google Firebase Authentication API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/firebase-auth-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-auth-api" + }, + { + "api": "Google Firebase Cloud Messaging API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://firebase.google.com/support/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://firebase.google.com/support?hl=ko" + }, + { + "api": "Google Firebase Cloud Messaging API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/firebase-cloud-messaging", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-cloud-messaging" + }, + { + "api": "Google Firebase Realtime Database API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://firebase.google.com/support/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://firebase.google.com/support?hl=ko" + }, + { + "api": "Google Firebase Realtime Database API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/firebase-realtime-database", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-realtime-database" + }, + { + "api": "Google Maps API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://groups.google.com/g/maps-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api" + }, + { + "api": "Google Maps Directions API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/maps/documentation/directions/start", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/maps/documentation/directions/start?hl=he" + }, + { + "api": "Google Maps Directions API", + "column": "Rate Limiting Policy", + "url": "https://developers.google.com/maps/documentation/directions/usage-and-billing", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/maps/documentation/directions/usage-and-billing?hl=fa" + }, + { + "api": "Google Maps Directions API", + "column": "Developer Community/Forum", + "url": "https://groups.google.com/g/maps-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api" + }, + { + "api": "Google Maps Elevation API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/maps/documentation/elevation", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/maps/documentation/elevation/overview?hl=he" + }, + { + "api": "Google Maps Elevation API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/maps-elevation-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-elevation-api" + }, + { + "api": "Google Maps Geocoding API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/maps/documentation/geocoding/start", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/maps/documentation/geocoding/guides-v3/start?hl=ru" + }, + { + "api": "Google Maps Geocoding API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/maps/documentation/geocoding/usage-and-billing", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/maps/documentation/geocoding/usage-and-billing?hl=zh-cn" + }, + { + "api": "Google Maps Geocoding API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/maps-geocoding-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-geocoding-api" + }, + { + "api": "Google Maps Geolocation API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/maps/documentation/geolocation", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/maps/documentation/geolocation/overview?hl=hi" + }, + { + "api": "Google Maps Geolocation API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/maps/documentation/geolocation/usage-and-billing", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/maps/documentation/geolocation/usage-and-billing?hl=es-419" + }, + { + "api": "Google Maps Geolocation API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/maps-api-geolocation", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api-geolocation" + }, + { + "api": "Google Maps Places API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/maps/documentation/places", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/maps/documentation/places/web-service?hl=zh-tw" + }, + { + "api": "Google Maps Places API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.google.com/maps/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://cloud.google.com/maps-platform/terms" + }, + { + "api": "Google Maps Places API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://groups.google.com/g/google-maps-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-maps-api" + }, + { + "api": "Google Maps Roads API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.google.com/maps/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://cloud.google.com/maps-platform/terms" + }, + { + "api": "Google Maps Roads API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/maps/documentation/roads/usage-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/maps/documentation/roads/usage-and-billing" + }, + { + "api": "Google Maps Roads API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/maps-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api" + }, + { + "api": "Google My Business API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://groups.google.com/g/google-my-business-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-my-business-api" + }, + { + "api": "Google People API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://groups.google.com/g/google-people-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-people-api" + }, + { + "api": "Google Photos API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://groups.google.com/g/photos-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/photos-api" + }, + { + "api": "Google Places API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/maps-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api" + }, + { + "api": "Google Sheets API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/sheets", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/workspace/sheets?hl=zh-tw" + }, + { + "api": "Google Sheets API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/sheets/limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/workspace/sheets/api/limits?hl=vi" + }, + { + "api": "Google Sheets API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/google-sheets-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-sheets-api" + }, + { + "api": "Google Tag Manager API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/tag-platform/tag-manager", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/tag-platform/tag-manager?hl=fa" + }, + { + "api": "Google Tag Manager API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://groups.google.com/g/tagmanager-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/tagmanager-api" + }, + { + "api": "Google Tasks API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/tasks", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/workspace/tasks?hl=zh-cn" + }, + { + "api": "Google Tasks API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/tasks/limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/workspace/tasks/limits?hl=bn" + }, + { + "api": "Google Translate API", + "column": "Official_Documentation_URL", + "url": "https://cloud.google.com/translate/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/translate/docs" + }, + { + "api": "Google Translate API", + "column": "Rate Limiting Policy", + "url": "https://cloud.google.com/translate/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/translate/quotas" + }, + { + "api": "Google Translate API", + "column": "Release Notes", + "url": "https://cloud.google.com/translate/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://cloud.google.com/translate/release-notes" + }, + { + "api": "Google Translate API", + "column": "Developer Community/Forum", + "url": "https://groups.google.com/g/cloud-translate-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-translate-api" + }, + { + "api": "Google Vision API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://cloud.google.com/vision/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/vision/docs" + }, + { + "api": "Google Vision API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://cloud.google.com/vision/docs/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/vision/docs/release-notes" + }, + { + "api": "Google Vision API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/cloud-vision-api-discuss", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-vision-api-discuss" + }, + { + "api": "Heroku Platform API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.heroku.com/policy/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.salesforce.com/company/legal/privacy/?bc=HL" + }, + { + "api": "HubSpot Analytics API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/analytics", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/analytics" + }, + { + "api": "HubSpot Analytics API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Blogging API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/marketing/blogs", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/marketing/blogs" + }, + { + "api": "HubSpot Blogging API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Blogs API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/blogs", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/blogs" + }, + { + "api": "HubSpot Blogs API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Calendar API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/calendar", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/calendar" + }, + { + "api": "HubSpot Calendar API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Call API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/calls", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/calls" + }, + { + "api": "HubSpot Call API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Campaigns API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/marketing/campaigns", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/api-reference/legacy/marketing/campaigns/guide" + }, + { + "api": "HubSpot Campaigns API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot CMS API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/cms", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/cms" + }, + { + "api": "HubSpot CMS API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Companies API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/companies", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/companies" + }, + { + "api": "HubSpot Companies API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Contact Properties API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/contact-properties", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/contact-properties" + }, + { + "api": "HubSpot Contact Properties API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Contacts API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/crm/contacts", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/api-reference/legacy/crm/objects/contacts/guide" + }, + { + "api": "HubSpot Contacts API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot CRM API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/crm", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/crm" + }, + { + "api": "HubSpot CRM API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot CRM Timeline API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/crm-timeline", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/crm-timeline" + }, + { + "api": "HubSpot CRM Timeline API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Deals API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/deals", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/deals" + }, + { + "api": "HubSpot Deals API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot E-commerce API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/ecommerce", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/ecommerce" + }, + { + "api": "HubSpot E-commerce API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Ecommerce API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/ecommerce", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/ecommerce" + }, + { + "api": "HubSpot Ecommerce API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Email API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/marketing/email", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/marketing/email" + }, + { + "api": "HubSpot Email API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Email Marketing API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/email-marketing", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/email-marketing" + }, + { + "api": "HubSpot Email Marketing API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Emails API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/marketing/emails", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/marketing/emails" + }, + { + "api": "HubSpot Emails API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Engagements API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/crm/engagements", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/api-reference/latest/overview" + }, + { + "api": "HubSpot Engagements API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Feedback Surveys API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/feedback-surveys", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/feedback-surveys" + }, + { + "api": "HubSpot Feedback Surveys API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Forms API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/forms", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/forms" + }, + { + "api": "HubSpot Forms API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Line Items API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/crm/line-items", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/api-reference/legacy/crm/objects/line-items/guide" + }, + { + "api": "HubSpot Line Items API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Marketing API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/marketing", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/marketing" + }, + { + "api": "HubSpot Marketing API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Marketing Events API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/marketing/events", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/marketing/events" + }, + { + "api": "HubSpot Marketing Events API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Owners API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/crm/owners", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/api-reference/legacy/crm/owners/guide" + }, + { + "api": "HubSpot Owners API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Pipelines API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/pipelines", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/pipelines" + }, + { + "api": "HubSpot Pipelines API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Properties API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/crm/properties", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/api-reference/legacy/crm/properties/guide" + }, + { + "api": "HubSpot Properties API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Quotes API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/crm/quotes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/api-reference/legacy/crm/objects/quotes/guide" + }, + { + "api": "HubSpot Quotes API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Sales API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/crm/sales", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/crm/sales" + }, + { + "api": "HubSpot Sales API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Social Media API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/marketing/social", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/marketing/social" + }, + { + "api": "HubSpot Social Media API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Task Queues API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/tasks/queues", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/tasks/queues" + }, + { + "api": "HubSpot Task Queues API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Tasks API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/tasks", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/tasks" + }, + { + "api": "HubSpot Tasks API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Tickets API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/tickets", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/tickets" + }, + { + "api": "HubSpot Tickets API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Workflow API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/automation/workflows", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/api-reference/legacy/automation/workflows/guide" + }, + { + "api": "HubSpot Workflow API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "HubSpot Workflows API", + "column": "Official_Documentation_URL", + "url": "https://developers.hubspot.com/docs/api/workflows", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.hubspot.com/docs/api/workflows" + }, + { + "api": "HubSpot Workflows API", + "column": "Rate Limiting Policy", + "url": "https://developers.hubspot.com/docs/api/usage-details", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines" + }, + { + "api": "IBM Watson API", + "column": "Privacy Policy", + "url": "https://www.ibm.com/privacy/details/us/en/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.ibm.com/us-en/privacy" + }, + { + "api": "IBM Watson API", + "column": "Terms of Service", + "url": "https://www.ibm.com/legal/us/en/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.ibm.com/legal" + }, + { + "api": "IBM Watson API", + "column": "Release Notes", + "url": "https://cloud.ibm.com/docs/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://cloud.ibm.com/docs/release-notes" + }, + { + "api": "IBM Watson API", + "column": "Security Policy", + "url": "https://www.ibm.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.ibm.com/solutions/security" + }, + { + "api": "IBM Watson API", + "column": "Developer Community/Forum", + "url": "https://community.ibm.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.ibm.com/community/" + }, + { + "api": "Instagram Basic Display API", + "column": "Official_Documentation_URL", + "url": "https://developers.facebook.com/docs/instagram-basic-display-api", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/instagram-platform" + }, + { + "api": "Instagram Basic Display API", + "column": "Terms of Service", + "url": "https://developers.facebook.com/terms/", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/terms/" + }, + { + "api": "Instagram Basic Display API", + "column": "Rate Limiting Policy", + "url": "https://developers.facebook.com/docs/instagram-basic-display-api/overview/#rate-limits", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/instagram-platform" + }, + { + "api": "Instagram Basic Display API", + "column": "Release Notes", + "url": "https://developers.facebook.com/docs/instagram-basic-display-api/changelog", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/instagram-platform" + }, + { + "api": "Instagram Basic Display API", + "column": "Security Policy", + "url": "https://help.instagram.com/519522125107875", + "outcome": "other", + "status": 400, + "finalUrl": "https://help.instagram.com/519522125107875" + }, + { + "api": "Instagram Basic Display API", + "column": "Developer Community/Forum", + "url": "https://developers.facebook.com/community/", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/community/" + }, + { + "api": "Instagram Graph API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.facebook.com/docs/instagram-api", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/instagram-platform/instagram-api-with-facebook-login" + }, + { + "api": "Instagram Graph API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.facebook.com/terms/", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/terms/" + }, + { + "api": "Instagram Graph API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.facebook.com/docs/instagram-api/changelog", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/instagram-platform/changelog" + }, + { + "api": "Instagram Graph API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://help.instagram.com/519522125107875", + "outcome": "other", + "status": 400, + "finalUrl": "https://help.instagram.com/519522125107875" + }, + { + "api": "Instagram Graph API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://developers.facebook.com/community/", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/community/" + }, + { + "api": "Intercom Conversations API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.intercom.com/intercom-api-reference/reference", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.intercom.com/docs/references/introduction" + }, + { + "api": "Intercom Lead API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.intercom.com/intercom-api-reference/reference", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.intercom.com/docs/references/introduction" + }, + { + "api": "LinkedIn API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://docs.microsoft.com/en-us/linkedin", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/linkedin/" + }, + { + "api": "LinkedIn API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://docs.microsoft.com/en-us/linkedin/shared/api-guide/concepts/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/linkedin/shared/api-guide/concepts/rate-limits" + }, + { + "api": "LinkedIn API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.linkedin.com/help/linkedin/answer/34593", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.linkedin.com/help/linkedin/answer/a403269/" + }, + { + "api": "LinkedIn Marketing API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://docs.microsoft.com/en-us/linkedin/marketing/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/linkedin/marketing/?view=li-lms-2026-08" + }, + { + "api": "LinkedIn Marketing API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://docs.microsoft.com/en-us/linkedin/shared/api-guide/concepts/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/linkedin/shared/api-guide/concepts/rate-limits" + }, + { + "api": "LinkedIn Marketing API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.linkedin.com/help/linkedin/answer/34593", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.linkedin.com/help/linkedin/answer/a403269/" + }, + { + "api": "Mailchimp API", + "column": "Privacy Policy", + "url": "https://mailchimp.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.intuit.com/privacy/statement/" + }, + { + "api": "Mailchimp API", + "column": "Rate Limiting Policy", + "url": "https://mailchimp.com/developer/transactional/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://mailchimp.com/developer/" + }, + { + "api": "Mailchimp API", + "column": "Developer Community/Forum", + "url": "https://mailchimp.com/developer/community", + "outcome": "moved", + "status": 200, + "finalUrl": "https://mailchimp.com/developer/" + }, + { + "api": "Medium API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.medium.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://medium.engineering/?gi=9069274de046" + }, + { + "api": "Medium API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://policy.medium.com/privacy-policy-9db0094a1e0f", + "outcome": "moved", + "status": 200, + "finalUrl": "https://policy.medium.com/medium-terms-of-service-9db0094a1e0f" + }, + { + "api": "Microsoft Azure API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Azure API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/azure-developer/ct-p/AzureDeveloper", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=rPYOxdILNGwP_nvfLLJS1XSyL-rMuyEVDVMnB2w9wnhcRG5YETcu1KRWybnfgImAfrtKY3YnmQWWzyw_LXqRi5xIgmqDgCWfBQI3b0upF4QqzHOFzGJ5u8GMCelLqw03N4FTZ5q97ghEM7sDKyakdedOheyMW6pcIlx2zaTHpEo&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureDeveloper" + }, + { + "api": "Microsoft Azure Bot Service API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/azure/bot-service/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/azure/bot-service/?view=azure-bot-service-4.0" + }, + { + "api": "Microsoft Azure Bot Service API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Azure Bot Service API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/bot-framework/ct-p/BotFramework", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JR0rIU5PpefkLwJmdBjteOAy3YJ0DmKB9DLuCjwuAmHrn-HI_vlxwUQfQs5P1frDbeBOUAy0y_3nY3OVz33DZHR5EaaEQaFGaM1VGLq4naYMpyLDCIpo3GY1XpkYPCO7uWIwADpq1DpD9IO6LbKeHEIVop0hOiYyWgC-fAhT8JE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FBotFramework" + }, + { + "api": "Microsoft Azure Cognitive Services API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/azure/cognitive-services/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/azure/foundry/" + }, + { + "api": "Microsoft Azure Cognitive Services API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Azure Cognitive Services API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/azure-cognitive-services/ct-p/AzureCognitiveServices", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices" + }, + { + "api": "Microsoft Azure Computer Vision API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/azure/cognitive-services/computer-vision/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/azure/ai-services/computer-vision/" + }, + { + "api": "Microsoft Azure Computer Vision API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Azure Computer Vision API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/azure-cognitive-services/ct-p/AzureCognitiveServices", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices" + }, + { + "api": "Microsoft Azure Event Hubs API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Azure Event Hubs API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/event-hubs/ct-p/EventHubs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=OfT4aohP62ba_zd6MVDVAjHfFF1wGzp0MXR8G3H1H2H-mO2L78JTbQ-Gxb0C_zMph0TUXaXIMQuL0as-BH2X-nHEzKX_lJyhFZkATSUgu4a_IQ8ftNTp-E_79GUot0YDZIXUpG-vSvDaU8XX5fFevUnxWpD7v8k7EsD-iDPcLSw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FEventHubs" + }, + { + "api": "Microsoft Azure Face API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/azure/cognitive-services/face/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/azure/ai-services/face/overview-identity" + }, + { + "api": "Microsoft Azure Face API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Azure Face API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/azure-cognitive-services/ct-p/AzureCognitiveServices", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices" + }, + { + "api": "Microsoft Azure Key Vault API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Azure Key Vault API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/azure-key-vault/ct-p/AzureKeyVault", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=ZiUGw1Odf4aFfXyPOPzZCHl1O8_PBRUyFBRAqMVHRFuNNMhDSb59uUSNRhOKw7kgMI3W5lMX7v4m0r3CjvVbA2Wvq8m3cGza8MZqZYrCFxeNx0E1qGgs4fcAXyhqD1Fp8PHGh63FsGfhd4NJeKqdHdPnvleqmVVOIyF0ZxrfJUI&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureKeyVault" + }, + { + "api": "Microsoft Azure Speech Service API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/azure/cognitive-services/speech-service/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/azure/ai-services/speech-service/" + }, + { + "api": "Microsoft Azure Speech Service API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Azure Speech Service API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/azure-cognitive-services/ct-p/AzureCognitiveServices", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices" + }, + { + "api": "Microsoft Azure Storage API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Azure Storage API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/azure/storage/common/storage-scalability-targets", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/azure/storage/common/scalability-targets-standard-account" + }, + { + "api": "Microsoft Azure Storage API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/azure-storage/ct-p/AzureStorage", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=U_P5gT2XW39BQ6O8XZzh7kJsBEbfzCmJZfbwi_CoWS0Eo5sTduR4DvTqviM7Lw3up5kCZ2-v4-lacz7IpnHXJJq-37C7Rv_jfetZYADA-7jjYY9vxUvCjn40y_qnW1hbx2rx32K3-FLnf_E-Y7belEzS-RzpzaC-Hau--s3PDiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureStorage" + }, + { + "api": "Microsoft Dynamics 365 API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Dynamics API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://security.microsoft.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/authorize?client_id=80ccca67-54bd-44ab-8625-4b79c4dc7775&response_type=code%20id_token&scope=openid%20profile&state=OpenIdConnect.AuthenticationProperties%3DRdojUK_Q-5Nqymz2hLITLMRtwjeueyLhqJRymwIC3HbyhbrLhEV-dXYg08M6WB_Ubug7_xmV5Gdc5qxCMHMrUNsbpKlsjERYikN5CcU8QMwFYFZRzVO5Xlnwq16FltUQEVK2TUYdyTUVt506z68q_Q&response_mode=form_post&nonce=639234153079480059.MDdkYzk1MmQtNjBhNS00NDk0LTg2NjItMTZkMjQ4MzBkOGZiOTdhOTBlZWUtNjI2Mi00ZWY1LTk5OTctMmJhYTVmYWY1NzI2&client-request-id=4b59ab3b-a161-49af-87a1-bd3e50eed501&redirect_uri=https%3A%2F%2Fsecurity.microsoft.com%2F&x-client-SKU=ID_NET472&x-client-ver=8.16.0.0" + }, + { + "api": "Microsoft Graph API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/microsoft-graph/ct-p/MicrosoftGraph", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=IOvKJsjQCtJfIN4Wu4-ctI2dUUlttuh6FKaI0sLgYvUi403STK24K5mOB4PmRMA__AiGuKa8XUUCctgc6WBkFpfsGl1uyOpnLJAAg0xIXTuXfzaHTLovJfm9C89IQFOGbEOrQZdDwlHg8Ijz3e0K5KuAiPbHN77sew0uNEXmLUg&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FMicrosoftGraph" + }, + { + "api": "Microsoft Graph API for Teams", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph API for Teams", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/microsoft-teams/ct-p/MicrosoftTeams", + "outcome": "moved", + "status": 200, + "finalUrl": "https://techcommunity.microsoft.com/category/MicrosoftTeams" + }, + { + "api": "Microsoft Graph Bookings API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Bookings API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/bookings-api/ct-p/BookingsAPI", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=n6Eng-_d_GM2InaREQ0Zkn_7wNq6l8IBGIzmHYB23RAeRFvBOobd5xvGhnDTBGqmUxKg0KQIcDAimTYMoUvMBJ3zPzGlT4eh6jCXfMORn_dyBYF3bRTRzWF8HaE8yD9RIXA0BSV8aW78UMvFnibYOlMwBSibvOM2bIk-yZlnfaM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FBookingsAPI" + }, + { + "api": "Microsoft Graph Calendar API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/calendar", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/calendar?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Calendar API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Calendar API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/outlook-calendar/ct-p/OutlookCalendar", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=FUiZ57pDenN2vqWpceO8S9uA-W4qBcgTDgV_qJBnM117LQyLQTN7mxuGBcwqhSl8ng1O7qZjsaOcwZAmGyO6VJXXsS1WdNHeLGSPu4NHJfVilXsSuNsz_-utVvStCouNc8JEEjtZQ8Bc3a2yn3deJ6bCZf7tM1FYSYQWcbuKZb8&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookCalendar" + }, + { + "api": "Microsoft Graph Calendar Events API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/event", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/event?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Calendar Events API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Calendar Events API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/calendar-events/ct-p/CalendarEvents", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=2JHWBkEFTQl7qFFT4QORVaL3WsuG8uakeO2q4DXhhl4tmPE3Py9AwG31nOJFLQAzcG3h0bhXMAzRJXnQj2_E1SGMjtdbD_7zonGs9fh4cAODRvtXtBv4mL4pPAXugdPyOPshWu0aXU5mVgklHudZXY7t3_qJ0N7Or93NwZ_3oiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FCalendarEvents" + }, + { + "api": "Microsoft Graph Compliance API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Compliance API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/compliance/ct-p/Compliance", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=j09SoIc0r1G6N6P41OLqGj-aY4j1pLhqZ4UatlcElmXTzM28lE0EPX0wZtktGN5_DO41-raxFzh65VdBHskMZ5PFfZuthZ9qAqQTXHkFCdTcCEIDUzcBfliPi7kTyTBD-3pHZtODLlWQxXBHX_pQF9JazzyQ6MYR1o51vXB6sNM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FCompliance" + }, + { + "api": "Microsoft Graph Device API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/device", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/device?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Device API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Device API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/devices/ct-p/Devices", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=AFt1gJtvSXpFXIxovgJRdYIBsjRpQzi2WMWr9b5_3kWd7V9pWTG_V6WpqAamgAfS38TnkvBt2MWth0WS4j0TnwofzjedKwPh0P4FKBqCS0y7Cepb5n77ymz0TMU6nvEdkXOKr8WByLDI5Z3FnbBc8g&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDevices" + }, + { + "api": "Microsoft Graph Device Management API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/device", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/device?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Device Management API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Device Management API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/device-management/ct-p/DeviceManagement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=DTid1B__UHheVVpJgLvs2rIAaSFGwwhihmSKHXZJvFbPYS_79TAxN2g0vvlP9HNajOEjjCBugo2kcOLt3gr8QLyWVQmVy5ZEcFu8ERVaXq_u0MDBFE_u5fDLXIU_Jgr_2ok5sGfsorKDofMrk5c4PiJU1nGhDVs8N-Iwa_YJFIw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDeviceManagement" + }, + { + "api": "Microsoft Graph DeviceManagement API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph DeviceManagement API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/devicemanagement/ct-p/DeviceManagement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=V-1RQMF48do9f_ch08ENZvdewH9WA0hDLUiJOk-ewEm_nsdFZ0JkIumxqzXRX6J44VLhygxBvge0qHIKxvTSrNn7NnbhyEDfszPUL4x5Ca_a4JcNuuzvKYQ7GQapSy84l8psAJts5fuB8vHf1gPHAksZtLYc9afP0ObBKleWNBA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDeviceManagement" + }, + { + "api": "Microsoft Graph Directory API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/directory", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/directory?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Directory API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Directory API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/directory/ct-p/Directory", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=eRLbTLwJ3I77DFvxxyZA4GB5IxfXUfpvzAdK3DRNvyNnvOOneKwvf3RDkRm4_DmlxujoVWUlV9oKdJgNlMJ4PyvRLQQ2nES6Xi1wfON_z-d2_sFfiSKzSfKqfa-apSW7zfLUeI2QOKqlDemEuN9MxOe9DszxdbKw74BpMe4wd5s&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDirectory" + }, + { + "api": "Microsoft Graph Drive API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/drive", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/drive?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Drive API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Drive API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/drive/ct-p/Drive", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=WhIYCTe2qUkMqn3vheoxSPlcbtV-PawqSoTMWP-XlLcl6ummOWVxvA2dBCImRgDn30AKhCIJwgUlfXRBUT9qqHy7GkDMmY63XEvKRDgu4HPm2u7hutQ84DiKURgXXmsU0mltyJTzzjtWDvuLRAIGdQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDrive" + }, + { + "api": "Microsoft Graph Education API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Education API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/education/ct-p/Education", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=7i82YI2UXZEHMmEDtf7kdkFX4J5t3rkO5FHcEYl0c80C18ToRhzlBFwJUdALJFUsDDodyrMIwIuC5GQ9_xg5tpOheRlKLXaZAqHCNnuOEFTaRQbX8b7pZbpnWfYk50K9mGzW2Gv5Lgwuobl0tXvNVOMET0HH--Zq1hCWy8hU8vs&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FEducation" + }, + { + "api": "Microsoft Graph Files API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/driveitem", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Files API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Files API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/files/ct-p/Files", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=agCR0A5inu0R0s4N1n5Fw1AmtkVxvuKR2EK-4XY0QAARMXkrqvLEid6blj-tLBRqhycsG_bwoB-dy_cq6zkXO_lxO7Ve3W-gatHTsJYRTfWb5RH3hpZp02P3jI6aIO4SR736R78poOzp_jZwiJgUQA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FFiles" + }, + { + "api": "Microsoft Graph Groups API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/groups-overview", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/groups-overview?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Groups API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Groups API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/groups/ct-p/Groups", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=lIXngyBXKsipYINl9GunF17fJWYqwKKLEg0lVdndqXSXBtUi_OWGZqv17kflV4RYoY0NeobOyjOh3aaatisipI298vjRef9TxPhryS3h_POdqsxiy2IQNkTFIAjiPqaRe3KEAPgnynhYCknk0CtRwQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FGroups" + }, + { + "api": "Microsoft Graph Identity API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/identity", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/identity?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Identity API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Identity API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/identity/ct-p/Identity", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=tQSeWcrYantrCh-3DazJ-Qrs7zgUCL4gPraOHkMrXV9nLJxokK_d22YM5gZ3uduWQYIkLPVxAYZvbd-W9MI_UHy0aKmgcQKBRBLzsltrOJZ6ZB_EYVH-G6PAvuxYY9LqObCamB3Ytrf4zLX7CxAUI9IBPOr4gsmohaNIa8Q_B-w&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FIdentity" + }, + { + "api": "Microsoft Graph Insights API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Insights API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/insights/ct-p/Insights", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=mBhn9aXjLnvMtVbNoGU3rPQtPubFgSY3AeIRoSepa13AJKoU4E9lYO8EpYLCYIAu5TgiLH-aNlurCOzYY1MWkNOOBxp_a8HOND08AQpnTdkMlspVZhTM3b_qEylOiy2SbZ9l1uxaXy9ZPLr_7G4OJdcz6jFqLJNiS8nlCKBMsng&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FInsights" + }, + { + "api": "Microsoft Graph Intune API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Intune API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/intune/ct-p/Intune", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=UiKu_ljy0i3OqrHKFrfmcwghmFSgiIcg0-cJ5euPao5usGtTD1xrwT1k-2F7vXrjy9bciyI0wQuSLjz8wKPveqjrySvXJw82lz-_FBmIq51c0Mp8ilqAYMk2tJor5dEFBoMCyWtotPxJtHC2U2bnDA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FIntune" + }, + { + "api": "Microsoft Graph Mail API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Mail API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/outlook-developer/ct-p/OutlookDeveloper", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=W4uWdy1RJ19lG9lJRXaCdcEAk_cL87J9O4sIhl9HIGxAm1f-w-0XGUKj10ZbLc4jMWOKt7FHhi5liUOYBTIC-SbP2giPwXv7sF4oc_9zavhglu8A3n8LECT-G8r5QLoplpZuB3khomkZc8B9nHDHBiqbWDrchDVvrFYaO5kZG4k&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookDeveloper" + }, + { + "api": "Microsoft Graph Messages API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/message", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/message?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Messages API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Messages API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/messages/ct-p/Messages", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=Cs5q0H2HwBYrOQJy4A-6pVScGk-6VS0GZgfUcMo9GsLiwgbQs5Eto_tqJCZa57QNuovIQzWZuWSL61TYED5GnUdpCd2wOiRy6bkzujXPFXyns9Ox1tkVfSWa5Fp-EiVDCxEbjvor9z00HCdfYYqI3sJQR_B09m7TbfuE8lQ4Vnc&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FMessages" + }, + { + "api": "Microsoft Graph Notebooks API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/onenote", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Notebooks API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Notebooks API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/onenote-api/ct-p/OneNoteAPI", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=S4vQUkfylIeaDKBGxjXAjo8CZy9PNdfaitGk768iFFjIDa0MXfQZ18W1jQUorQbBPGrc2iP_gQz1L0JHunKYGKWKJGsTmH-7L1_AhNo-ClnmVQ_rI7FHyblBRN7ZUWrKFoVEWKhaLkv_eStltpLv6uGaxrG1j-tiC8jYZb_aLbg&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNoteAPI" + }, + { + "api": "Microsoft Graph Notes API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/onenote", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Notes API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Notes API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/onenote/ct-p/OneNote", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote" + }, + { + "api": "Microsoft Graph Notifications API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Notifications API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/notifications/ct-p/Notifications", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=qJAMWB0_U9_HCZHHMmsduGW-UiwrLfnRK8P7m62pQwsLt-rkBQ0KhXUjlcnC6m0USqTeYUODb0wIQqxXZeck9wZH8fhF9UOWMeJe8xIRRpc3ip-o73oIGU1CLYzEu5SsRfXmrQk75omASpfQpbgyQLIp2wabj8AtPDIa4RBKt-Q&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FNotifications" + }, + { + "api": "Microsoft Graph OneDrive API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/onedrive", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/onedrive?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph OneDrive API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph OneDrive API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/onedrive-developer/ct-p/OneDriveDeveloper", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=HfPeQh0_RYaCRf36VBH5tBxqe1MWs42oRuuytkTOTCPiqNYvSGBKJw5uQcXKpjuM19WPaVlSRQXOXmKOn14AOyXV39nye0Oa8ARujaW9OFUZnUwJ_Xp0fydrfuP0-cxe5TDT1Ajj4rVv6wbIjPO7N40A4nImXYvY58QsNY0OZpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneDriveDeveloper" + }, + { + "api": "Microsoft Graph OneNote API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/onenote", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph OneNote API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph OneNote API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/onenote/ct-p/OneNote", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote" + }, + { + "api": "Microsoft Graph People API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph People API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/people/ct-p/People", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=IpL2mZjCZlMR4t9f9iIyMIOMYkuHHD63glFTl_lmLbt5Yu4kJB6N1H9OE-G_B9x7q_sHU1gN5YOFXibmUROk-rUvhmVosfSMfANDvo1YScQhWoCZjcPSRiwgfg4Z_qy0-nvIBE_31X7cITR8B6bPpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPeople" + }, + { + "api": "Microsoft Graph Planner API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/planner", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/planner?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Planner API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Planner API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/planner/ct-p/Planner", + "outcome": "moved", + "status": 200, + "finalUrl": "https://techcommunity.microsoft.com/category/Planner" + }, + { + "api": "Microsoft Graph Presence API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/presence", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/presence?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Presence API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Presence API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/presence/ct-p/Presence", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=SPH8ED7f1Q8BKkACfdxlzkUrQv63uctiMnocU9QlhPmTHkiWgCoDeGotaPVFc_pdVU8oKQYmf7Bo9eZFf_wyN31TXv3Kbl61H_2bxS5Cg9g7vh4ME-C_-qz8eTAQMUXRk55nz3orDoXF3cHf1DvJTgPJ4CSdghzKO91xPHaxOl4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPresence" + }, + { + "api": "Microsoft Graph Print API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/print", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/print?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Print API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Print API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/print/ct-p/Print", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=ga8fXg-L519ZXCFJOcugjzhBzMxU3JztV3WbHVrGAHO9tfw5a_VGJGMYY3nmEEm_xavYhQs8Yhl8ctRQZmp2bHISVwwz7BVIt_TMbEGd3SB1csReETXO4uyQnxigdgbeeALvidXRxS3PvnpX5DQsHQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPrint" + }, + { + "api": "Microsoft Graph Reports API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/report", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/report?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Reports API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Reports API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/reports/ct-p/Reports", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=-DIeHo-K7qlOwwB2aV6WmKHFuRya1EsMaBGIfddPYpKOuFVoHKGPtMzqwGKlWPuaSk2rG0pQ9zbKLJiOVkf1JdczbK7RvI-ABPaT9pypvb9Fv7CGVRpaMZEesHHMr33e7bP3faIA7zD40dRckAyyMw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FReports" + }, + { + "api": "Microsoft Graph Security API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/security-api-overview", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/security-api-overview?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Security API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Security API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/security-api/ct-p/SecurityAPI", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=aahvtMvAuL3g-R_HaqvWqLALKG73wrFS46yGRkye2nB2Yhzgq_dCkKPYSoSUsqosFXPRuKQxmnz6e27BaSgRRn0X829HGCfb1wEMKNB09dFRjzjyCXR7ytq3qgilEvZ2RloShjKsVPtF14wABX6cWwSy-76MwUet9FLgBxkAIXU&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSecurityAPI" + }, + { + "api": "Microsoft Graph SharePoint API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/sharepoint", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/sharepoint?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph SharePoint API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph SharePoint API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/sharepoint/ct-p/SharePoint", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=1OIXvxtUgtctvRMt3UFYHpzXcscmEUGzGr6Op09CASKVMzKmM_moS6pPZ1EHIbKp2a_tZK538TV9rdugEA9Xh0uK3Kdsks2fFNjhYbZi-HyETDGtTb4Cm8ONDvACq4rfh7h7gcch9oQVRM5Qlnl1vp3nv9tHA7mf4gp45H2Vhos&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSharePoint" + }, + { + "api": "Microsoft Graph Sites API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Sites API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/sites/ct-p/Sites", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=47VNIbUQY_55YwUiqtznImZeU8FI86dAwwgyTtEy4m0viBWqNqfH4PSfeKSQBTz6G_tNFoVuLJ6OLOd3Un73-G9L9Dr6dA4u4E3rklt8a7v-CdVbP6kk7KYrnPaW2xnptlihp5DVK_yuwqnqDyCD5w&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSites" + }, + { + "api": "Microsoft Graph Tasks API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Tasks API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/planner/ct-p/Planner", + "outcome": "moved", + "status": 200, + "finalUrl": "https://techcommunity.microsoft.com/category/Planner" + }, + { + "api": "Microsoft Graph Teams API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/teams-api-overview", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/teams-api-overview?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Teams API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Teams API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/teams/ct-p/Teams", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=8MRaro1axFVPLv-5Jw7hsabra579tmzGn2McuMYY8p6krWq5v85WyJhQDQs301KpZwMpEuPq2y8KA_70w5zH7JE1E_QNA-qO_HSjSINYxL7dcr_P6Wqk8bh9RsStJz4YJ8O--gsQxhW45zkhlv1MBQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FTeams" + }, + { + "api": "Microsoft Graph Teamwork API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/teamwork", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/teamwork?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph Teamwork API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph Teamwork API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/teamwork/ct-p/Teamwork", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=d3aTO6UGEiexyOD3fkeKfNxcOYXuff0Xb-wVIub1jQuwXs902HC2VyM-933PJaiDIkY6XBxNPt3-_h2WiO6l_dgqqxCF7D_HNOnnT-YYJhleMAgLFnggUSw_YiizF3Gokh9qkbGhuDVcgeOvMlTOYTHP7hGxa0R1iH4Ql7ZysFk&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FTeamwork" + }, + { + "api": "Microsoft Graph To-Do API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/todo-overview", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/todo-overview?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph To-Do API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph To-Do API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/to-do/ct-p/ToDo", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=eA5z9uH5wD78dGoyLIBbKp_MkAwag9X4HJEMPZuCaYEg68YdTTE9LFFfvuos8pvSuWcJQaPQtcQcwYY7ez4KAGSIPDuPx0MwBVy3bdsHHPYojLMlxr21Cot-45ApAfbaGhR4N2Vw-oae22aCL8bcHA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FToDo" + }, + { + "api": "Microsoft Graph User API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/user", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/user?view=graph-rest-1.0" + }, + { + "api": "Microsoft Graph User API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Graph User API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/user/ct-p/User", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=90qNwhmKFR98VL6RWt6ZI2eVEt655YJECxnKUl3avLhtoHHpaspMcCbozrUIvkJ6qLulvvhDlVtjue5mp7As-byJ9ZK1MEB_ySJnO8BYilslPA4zvFJKA1FosFOSzcKcCcrSQ8D-hhYHQ2ifSBMFuw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FUser" + }, + { + "api": "Microsoft OneDrive API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/onedrive", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/onedrive?view=graph-rest-1.0" + }, + { + "api": "Microsoft OneDrive API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft OneDrive API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/onedrive-developer/ct-p/OneDriveDeveloper", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=HfPeQh0_RYaCRf36VBH5tBxqe1MWs42oRuuytkTOTCPiqNYvSGBKJw5uQcXKpjuM19WPaVlSRQXOXmKOn14AOyXV39nye0Oa8ARujaW9OFUZnUwJ_Xp0fydrfuP0-cxe5TDT1Ajj4rVv6wbIjPO7N40A4nImXYvY58QsNY0OZpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneDriveDeveloper" + }, + { + "api": "Microsoft OneNote API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/onenote", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0" + }, + { + "api": "Microsoft OneNote API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft OneNote API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/onenote/ct-p/OneNote", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote" + }, + { + "api": "Microsoft Outlook API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Outlook API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/outlook-developer/ct-p/OutlookDeveloper", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=W4uWdy1RJ19lG9lJRXaCdcEAk_cL87J9O4sIhl9HIGxAm1f-w-0XGUKj10ZbLc4jMWOKt7FHhi5liUOYBTIC-SbP2giPwXv7sF4oc_9zavhglu8A3n8LECT-G8r5QLoplpZuB3khomkZc8B9nHDHBiqbWDrchDVvrFYaO5kZG4k&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookDeveloper" + }, + { + "api": "Microsoft Planner API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/graph/api/resources/planner-overview", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/graph/api/resources/planner-overview?view=graph-rest-1.0" + }, + { + "api": "Microsoft Planner API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Planner API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/planner/ct-p/Planner", + "outcome": "moved", + "status": 200, + "finalUrl": "https://techcommunity.microsoft.com/category/Planner" + }, + { + "api": "Microsoft Power Automate API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Power Automate API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/power-automate/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/dynamics365/release-plans/" + }, + { + "api": "Microsoft Power Automate API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/power-automate/ct-p/PowerAutomate", + "outcome": "moved", + "status": 200, + "finalUrl": "https://techcommunity.microsoft.com/category/PowerAutomate" + }, + { + "api": "Microsoft Power BI API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Power BI API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/power-bi/ct-p/PowerBI", + "outcome": "moved", + "status": 200, + "finalUrl": "https://techcommunity.microsoft.com/category/PowerBI" + }, + { + "api": "Microsoft Teams API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Teams API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/microsoft-teams/ct-p/MicrosoftTeams", + "outcome": "moved", + "status": 200, + "finalUrl": "https://techcommunity.microsoft.com/category/MicrosoftTeams" + }, + { + "api": "Microsoft Teams Calling API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Teams Calling API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/microsoft-teams/ct-p/MicrosoftTeams", + "outcome": "moved", + "status": 200, + "finalUrl": "https://techcommunity.microsoft.com/category/MicrosoftTeams" + }, + { + "api": "Microsoft Teams Webhooks API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Teams Webhooks API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/microsoft-teams/ct-p/MicrosoftTeams", + "outcome": "moved", + "status": 200, + "finalUrl": "https://techcommunity.microsoft.com/category/MicrosoftTeams" + }, + { + "api": "Microsoft Translator API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/azure/cognitive-services/translator/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/azure/ai-services/translator/" + }, + { + "api": "Microsoft Translator API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Translator API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/azure-cognitive-services/ct-p/AzureCognitiveServices", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices" + }, + { + "api": "Microsoft Translator Text API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://learn.microsoft.com/en-us/azure/cognitive-services/translator/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://learn.microsoft.com/en-us/azure/ai-services/translator/" + }, + { + "api": "Microsoft Translator Text API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://privacy.microsoft.com/en-us/privacystatement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.microsoft.com/en-us/privacy/privacystatement" + }, + { + "api": "Microsoft Translator Text API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://techcommunity.microsoft.com/t5/azure-cognitive-services/ct-p/AzureCognitiveServices", + "outcome": "moved", + "status": 200, + "finalUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices" + }, + { + "api": "MongoDB Atlas API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.mongodb.com/legal/privacy-policy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.mongodb.com/legal/privacy/privacy-policy" + }, + { + "api": "MongoDB Realm API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.mongodb.com/legal/privacy-policy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.mongodb.com/legal/privacy/privacy-policy" + }, + { + "api": "MongoDB Realm API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.mongodb.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.mongodb.com/company/contact/mongodb-vulnerability-disclosure-policy" + }, + { + "api": "MongoDB Realm API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://community.mongodb.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.mongodb.com/community" + }, + { + "api": "Netflix API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://netflixtechblog.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://netflixtechblog.com/?gi=9f707bc7f1a4" + }, + { + "api": "Notion API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.notion.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.notion.com/guides/get-started/overview" + }, + { + "api": "Notion API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.notion.so/Privacy-Policy-3468d120cf614d60844b00fcfb50529d", + "outcome": "dead", + "status": 404, + "finalUrl": "https://www.notion.so/Privacy-Policy-3468d120cf614d60844b00fcfb50529d" + }, + { + "api": "Notion API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.notion.so/Terms-of-Service-5d353cf927d1433a9cb2e6b8b69d78a2", + "outcome": "dead", + "status": 404, + "finalUrl": "https://www.notion.so/Terms-of-Service-5d353cf927d1433a9cb2e6b8b69d78a2" + }, + { + "api": "Notion API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://developers.notion.com/changelog", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.notion.com/changelog" + }, + { + "api": "Notion API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://www.notion.so/Security-65b0336c3b4e43b7b8ad2728052f647b", + "outcome": "dead", + "status": 404, + "finalUrl": "https://www.notion.so/Security-65b0336c3b4e43b7b8ad2728052f647b" + }, + { + "api": "Okta API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developer.okta.com/docs/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.okta.com/" + }, + { + "api": "Okta API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.okta.com/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.okta.com/legal/privacy-policy/" + }, + { + "api": "Okta API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.okta.com/agreements/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.okta.com/legal/" + }, + { + "api": "Okta API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.okta.com/security/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://trust.okta.com/" + }, + { + "api": "Okta API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://support.okta.com/help/community", + "outcome": "moved", + "status": 200, + "finalUrl": "https://support.okta.com/help/s/community?language=en_US" + }, + { + "api": "OpenAI API", + "column": "Official_Documentation_URL", + "url": "https://platform.openai.com/docs/overview", + "outcome": "moved", + "status": 200, + "finalUrl": "https://platform.openai.com/" + }, + { + "api": "OpenAI API", + "column": "Rate Limiting Policy", + "url": "https://platform.openai.com/docs/guides/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.openai.com/api/docs/guides/rate-limits" + }, + { + "api": "OpenAI API", + "column": "Release Notes", + "url": "https://platform.openai.com/docs/gpts/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.openai.com/api/docs/gpts/release-notes" + }, + { + "api": "OpenAI API", + "column": "Official_Documentation_URL", + "url": "https://platform.openai.com/docs/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.openai.com/api/docs" + }, + { + "api": "OpenAI API", + "column": "Privacy Policy", + "url": "https://openai.com/privacy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://openai.com/policies/privacy-policy/" + }, + { + "api": "OpenAI API", + "column": "Terms of Service", + "url": "https://openai.com/terms/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://openai.com/policies/terms-of-use/" + }, + { + "api": "OpenAI API", + "column": "Rate Limiting Policy", + "url": "https://platform.openai.com/docs/guides/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.openai.com/api/docs/guides/rate-limits" + }, + { + "api": "OpenAI API", + "column": "Release Notes", + "url": "https://platform.openai.com/docs/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.openai.com/api/docs/release-notes" + }, + { + "api": "OpenAI API", + "column": "Security Policy", + "url": "https://openai.com/security/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://openai.com/security-and-privacy/" + }, + { + "api": "OpenAI DALL-E API", + "column": "Official_Documentation_URL", + "url": "https://platform.openai.com/docs/guides/images", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.openai.com/api/docs/guides/images-vision" + }, + { + "api": "OpenAI DALL-E API", + "column": "Privacy Policy", + "url": "https://openai.com/privacy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://openai.com/policies/privacy-policy/" + }, + { + "api": "OpenAI DALL-E API", + "column": "Terms of Service", + "url": "https://openai.com/terms/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://openai.com/policies/terms-of-use/" + }, + { + "api": "OpenAI DALL-E API", + "column": "Rate Limiting Policy", + "url": "https://platform.openai.com/docs/guides/images/rate-limits", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.openai.com/api/docs/guides/images/rate-limits" + }, + { + "api": "OpenAI DALL-E API", + "column": "Release Notes", + "url": "https://platform.openai.com/docs/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.openai.com/api/docs/release-notes" + }, + { + "api": "OpenAI DALL-E API", + "column": "Security Policy", + "url": "https://openai.com/security/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://openai.com/security-and-privacy/" + }, + { + "api": "OpenAI GPT API", + "column": "Official_Documentation_URL", + "url": "https://platform.openai.com/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.openai.com/api/docs" + }, + { + "api": "OpenAI GPT API", + "column": "Privacy Policy", + "url": "https://openai.com/privacy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://openai.com/policies/privacy-policy/" + }, + { + "api": "OpenAI GPT API", + "column": "Terms of Service", + "url": "https://openai.com/terms/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://openai.com/policies/terms-of-use/" + }, + { + "api": "OpenAI GPT API", + "column": "Rate Limiting Policy", + "url": "https://platform.openai.com/docs/guides/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.openai.com/api/docs/guides/rate-limits" + }, + { + "api": "OpenAI GPT API", + "column": "Release Notes", + "url": "https://platform.openai.com/docs/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developers.openai.com/api/docs/release-notes" + }, + { + "api": "OpenAI GPT API", + "column": "Security Policy", + "url": "https://openai.com/security/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://openai.com/security-and-privacy/" + }, + { + "api": "OpenWeatherMap One Call API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://openweathermap.org/privacy-policy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://openweather.co.uk/privacy-policy" + }, + { + "api": "OpenWeatherMap One Call API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://openweathermap.org/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://openweather.co.uk/api/files/file/Openweather_website_terms_and_conditions_of_use.pdf" + }, + { + "api": "PayPal API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developer.paypal.com/docs/api/overview", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.paypal.com/api/rest" + }, + { + "api": "PayPal API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/ua/privacy-full", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/legalhub/paypal/privacy-full" + }, + { + "api": "PayPal API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/ua/useragreement-full", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/legalhub/paypal/useragreement-full" + }, + { + "api": "PayPal API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developer.paypal.com/docs/api/overview/#rate-limiting", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.paypal.com/api/rest" + }, + { + "api": "PayPal API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/security/security-protections", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/security/learn-about-paypal-secure-technology" + }, + { + "api": "PayPal API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://www.paypal-community.com/", + "outcome": "error", + "status": 0, + "finalUrl": null, + "error": "fetch failed" + }, + { + "api": "PayPal Checkout API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developer.paypal.com/docs/checkout/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.paypal.com/checkout" + }, + { + "api": "PayPal Checkout API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/ua/privacy-full", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/legalhub/paypal/privacy-full" + }, + { + "api": "PayPal Checkout API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/ua/useragreement-full", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/legalhub/paypal/useragreement-full" + }, + { + "api": "PayPal Checkout API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/security/security-protections", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/security/learn-about-paypal-secure-technology" + }, + { + "api": "PayPal Checkout API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.paypal-community.com/", + "outcome": "error", + "status": 0, + "finalUrl": null, + "error": "fetch failed" + }, + { + "api": "PayPal Orders API", + "column": "Official_Documentation_URL", + "url": "https://developer.paypal.com/docs/api/orders/v2/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.paypal.com/api/orders/v2" + }, + { + "api": "PayPal Orders API", + "column": "Privacy Policy", + "url": "https://www.paypal.com/us/webapps/mpp/ua/privacy-full", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/legalhub/paypal/privacy-full" + }, + { + "api": "PayPal Orders API", + "column": "Terms of Service", + "url": "https://developer.paypal.com/docs/api/terms-of-service", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developer.paypal.com/api/terms-of-service" + }, + { + "api": "PayPal Orders API", + "column": "Rate Limiting Policy", + "url": "https://developer.paypal.com/docs/api/limits", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developer.paypal.com/api/limits" + }, + { + "api": "PayPal Orders API", + "column": "Release Notes", + "url": "https://developer.paypal.com/docs/api/changelog", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developer.paypal.com/api/changelog" + }, + { + "api": "PayPal Orders API", + "column": "Security Policy", + "url": "https://www.paypal.com/us/webapps/mpp/security/security-protections", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/security/learn-about-paypal-secure-technology" + }, + { + "api": "PayPal Orders API", + "column": "Developer Community/Forum", + "url": "https://www.paypal-community.com/", + "outcome": "error", + "status": 0, + "finalUrl": null, + "error": "fetch failed" + }, + { + "api": "PayPal Payments API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/ua/privacy-full", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/legalhub/paypal/privacy-full" + }, + { + "api": "PayPal Payments API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/ua/useragreement-full", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/legalhub/paypal/useragreement-full" + }, + { + "api": "PayPal Payments API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developer.paypal.com/docs/api-basics/rate-limiting/", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developer.paypal.com/docs/api-basics/rate-limiting/" + }, + { + "api": "PayPal Payments API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/security/security-protections", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/security/learn-about-paypal-secure-technology" + }, + { + "api": "PayPal Payments API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.paypal-community.com/", + "outcome": "error", + "status": 0, + "finalUrl": null, + "error": "fetch failed" + }, + { + "api": "Paypal Payouts API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developer.paypal.com/docs/payouts/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.paypal.com/payouts/overview" + }, + { + "api": "Paypal Payouts API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/ua/privacy-full", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/legalhub/paypal/privacy-full" + }, + { + "api": "Paypal Payouts API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/ua/legalhub-full", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/legalhub/paypal/home" + }, + { + "api": "Paypal Payouts API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developer.paypal.com/docs/api-basics/rate-limiting/", + "outcome": "dead", + "status": 404, + "finalUrl": "https://developer.paypal.com/docs/api-basics/rate-limiting/" + }, + { + "api": "Paypal Payouts API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/security/security-protections", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/security/learn-about-paypal-secure-technology" + }, + { + "api": "PayPal Payouts API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developer.paypal.com/docs/payouts/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.paypal.com/payouts/overview" + }, + { + "api": "PayPal Payouts API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/ua/privacy-full", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/legalhub/paypal/privacy-full" + }, + { + "api": "PayPal Payouts API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/ua/useragreement-full", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/legalhub/paypal/useragreement-full" + }, + { + "api": "PayPal Payouts API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/security/security-protections", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/security/learn-about-paypal-secure-technology" + }, + { + "api": "PayPal Payouts API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.paypal-community.com/", + "outcome": "error", + "status": 0, + "finalUrl": null, + "error": "fetch failed" + }, + { + "api": "PayPal Subscriptions API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developer.paypal.com/docs/subscriptions/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.paypal.com/subscriptions/about" + }, + { + "api": "PayPal Subscriptions API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/ua/privacy-full", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/legalhub/paypal/privacy-full" + }, + { + "api": "PayPal Subscriptions API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/ua/useragreement-full", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/legalhub/paypal/useragreement-full" + }, + { + "api": "PayPal Subscriptions API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.paypal.com/us/webapps/mpp/security/security-protections", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.paypal.com/us/security/learn-about-paypal-secure-technology" + }, + { + "api": "PayPal Subscriptions API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.paypal-community.com/", + "outcome": "error", + "status": 0, + "finalUrl": null, + "error": "fetch failed" + }, + { + "api": "Pinterest Ads API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.pinterest.com/docs/ads-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.pinterest.com/docs/overview/welcome/" + }, + { + "api": "Pinterest Ads API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://policy.pinterest.com/privacy-policy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://policy.pinterest.com/en/privacy-policy" + }, + { + "api": "Pinterest Ads API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.pinterest.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.pinterest.com/docs/overview/welcome/" + }, + { + "api": "Pinterest Ads API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.pinterest.com/docs/ads-api/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.pinterest.com/docs/overview/welcome/" + }, + { + "api": "Pinterest Ads API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://developers.pinterest.com/community", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.pinterest.com/" + }, + { + "api": "Pinterest API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.pinterest.com/docs/api/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.pinterest.com/docs/api/v5/introduction/" + }, + { + "api": "Pinterest API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://policy.pinterest.com/privacy-policy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://policy.pinterest.com/en/privacy-policy" + }, + { + "api": "Pinterest API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://policy.pinterest.com/terms-of-service", + "outcome": "moved", + "status": 200, + "finalUrl": "https://policy.pinterest.com/en/terms-of-service" + }, + { + "api": "Pinterest API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.pinterest.com/docs/api/rate-limits/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.pinterest.com/docs/api/v5/introduction/" + }, + { + "api": "Pinterest API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://developers.pinterest.com/docs/changelog/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.pinterest.com/docs/changelog/changelog/" + }, + { + "api": "Pinterest API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://community.pinterest.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.pinterest.biz/" + }, + { + "api": "Plaid API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://plaid.com/security/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://plaid.com/trust-safety/" + }, + { + "api": "Reddit API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.redditinc.com/policies/privacy-policy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.reddit.com/policies/privacy-policy" + }, + { + "api": "Reddit API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.redditinc.com/policies/user-agreement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://redditinc.com/policies/user-agreement" + }, + { + "api": "Reddit API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.redditinc.com/blog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://redditinc.com/news" + }, + { + "api": "Reddit OAuth API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.redditinc.com/policies/privacy-policy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.reddit.com/policies/privacy-policy" + }, + { + "api": "Reddit OAuth API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.redditinc.com/policies/user-agreement", + "outcome": "moved", + "status": 200, + "finalUrl": "https://redditinc.com/policies/user-agreement" + }, + { + "api": "Reddit OAuth API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.redditinc.com/blog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://redditinc.com/news" + }, + { + "api": "Salesforce API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.salesforce.com/company/privacy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.salesforce.com/company/legal/privacy/?bc=HL" + }, + { + "api": "Salesforce API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.salesforce.com/company/legal/agreements/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.salesforce.com/company/legal/?bc=HL" + }, + { + "api": "Salesforce API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://developer.salesforce.com/forums", + "outcome": "moved", + "status": 200, + "finalUrl": "https://trailhead.salesforce.com/trailblazer-community/feed" + }, + { + "api": "SendGrid API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://docs.sendgrid.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/docs/sendgrid" + }, + { + "api": "SendGrid API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://sendgrid.com/policies/privacy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "SendGrid API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://sendgrid.com/policies/tos/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "SendGrid API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://sendgrid.com/policies/security/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "SendGrid API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://sendgrid.com/docs/for-developers", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/docs/sendgrid/for-developers" + }, + { + "api": "SendGrid Email API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://docs.sendgrid.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/docs/sendgrid" + }, + { + "api": "SendGrid Email API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://sendgrid.com/policies/privacy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "SendGrid Email API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://sendgrid.com/policies/tos/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "SendGrid Email API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://sendgrid.com/policies/security/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "SendGrid Email API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://sendgrid.com/docs/for-developers", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/docs/sendgrid/for-developers" + }, + { + "api": "Shopify Admin API", + "column": "Official_Documentation_URL", + "url": "https://shopify.dev/api/admin", + "outcome": "moved", + "status": 200, + "finalUrl": "https://shopify.dev/docs/api/admin-graphql/latest" + }, + { + "api": "Shopify Admin API", + "column": "Rate Limiting Policy", + "url": "https://shopify.dev/api/admin#rate-limiting", + "outcome": "moved", + "status": 200, + "finalUrl": "https://shopify.dev/docs/api/admin-graphql/latest" + }, + { + "api": "Shopify API", + "column": "Rate Limiting Policy", + "url": "https://shopify.dev/docs/api/usage/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://shopify.dev/docs/api/usage/limits" + }, + { + "api": "Shopify Storefront API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://shopify.dev/docs/api/storefront", + "outcome": "moved", + "status": 200, + "finalUrl": "https://shopify.dev/docs/api/storefront/latest" + }, + { + "api": "Slack Access Logs API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/admin/access-logs", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://api.slack.com/admin/access-logs" + }, + { + "api": "Slack Access Logs API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/admin/access-logs#rate-limits", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://api.slack.com/admin/access-logs" + }, + { + "api": "Slack Access Logs API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Access Logs API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Admin Analytics API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Admin Analytics API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Admin API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/admin", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://api.slack.com/admin" + }, + { + "api": "Slack Admin API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/admin#rate-limits", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://api.slack.com/admin" + }, + { + "api": "Slack Admin API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Admin API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Admin Audit API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/admin/audit-logs", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://api.slack.com/admin/audit-logs" + }, + { + "api": "Slack Admin Audit API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/admin/audit-logs#rate-limits", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://api.slack.com/admin/audit-logs" + }, + { + "api": "Slack Admin Audit API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Admin Audit API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Analytics API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Analytics API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/" + }, + { + "api": "Slack API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/apis/web-api/rate-limits/" + }, + { + "api": "Slack API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack API (General)", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/" + }, + { + "api": "Slack API (General)", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/apis/web-api/rate-limits/" + }, + { + "api": "Slack API (General)", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack API (General)", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack API Logs API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/admin.analytics.getFile", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/admin.analytics.getFile/" + }, + { + "api": "Slack API Logs API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/admin.analytics.getFile#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/admin.analytics.getFile/" + }, + { + "api": "Slack API Logs API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack API Logs API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack API Permissions API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack API Permissions API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack API Testing API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack API Testing API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack App API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/apis/web-api/rate-limits/" + }, + { + "api": "Slack App API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack App API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack App Directory API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/apis/web-api/rate-limits/" + }, + { + "api": "Slack App Directory API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack App Directory API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Apps API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Apps API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Audit API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Audit API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Audit Logs API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/admin/audit-logs", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://api.slack.com/admin/audit-logs" + }, + { + "api": "Slack Audit Logs API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/admin/audit-logs#rate-limits", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://api.slack.com/admin/audit-logs" + }, + { + "api": "Slack Audit Logs API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Audit Logs API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Block Kit API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/block-kit", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/block-kit/" + }, + { + "api": "Slack Block Kit API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/block-kit#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/block-kit/" + }, + { + "api": "Slack Block Kit API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Block Kit API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Bot API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/apis/web-api/rate-limits/" + }, + { + "api": "Slack Bot API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Bot API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Bot Users API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Bot Users API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Bots API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Bots API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Channels API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/channels.create", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/conversations.create/" + }, + { + "api": "Slack Channels API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/channels.create#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/conversations.create/" + }, + { + "api": "Slack Channels API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Channels API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Conversations API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Conversations API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Dialogs API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/dialogs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/legacy/legacy-dialogs/" + }, + { + "api": "Slack Dialogs API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/dialogs#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/legacy/legacy-dialogs/" + }, + { + "api": "Slack Dialogs API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Dialogs API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Directory API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Directory API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Emoji API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/emoji.list", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/emoji.list/" + }, + { + "api": "Slack Emoji API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/emoji.list#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/emoji.list/" + }, + { + "api": "Slack Emoji API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Emoji API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Events API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/events", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/events/" + }, + { + "api": "Slack Events API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/events#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/events/" + }, + { + "api": "Slack Events API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Events API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack File Sharing API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/files.upload", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/files.upload/" + }, + { + "api": "Slack File Sharing API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/files.upload#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/files.upload/" + }, + { + "api": "Slack File Sharing API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack File Sharing API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Files API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/files.list", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/files.list/" + }, + { + "api": "Slack Files API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/files.list#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/files.list/" + }, + { + "api": "Slack Files API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Files API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Incoming Webhooks API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/messaging/webhooks", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/messaging/sending-messages-using-incoming-webhooks/" + }, + { + "api": "Slack Incoming Webhooks API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/messaging/webhooks#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/messaging/sending-messages-using-incoming-webhooks/" + }, + { + "api": "Slack Incoming Webhooks API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Incoming Webhooks API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Interactive Messages API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/interactivity", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/interactivity/" + }, + { + "api": "Slack Interactive Messages API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/interactivity#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/interactivity/" + }, + { + "api": "Slack Interactive Messages API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Interactive Messages API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Interactivity API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/interactivity", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/interactivity/" + }, + { + "api": "Slack Interactivity API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/interactivity/handling#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/interactivity/handling-user-interaction/" + }, + { + "api": "Slack Interactivity API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Interactivity API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Message Events API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/events-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/apis/events-api/" + }, + { + "api": "Slack Message Events API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/events-api#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/apis/events-api/" + }, + { + "api": "Slack Message Events API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Message Events API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Messages API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/messaging", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/messaging/" + }, + { + "api": "Slack Messages API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/messaging#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/messaging/" + }, + { + "api": "Slack Messages API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Messages API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Messaging API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/messaging", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/messaging/" + }, + { + "api": "Slack Messaging API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/messaging#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/messaging/" + }, + { + "api": "Slack Messaging API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Messaging API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack OAuth API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/authentication", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/authentication/" + }, + { + "api": "Slack OAuth API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/authentication#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/authentication/" + }, + { + "api": "Slack OAuth API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack OAuth API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Permissions API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/scopes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/scopes/" + }, + { + "api": "Slack Permissions API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/scopes#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/scopes/" + }, + { + "api": "Slack Permissions API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Permissions API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Pins API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/pins.add", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/pins.add/" + }, + { + "api": "Slack Pins API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/pins.add#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/pins.add/" + }, + { + "api": "Slack Pins API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Pins API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Reactions API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/reactions.add", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/reactions.add/" + }, + { + "api": "Slack Reactions API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/reactions.add#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/reactions.add/" + }, + { + "api": "Slack Reactions API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Reactions API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Reminders API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/reminders.add", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/reminders.add/" + }, + { + "api": "Slack Reminders API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/reminders.add#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/reminders.add/" + }, + { + "api": "Slack Reminders API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Reminders API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack RTM API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/rtm", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/legacy/legacy-rtm-api/" + }, + { + "api": "Slack RTM API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/rtm#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/legacy/legacy-rtm-api/" + }, + { + "api": "Slack RTM API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack RTM API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack SCIM API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/scim", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://api.slack.com/admins/scim" + }, + { + "api": "Slack SCIM API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/scim#rate-limits", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://api.slack.com/admins/scim" + }, + { + "api": "Slack SCIM API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack SCIM API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Scopes API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/scopes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/scopes/" + }, + { + "api": "Slack Scopes API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/scopes#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/scopes/" + }, + { + "api": "Slack Scopes API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Scopes API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Search API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/search.all", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/search.all/" + }, + { + "api": "Slack Search API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/search.all#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/search.all/" + }, + { + "api": "Slack Search API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Search API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Shortcuts API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Shortcuts API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Status API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/users.getPresence", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/users.getPresence/" + }, + { + "api": "Slack Status API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/users.getPresence#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/users.getPresence/" + }, + { + "api": "Slack Status API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Status API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack User API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/users.list", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/users.list/" + }, + { + "api": "Slack User API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/users.list#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/users.list/" + }, + { + "api": "Slack User API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack User API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Usergroups API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/usergroups.create", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/usergroups.create/" + }, + { + "api": "Slack Usergroups API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/usergroups.create#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/usergroups.create/" + }, + { + "api": "Slack Usergroups API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Usergroups API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Users API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/users.info", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/users.info/" + }, + { + "api": "Slack Users API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/methods/users.info#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/reference/methods/users.info/" + }, + { + "api": "Slack Users API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Users API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Web API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/web", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/apis/web-api/" + }, + { + "api": "Slack Web API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/web#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/apis/web-api/" + }, + { + "api": "Slack Web API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Web API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Workflow API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/workflows", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/workflows/" + }, + { + "api": "Slack Workflow API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/workflows#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/workflows/" + }, + { + "api": "Slack Workflow API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Workflow API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Workflow Builder API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/workflows", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/workflows/" + }, + { + "api": "Slack Workflow Builder API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/workflows#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/workflows/" + }, + { + "api": "Slack Workflow Builder API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Workflow Builder API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Slack Workflows API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://api.slack.com/workflows", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/workflows/" + }, + { + "api": "Slack Workflows API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://api.slack.com/workflows#rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/workflows/" + }, + { + "api": "Slack Workflows API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://api.slack.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.slack.dev/changelog/" + }, + { + "api": "Slack Workflows API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://slack.com/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://slack.com/intl/en-au/trust/security" + }, + { + "api": "Stripe API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api" + }, + { + "api": "Stripe API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Balance API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/balance", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/balance" + }, + { + "api": "Stripe Balance API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Balance API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Balance API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Balance API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Balance API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Balance Transactions API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/balance_transactions", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/balance_transactions" + }, + { + "api": "Stripe Balance Transactions API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Balance Transactions API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Balance Transactions API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Balance Transactions API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Balance Transactions API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Bank Accounts API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Bank Accounts API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Bank Accounts API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Bank Accounts API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Bank Accounts API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Billing API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Billing API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Billing API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Billing API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Billing API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Charges API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/charges", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/charges" + }, + { + "api": "Stripe Charges API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Charges API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Charges API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Charges API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Charges API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Checkout API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/checkout", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/checkout/sessions" + }, + { + "api": "Stripe Checkout API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Checkout API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Checkout API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Checkout API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Checkout API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Checkout Sessions API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/checkout/sessions", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/checkout/sessions" + }, + { + "api": "Stripe Checkout Sessions API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Checkout Sessions API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Checkout Sessions API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Checkout Sessions API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Checkout Sessions API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Connect API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/connect", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/connect" + }, + { + "api": "Stripe Connect API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Connect API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Connect API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Connect API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Connect API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Coupons API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/coupons", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/coupons" + }, + { + "api": "Stripe Coupons API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Coupons API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Coupons API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Coupons API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Coupons API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Customers API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/customers", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/customers" + }, + { + "api": "Stripe Customers API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Customers API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Customers API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Customers API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Customers API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Discounts API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/discounts", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/discounts" + }, + { + "api": "Stripe Discounts API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Discounts API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Discounts API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Discounts API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Discounts API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Disputes API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/disputes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/disputes" + }, + { + "api": "Stripe Disputes API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Disputes API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Disputes API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Disputes API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Disputes API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Events API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/events", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/events" + }, + { + "api": "Stripe Events API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Events API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Events API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Events API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Events API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Identity API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/identity", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/identity/verification_sessions" + }, + { + "api": "Stripe Identity API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Identity API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Identity API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Identity API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Identity API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Invoices API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/invoices", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/invoices" + }, + { + "api": "Stripe Invoices API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Invoices API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Invoices API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Invoices API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Invoices API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Invoicing API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/invoices", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/invoices" + }, + { + "api": "Stripe Invoicing API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Invoicing API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Invoicing API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Invoicing API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Invoicing API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Issuing API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://stripe.com/docs/issuing", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/issuing" + }, + { + "api": "Stripe Issuing API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Issuing API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Issuing API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Issuing API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Payment Intents API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/payments/payment-intents", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/payments/payment-intents" + }, + { + "api": "Stripe Payment Intents API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Payment Intents API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Payment Intents API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Payment Intents API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Payment Intents API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Payment Links API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Payment Links API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Payment Links API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Payment Links API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Payment Links API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Payment Methods API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/payment_methods", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/payment_methods" + }, + { + "api": "Stripe Payment Methods API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Payment Methods API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Payment Methods API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Payment Methods API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Payment Methods API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe PaymentIntents API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/payment_intents", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/payment_intents" + }, + { + "api": "Stripe PaymentIntents API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe PaymentIntents API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe PaymentIntents API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe PaymentIntents API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe PaymentIntents API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe PaymentLinks API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe PaymentLinks API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe PaymentLinks API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe PaymentLinks API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe PaymentLinks API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Payments API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Payments API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Payments API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Payments API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Payments API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Payouts API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/payouts", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/payouts" + }, + { + "api": "Stripe Payouts API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Payouts API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Payouts API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Payouts API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Payouts API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Products API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/products", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/products" + }, + { + "api": "Stripe Products API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Products API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Products API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Products API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Products API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Radar API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/radar", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/radar/early_fraud_warnings" + }, + { + "api": "Stripe Radar API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Radar API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Radar API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Radar API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Radar API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Refunds API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/refunds", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/refunds" + }, + { + "api": "Stripe Refunds API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Refunds API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Refunds API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Refunds API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Refunds API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Setup Intents API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/setup_intents", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/setup_intents" + }, + { + "api": "Stripe Setup Intents API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Setup Intents API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Setup Intents API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Setup Intents API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Setup Intents API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Subscription API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/subscriptions", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/subscriptions" + }, + { + "api": "Stripe Subscription API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Subscription API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Subscription API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Subscription API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Subscription API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Subscriptions API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/subscriptions", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/subscriptions" + }, + { + "api": "Stripe Subscriptions API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Subscriptions API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Subscriptions API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Subscriptions API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Subscriptions API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Tax API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/tax", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/tax" + }, + { + "api": "Stripe Tax API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Tax API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Tax API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Tax API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Tax API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Tax Rates API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/tax_rates", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/tax_rates" + }, + { + "api": "Stripe Tax Rates API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Tax Rates API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Tax Rates API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Tax Rates API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Tax Rates API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Terminal API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/terminal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/terminal/connection_tokens" + }, + { + "api": "Stripe Terminal API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Terminal API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Terminal API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Terminal API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Terminal API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Stripe Transfers API", + "column": "Official_Documentation_URL", + "url": "https://stripe.com/docs/api/transfers", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/api/transfers" + }, + { + "api": "Stripe Transfers API", + "column": "Privacy Policy", + "url": "https://stripe.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/privacy" + }, + { + "api": "Stripe Transfers API", + "column": "Terms of Service", + "url": "https://stripe.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://stripe.com/au/legal" + }, + { + "api": "Stripe Transfers API", + "column": "Rate Limiting Policy", + "url": "https://stripe.com/docs/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/rate-limits" + }, + { + "api": "Stripe Transfers API", + "column": "Release Notes", + "url": "https://stripe.com/docs/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/changelog" + }, + { + "api": "Stripe Transfers API", + "column": "Security Policy", + "url": "https://stripe.com/docs/security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.stripe.com/security" + }, + { + "api": "Telegram Bot API", + "column": "Developer Community/Forum", + "url": "https://community.telegram.org/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://core.telegram.org/" + }, + { + "api": "TikTok API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.tiktok.com/legal/privacy-policy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.tiktok.com/legal/page/row/privacy-policy/en" + }, + { + "api": "TikTok API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.tiktok.com/legal/terms-of-service", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.tiktok.com/legal/page/row/terms-of-service/en" + }, + { + "api": "Trello API", + "column": "Privacy Policy", + "url": "https://trello.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.atlassian.com/legal/privacy-policy" + }, + { + "api": "Trello API", + "column": "Terms of Service", + "url": "https://trello.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.atlassian.com/legal/atlassian-customer-agreement" + }, + { + "api": "Trello API", + "column": "Developer Community/Forum", + "url": "https://community.atlassian.com/t5/Trello/ct-p/trello", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.atlassian.com/forums/Trello/ct-p/trello" + }, + { + "api": "Trello Cards API", + "column": "Privacy Policy", + "url": "https://trello.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.atlassian.com/legal/privacy-policy" + }, + { + "api": "Trello Cards API", + "column": "Terms of Service", + "url": "https://trello.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.atlassian.com/legal/atlassian-customer-agreement" + }, + { + "api": "Trello Cards API", + "column": "Developer Community/Forum", + "url": "https://community.atlassian.com/t5/Trello/ct-p/trello", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.atlassian.com/forums/Trello/ct-p/trello" + }, + { + "api": "Trello Webhooks API", + "column": "Privacy Policy", + "url": "https://trello.com/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.atlassian.com/legal/privacy-policy" + }, + { + "api": "Trello Webhooks API", + "column": "Terms of Service", + "url": "https://trello.com/legal", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.atlassian.com/legal/atlassian-customer-agreement" + }, + { + "api": "Trello Webhooks API", + "column": "Developer Community/Forum", + "url": "https://community.atlassian.com/t5/Trello/ct-p/trello", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.atlassian.com/forums/Trello/ct-p/trello" + }, + { + "api": "Twilio API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio API for WhatsApp", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio API for WhatsApp", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio API for WhatsApp", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Authy API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Authy API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Authy API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Autopilot API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.twilio.com/docs/autopilot", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/docs" + }, + { + "api": "Twilio Autopilot API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Autopilot API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Autopilot API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Call Feedback API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Call Feedback API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Call Feedback API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Call Insights API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Call Insights API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Call Insights API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Chat API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Chat API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Chat API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Conversations API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Conversations API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Conversations API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Email API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Email API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Email API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Fax API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.twilio.com/docs/fax", + "outcome": "moved", + "status": 200, + "finalUrl": "https://help.twilio.com/hc/en-us/articles/1260800821230-Programmable-Fax-Migration-Guide-for-Documo-mFax" + }, + { + "api": "Twilio Fax API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Fax API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Fax API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Flex API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Flex API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Flex API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio IP Messaging API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio IP Messaging API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio IP Messaging API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Lookup API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Lookup API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Lookup API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Media Streams API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Media Streams API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Media Streams API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Messaging API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Messaging API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Messaging API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Messaging Insights API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Messaging Insights API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Messaging Insights API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Notify API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Notify API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Notify API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Programmable Chat API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Programmable Chat API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Programmable Chat API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Programmable SMS API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.twilio.com/docs/sms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/docs/messaging" + }, + { + "api": "Twilio Programmable SMS API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Programmable SMS API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Programmable SMS API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Programmable Video API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Programmable Video API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Programmable Video API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Programmable Voice API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Programmable Voice API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Programmable Voice API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Proxy API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Proxy API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Proxy API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio SMS API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.twilio.com/docs/sms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/docs/messaging" + }, + { + "api": "Twilio SMS API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio SMS API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio SMS API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Studio API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Studio API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Studio API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Sync API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Sync API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Sync API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio TaskRouter API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio TaskRouter API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio TaskRouter API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Verify API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Verify API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Verify API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Video API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Video API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Video API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Voice API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Voice API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Voice API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Voice Insights API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Voice Insights API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Voice Insights API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twilio Wireless API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/privacy" + }, + { + "api": "Twilio Wireless API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twilio.com/legal/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/legal/tos" + }, + { + "api": "Twilio Wireless API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twilio.com/changelog", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.twilio.com/en-us/changelog" + }, + { + "api": "Twitch API", + "column": "Privacy Policy", + "url": "https://www.twitch.tv/p/legal/privacy-policy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://legal.twitch.com/legal/privacy-policy" + }, + { + "api": "Twitch API", + "column": "Terms of Service", + "url": "https://www.twitch.tv/p/legal/terms-of-service", + "outcome": "moved", + "status": 200, + "finalUrl": "https://legal.twitch.com/legal/terms-of-service" + }, + { + "api": "Twitch API", + "column": "Developer Community/Forum", + "url": "https://discuss.dev.twitch.tv/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://discuss.dev.twitch.com/" + }, + { + "api": "Twitch Helix API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.twitch.tv/p/legal/privacy-policy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://legal.twitch.com/legal/privacy-policy" + }, + { + "api": "Twitch Helix API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.twitch.tv/p/legal/terms-of-service", + "outcome": "moved", + "status": 200, + "finalUrl": "https://legal.twitch.com/legal/terms-of-service" + }, + { + "api": "Twitch Helix API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://discuss.dev.twitch.tv/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://discuss.dev.twitch.com/" + }, + { + "api": "Twitter Ads API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developer.twitter.com/en/docs/twitter-ads-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.x.com/overview" + }, + { + "api": "Twitter Ads API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://twitter.com/en/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://x.com/en/privacy" + }, + { + "api": "Twitter Ads API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://twitter.com/en/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://x.com/en/tos" + }, + { + "api": "Twitter Ads API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://help.twitter.com/en/rules-and-policies/report-security-vulnerability", + "outcome": "dead", + "status": 404, + "finalUrl": "https://help.x.com/en/rules-and-policies/report-security-vulnerability" + }, + { + "api": "Twitter Ads API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://twittercommunity.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://devcommunity.x.com/" + }, + { + "api": "Twitter API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developer.twitter.com/en/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.x.com/overview" + }, + { + "api": "Twitter API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://twitter.com/en/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://x.com/en/privacy" + }, + { + "api": "Twitter API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://twitter.com/en/tos", + "outcome": "moved", + "status": 200, + "finalUrl": "https://x.com/en/tos" + }, + { + "api": "Twitter API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developer.twitter.com/en/docs/twitter-api/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.x.com/overview" + }, + { + "api": "Twitter API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://help.twitter.com/en/rules-and-policies/report-security-vulnerability", + "outcome": "dead", + "status": 404, + "finalUrl": "https://help.x.com/en/rules-and-policies/report-security-vulnerability" + }, + { + "api": "Twitter API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://twittercommunity.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://devcommunity.x.com/" + }, + { + "api": "Twitter API v2", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developer.twitter.com/en/docs/twitter-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.x.com/overview" + }, + { + "api": "Twitter API v2", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://twitter.com/en/privacy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://x.com/en/privacy" + }, + { + "api": "Twitter API v2", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developer.twitter.com/en/developer-terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.x.com/developer-terms" + }, + { + "api": "Twitter API v2", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developer.twitter.com/en/docs/twitter-api/rate-limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.x.com/overview" + }, + { + "api": "Twitter API v2", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://help.twitter.com/en/rules-and-policies/report-security-vulnerability", + "outcome": "dead", + "status": 404, + "finalUrl": "https://help.x.com/en/rules-and-policies/report-security-vulnerability" + }, + { + "api": "Twitter API v2", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://twittercommunity.com/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://devcommunity.x.com/" + }, + { + "api": "Uber API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.uber.com/legal/privacy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.uber.com/global/zh/privacy-notice-riders-order-recipients/" + }, + { + "api": "Uber API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.uber.com/legal/terms/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.uber.com/au/en/legal/general-terms-of-use/" + }, + { + "api": "Uber Eats API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.uber.com/legal/privacy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.uber.com/global/zh/privacy-notice-riders-order-recipients/" + }, + { + "api": "Uber Eats API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.uber.com/legal/terms/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.uber.com/au/en/legal/general-terms-of-use/" + }, + { + "api": "WhatsApp Business API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.facebook.com/docs/whatsapp", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/whatsapp" + }, + { + "api": "WhatsApp Business API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.whatsapp.com/legal/business-terms", + "outcome": "other", + "status": 400, + "finalUrl": "https://www.whatsapp.com/legal/business-terms" + }, + { + "api": "WhatsApp Business API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.facebook.com/docs/whatsapp/changelog", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/whatsapp/on-premises/sunset" + }, + { + "api": "WhatsApp Business API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.whatsapp.com/security", + "outcome": "other", + "status": 400, + "finalUrl": "https://www.whatsapp.com/security" + }, + { + "api": "WhatsApp Business API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://developers.facebook.com/community", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/community" + }, + { + "api": "WhatsApp Cloud API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.facebook.com/docs/whatsapp/cloud-api", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/whatsapp/cloud-api" + }, + { + "api": "WhatsApp Cloud API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developers.facebook.com/docs/whatsapp/cloud-api/changelog", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/docs/whatsapp/business-platform/changelog" + }, + { + "api": "WhatsApp Cloud API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.whatsapp.com/security", + "outcome": "other", + "status": 400, + "finalUrl": "https://www.whatsapp.com/security" + }, + { + "api": "WhatsApp Cloud API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.facebook.com/community", + "outcome": "other", + "status": 400, + "finalUrl": "https://developers.facebook.com/community" + }, + { + "api": "Xero API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developer.xero.com/documentation", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.xero.com/documentation/getting-started-guide/" + }, + { + "api": "Xero API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.xero.com/legal/privacy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.xero.com/au/legal/privacy/" + }, + { + "api": "Xero API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.xero.com/legal/terms/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.xero.com/au/legal/terms/" + }, + { + "api": "YouTube Analytics API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Analytics API", + "column": "Rate Limiting Policy", + "url": "https://developers.google.com/youtube/analytics/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/reporting?hl=pt-br" + }, + { + "api": "YouTube Analytics API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/analytics/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/reporting" + }, + { + "api": "YouTube Analytics Reporting API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/reporting/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/reporting?hl=th" + }, + { + "api": "YouTube Analytics Reporting API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Analytics Reporting API", + "column": "Release Notes", + "rowIncomplete": true, + "url": "https://groups.google.com/g/youtube-reporting", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-reporting" + }, + { + "api": "YouTube API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/youtube", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube?hl=id" + }, + { + "api": "YouTube API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube API", + "column": "Security Policy", + "url": "https://www.youtube.com/about/policies/#security", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.youtube.com/howyoutubeworks/our-policies/" + }, + { + "api": "YouTube API for Broadcasts", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube API for Broadcasts", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Caption Tracks API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Caption Tracks API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Captions API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Captions API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Categories API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Categories API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Channel API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/youtube/v3/docs/channels", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/docs/channels?hl=fr" + }, + { + "api": "YouTube Channel API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Channel API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Channel Branding API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Channel Branding API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Channel Sections API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/youtube/v3/docs/channelSections", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/docs/channelSections?hl=id" + }, + { + "api": "YouTube Channel Sections API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Channel Sections API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Comment Threads API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Comment Threads API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Comments API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/youtube/v3/docs/comments", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/docs/comments?hl=pt-br" + }, + { + "api": "YouTube Comments API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Comments API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Content ID API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Content ID API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/youtube-partner-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-partner-api" + }, + { + "api": "YouTube Content Owners API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Data API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Data API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Data API v3", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Data API v3", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Data Insights API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Data Insights API", + "column": "Rate Limiting Policy", + "url": "https://developers.google.com/youtube/analytics/quota", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/reporting?hl=id" + }, + { + "api": "YouTube Data Insights API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/analytics/release-notes", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/reporting" + }, + { + "api": "YouTube Data Insights API", + "column": "Developer Community/Forum", + "url": "https://groups.google.com/g/youtube-analytics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-analytics" + }, + { + "api": "YouTube Data v3 API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Data v3 API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Embed API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Embeds API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/youtube/iframe_api_reference", + "outcome": "other", + "status": 500, + "finalUrl": "https://developers.google.com/youtube/iframe_api_reference?hl=fr" + }, + { + "api": "YouTube Embeds API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Live API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/v3/live", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/live/getting-started?hl=zh-tw" + }, + { + "api": "YouTube Live API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Live Broadcasts API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Live Broadcasts API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Live Events API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Live Events API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Live Streaming API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/v3/live", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/live/getting-started?hl=zh-tw" + }, + { + "api": "YouTube Live Streaming API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Live Streaming API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/v3/live/getting-started#quota", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/live/getting-started?hl=he" + }, + { + "api": "YouTube Livestreaming API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/youtube/v3/live", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/live/getting-started?hl=zh-tw" + }, + { + "api": "YouTube Livestreaming API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Livestreaming API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Livestreams API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Livestreams API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Monetization API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Notifications API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Notifications API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Partner API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Player API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/iframe_api_reference", + "outcome": "other", + "status": 500, + "finalUrl": "https://developers.google.com/youtube/iframe_api_reference?hl=fr" + }, + { + "api": "YouTube Player API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Player API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/iframe_api_reference#limits", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/iframe_api_reference?hl=ja" + }, + { + "api": "YouTube Player API", + "column": "Security Policy", + "rowIncomplete": true, + "url": "https://groups.google.com/g/youtube-iframe-api", + "outcome": "moved", + "status": 200, + "finalUrl": "https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-iframe-api" + }, + { + "api": "YouTube Playlist API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Playlist API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Playlist Items API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/youtube/v3/docs/playlistItems", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/docs/playlistItems?hl=fr" + }, + { + "api": "YouTube Playlist Items API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Playlist Items API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Playlists API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Playlists API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Reporting API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Resumable Uploads API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Resumable Uploads API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Search API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/youtube/v3/docs/search", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/docs/search?hl=es-419" + }, + { + "api": "YouTube Search API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Search API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Subscription API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/youtube/v3/docs/subscriptions", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/docs/subscriptions?hl=zh-cn" + }, + { + "api": "YouTube Subscription API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Subscription API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Subscriptions API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/youtube/v3/docs/subscriptions", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/docs/subscriptions?hl=zh-cn" + }, + { + "api": "YouTube Subscriptions API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Subscriptions API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Super Chat API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Super Chat API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Thumbnails API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Thumbnails API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Video Abilities API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Video Abilities API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Video Abuses API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/youtube/v3/docs/videoAbuseReportReasons", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/docs/videoAbuseReportReasons?hl=zh-tw" + }, + { + "api": "YouTube Video Abuses API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Video Abuses API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Video API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Video API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Video Categories API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Video Categories API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Watermark API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/youtube/v3/docs/watermarks", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/docs/watermarks?hl=es-419" + }, + { + "api": "YouTube Watermark API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Watermark API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "YouTube Watermarks API", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/youtube/v3/docs/watermarks", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/docs/watermarks?hl=es-419" + }, + { + "api": "YouTube Watermarks API", + "column": "Terms of Service", + "url": "https://developers.google.com/youtube/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/terms/api-services-terms-of-service" + }, + { + "api": "YouTube Watermarks API", + "column": "Release Notes", + "url": "https://developers.google.com/youtube/v3/revision_history", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.google.com/youtube/v3/revision_history?hl=ar" + }, + { + "api": "Zendesk Activities API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Activities API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Activities API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Activity Stream API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Activity Stream API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Activity Stream API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://developer.zendesk.com", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developer.zendesk.com/documentation/" + }, + { + "api": "Zendesk API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk App Framework API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk App Framework API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk App Framework API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Apps API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Apps API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Apps API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Apps Framework API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Apps Framework API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Apps Framework API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Chat API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Chat API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Chat API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Chat Conversations API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Chat Conversations API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Chat Conversations API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Chat SDK API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Chat SDK API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Chat SDK API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Custom Fields API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Custom Fields API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Custom Fields API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Custom Objects API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Custom Objects API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Custom Objects API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Customer Satisfaction API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Customer Satisfaction API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Customer Satisfaction API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Email API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Email API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Email API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Explore API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Explore API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Explore API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Guide API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Guide API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Guide API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Help Center API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Help Center API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Help Center API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Insights API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Insights API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Insights API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Integration API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Integration API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Integration API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Macros API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Macros API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Macros API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Messaging API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Messaging API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Messaging API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Metrics API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Metrics API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Metrics API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Mobile SDK API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Mobile SDK API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Mobile SDK API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk NPS API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk NPS API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk NPS API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Organizations API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Organizations API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Organizations API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Permissions API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Permissions API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Permissions API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Reporting API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Reporting API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Reporting API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Request API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Request API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Request API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Schedules API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Schedules API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Schedules API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Search API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Search API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Search API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Sell API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Sell API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Sell API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Side Conversations API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Side Conversations API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Side Conversations API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk SLA API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk SLA API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk SLA API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk SLA Breaches API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk SLA Breaches API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk SLA Breaches API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk SLA Policies API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk SLA Policies API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk SLA Policies API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Sunshine API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Sunshine API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Sunshine API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Sunshine Conversations API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Sunshine Conversations API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Sunshine Conversations API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Support API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Support API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Support API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Suspended Tickets API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Suspended Tickets API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Suspended Tickets API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Tags API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Tags API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Tags API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Talk API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Talk API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Talk API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Ticket Fields API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Ticket Fields API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Ticket Fields API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Ticket Forms API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Ticket Forms API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Ticket Forms API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Ticketing API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Ticketing API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Ticketing API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Tickets API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Tickets API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Tickets API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Triggers API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Triggers API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Triggers API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk User Events API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk User Events API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk User Events API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Users API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Users API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Users API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Voice API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Voice API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Voice API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Web Widget API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Web Widget API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Web Widget API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zendesk Webhooks API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/customers-partners/privacy-policy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/" + }, + { + "api": "Zendesk Webhooks API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.zendesk.com/company/terms", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/" + }, + { + "api": "Zendesk Webhooks API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://support.zendesk.com/hc/en-us/community/topics", + "outcome": "moved", + "status": 200, + "finalUrl": "https://community.zendesk.com/" + }, + { + "api": "Zillow API", + "column": "Official_Documentation_URL", + "url": "https://www.zillow.com/howto/api/Overview.htm", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://www.zillow.com/howto/api/Overview.htm" + }, + { + "api": "Zillow API", + "column": "Privacy Policy", + "url": "https://www.zillow.com/z/privacy.htm", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://www.zillow.com/z/privacy.htm" + }, + { + "api": "Zillow API", + "column": "Terms of Service", + "url": "https://www.zillow.com/howto/api/APIOverview.htm#Terms", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://www.zillow.com/howto/api/APIOverview.htm" + }, + { + "api": "Zillow API", + "column": "Rate Limiting Policy", + "url": "https://www.zillow.com/howto/api/APIOverview.htm#Usage", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://www.zillow.com/howto/api/APIOverview.htm" + }, + { + "api": "Zillow API", + "column": "Release Notes", + "url": "https://www.zillow.com/howto/api/Changelog.htm", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://www.zillow.com/howto/api/Changelog.htm" + }, + { + "api": "Zillow API", + "column": "Security Policy", + "url": "https://www.zillow.com/security.htm", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://www.zillow.com/security.htm" + }, + { + "api": "Zillow API", + "column": "Developer Community/Forum", + "url": "https://www.zillow.com/howto/api/DiscussionForum.htm", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://www.zillow.com/howto/api/DiscussionForum.htm" + }, + { + "api": "Zoom API", + "column": "Official_Documentation_URL", + "rowIncomplete": true, + "url": "https://marketplace.zoom.us/docs", + "outcome": "moved", + "status": 200, + "finalUrl": "https://developers.zoom.us/docs/" + }, + { + "api": "Zoom API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://explore.zoom.us/en/privacy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zoom.com/en/trust/privacy/privacy-statement/" + }, + { + "api": "Zoom API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://explore.zoom.us/en/terms/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zoom.com/en/trust/terms/" + }, + { + "api": "Zoom API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://explore.zoom.us/en/security/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zoom.com/en/trust/security/" + }, + { + "api": "Zoom Video API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://explore.zoom.us/en/privacy/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zoom.com/en/trust/privacy/privacy-statement/" + }, + { + "api": "Zoom Video API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://explore.zoom.us/en/terms/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zoom.com/en/trust/terms/" + }, + { + "api": "Zoom Video API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://explore.zoom.us/en/trust/security/", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zoom.com/en/trust/security/" + }, + { + "api": "ZoomInfo API", + "column": "Privacy Policy", + "rowIncomplete": true, + "url": "https://www.zoominfo.com/about-zoominfo/privacy-policy", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zoominfo.com/legal/privacy-policy" + }, + { + "api": "ZoomInfo API", + "column": "Terms of Service", + "rowIncomplete": true, + "url": "https://www.zoominfo.com/about-zoominfo/terms-of-use", + "outcome": "moved", + "status": 200, + "finalUrl": "https://www.zoominfo.com/legal/terms-of-use" + }, + { + "api": "ZoomInfo API", + "column": "Rate Limiting Policy", + "rowIncomplete": true, + "url": "https://www.zoominfo.com/security", + "outcome": "blocked", + "status": 403, + "finalUrl": "https://www.zoominfo.com/security" + } + ] +}