Okta Integration Network (OIN) Scraper
Pricing
from $3.00 / 1,000 results
Okta Integration Network (OIN) Scraper
Scrape the Okta Integration Network (OIN) - 8,000+ pre-built integrations. Search by keyword, browse by category, or fetch by slug. Returns title, description, logo, tags, SSO/SCIM support, and detail links.
Pricing
from $3.00 / 1,000 results
Rating
0.0
(0)
Developer
Crawler Bros
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Extract integrations from the Okta Integration Network — 8,000+ pre-built connectors for SSO, SCIM provisioning, MFA, and more.
What does this actor do?
The Okta Integration Network (OIN) is the world's largest catalog of pre-built identity integrations. This actor scrapes the OIN to help you:
- Discover integrations by keyword (e.g., find all Salesforce-related apps)
- Browse by category (SSO, Lifecycle Management, MFA, Workflows, etc.)
- Fetch specific integrations by their slug identifier
Each record includes the integration title, description, logo URL, supported use cases (SSO, SCIM, MFA), access methods (SAML, OIDC, SWA), provisioning capabilities, and a direct link to the OIN detail page.
Modes
| Mode | Description |
|---|---|
search | Full-text search across all OIN integrations |
browse | Browse integrations by category or use-case filter |
getBySlug | Fetch one or more specific integrations by URL slug |
Input
| Parameter | Type | Description |
|---|---|---|
mode | String (required) | Operation mode: search, browse, or getBySlug |
query | String | Keyword search query (mode=search) |
category | String | Filter by use-case or functionality tag (mode=browse) |
sortBy | String | Sort order: featured, title, or latest |
slugs | Array | URL slugs to look up (mode=getBySlug) |
maxItems | Integer | Maximum number of records (1–10000, default 100) |
Example: Search for Salesforce integrations
{"mode": "search","query": "salesforce","maxItems": 10}
Example: Browse all SSO integrations
{"mode": "browse","category": "okta:oin/use-case/single-sign-on","sortBy": "title","maxItems": 50}
Example: Get specific integrations by slug
{"mode": "getBySlug","slugs": ["salesforce-com", "slack", "google-workspace"],"maxItems": 10}
Output
Each record contains:
| Field | Type | Description |
|---|---|---|
title | String | Integration name |
description | String | Short description |
slug | String | URL slug (e.g., salesforce-com) |
detailUrl | String | Full URL to the OIN detail page |
logoUrl | String | Integration logo image URL |
useCases | Array | Use-case labels (SSO, Lifecycle Management, etc.) |
accessMethods | Array | Access protocols (SAML, OIDC, SWA) |
functionalities | Array | Additional functionality tags |
provisioningCapabilities | Array | Provisioning operations (Create, Update, Deactivate) |
collections | Array | Collection memberships (e.g., Secure Identity Integrations) |
ssoSupported | Boolean | True if SSO is supported |
scimSupported | Boolean | True if SCIM provisioning is supported |
mfaSupported | Boolean | True if MFA is supported |
provisioningSupported | Boolean | True if provisioning is supported |
addIntegrationUrl | String | Direct link to add this integration to an Okta org |
sourceUrl | String | OIN page URL for this record |
recordType | String | Always integration |
scrapedAt | String | ISO 8601 timestamp of when the record was scraped |
Sample output
{"title": "Salesforce.com","description": "Sign into salesforce.com and automate onboarding and offboarding processes","slug": "salesforce-com","detailUrl": "https://www.okta.com/integrations/salesforce-com/","logoUrl": "https://ok3static.oktacdn.com/fs/bcg/4/gfs1iokrfjfrd8oW71d8","useCases": ["Single Sign-On", "Lifecycle Management"],"accessMethods": ["SAML", "SWA"],"functionalities": ["SCIM", "Workflows Connectors"],"provisioningCapabilities": ["Create", "Update", "Deactivate"],"ssoSupported": true,"scimSupported": true,"provisioningSupported": true,"sourceUrl": "https://www.okta.com/integrations/salesforce-com/","recordType": "integration","scrapedAt": "2026-05-30T12:00:00+00:00"}
Categories (mode=browse)
| Category Value | Description |
|---|---|
okta:oin/use-case/single-sign-on | Single Sign-On (7,700+ apps) |
okta:oin/use-case/lifecycle-management | User Provisioning / Lifecycle Management |
okta:oin/use-case/multi-factor-authentication-mfa | Multi-factor Authentication |
okta:oin/use-case/automation | Automation & Workflows |
okta:oin/use-case/directory-and-hr-sync | Directory and HR Sync |
okta:oin/functionalities/scim | SCIM Provisioning |
okta:oin/access/saml | SAML 2.0 |
okta:oin/access/oidc | OpenID Connect |
FAQ
Is an Okta account required? No. This actor scrapes the public OIN catalog — no authentication or API keys needed.
How many integrations are available? Over 8,280 integrations at time of writing, covering SSO (7,750+), Lifecycle Management, MFA, Workflows, and more.
What is the rate limit? The OIN catalog returns 24 results per page. The actor respects the API with a 300ms delay between pages.
What is the getBySlug mode?
Slugs are the URL-path identifiers from OIN integration URLs, e.g., salesforce-com from https://www.okta.com/integrations/salesforce-com/.
Can I filter by multiple categories simultaneously?
The browse mode currently supports one category filter at a time. For multi-category searches, run multiple actor calls.