{
  "meta": {
    "category": "storage",
    "label": "Storage & Database",
    "icon": "🗄️",
    "color": "#4ade80",
    "count": 70,
    "generated": "2026-03-30T23:25:37.758Z",
    "source": "https://apimap.dev"
  },
  "apis": [
    {
      "id": "cloudinary",
      "name": "Cloudinary API",
      "provider": "Cloudinary",
      "category": "storage",
      "description": "Upload, transform, optimize, and deliver images and videos at scale via URL or API.",
      "longDescription": "Cloudinary is a media management platform that handles the entire media pipeline. Upload images and videos, apply on-the-fly transformations via URL parameters (resize, crop, watermark, format convert, quality optimize), organize with tags and folders, and deliver via global CDN.",
      "color": "#3448c5",
      "tags": [
        "images",
        "video",
        "transform",
        "cdn",
        "optimization"
      ],
      "authType": "basic",
      "authDescription": "Use API Key and API Secret as Basic Auth credentials. Signed uploads use HMAC-SHA1.",
      "authExample": "Authorization: Basic base64(api_key:api_secret)",
      "baseUrl": "https://api.cloudinary.com/v1_1/{cloud_name}",
      "docsUrl": "https://cloudinary.com/documentation/image_upload_api_reference",
      "hasFreeTier": true,
      "pricing": {
        "model": "pay-as-you-go",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "25 credits/month (≈25GB storage, 25GB bandwidth)"
        },
        "tiers": [],
        "details": "Free: 25 credits/mo. Plus: $89/mo for 225 credits. Advanced: $224/mo. 1 credit ≈ 1GB storage or bandwidth or 1,000 transformations."
      },
      "rateLimit": "500 requests/hour (free)",
      "endpoints": [
        {
          "method": "POST",
          "path": "/{resource_type}/upload",
          "description": "Upload a file"
        },
        {
          "method": "GET",
          "path": "/{resource_type}/list/{next_cursor}",
          "description": "List resources in a folder"
        },
        {
          "method": "GET",
          "path": "/resources/{resource_type}/{public_id}",
          "description": "Get metadata for a resource"
        },
        {
          "method": "POST",
          "path": "/{resource_type}/destroy",
          "description": "Delete a resource"
        },
        {
          "method": "POST",
          "path": "/resources/{resource_type}/tags",
          "description": "Add or remove tags"
        }
      ],
      "sampleRequest": "curl https://api.cloudinary.com/v1_1/$CLOUD_NAME/image/upload \\\n  -u \"$CLOUDINARY_API_KEY:$CLOUDINARY_API_SECRET\" \\\n  -F \"file=@/path/to/image.jpg\" \\\n  -F \"folder=products\" \\\n  -F \"public_id=product-001\"",
      "sampleResponse": "{\n  \"asset_id\": \"b5e6d2b39ba3e0869d67141ba7dba6cf\",\n  \"public_id\": \"products/product-001\",\n  \"format\": \"jpg\",\n  \"width\": 1920,\n  \"height\": 1080,\n  \"bytes\": 482604,\n  \"secure_url\": \"https://res.cloudinary.com/demo/image/upload/products/product-001.jpg\",\n  \"created_at\": \"2024-01-18T12:00:00Z\"\n}",
      "scoreDepth": 78,
      "scoreLatency": 38,
      "scorePricing": 75,
      "score": 65,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:51.220Z",
      "verifiedStatus": 404,
      "latencyMs": 973
    },
    {
      "id": "supabase",
      "name": "Supabase API",
      "provider": "Supabase",
      "category": "storage",
      "description": "Open-source Firebase alternative — Postgres database, auth, real-time, storage, and edge functions.",
      "longDescription": "Supabase gives you a full backend via auto-generated REST and GraphQL APIs over Postgres, plus Auth (email, social, MFA), real-time subscriptions, file storage, and serverless edge functions. Each project gets its own Postgres database with row-level security.",
      "color": "#3ecf8e",
      "tags": [
        "postgres",
        "realtime",
        "auth",
        "storage",
        "row-level-security"
      ],
      "authType": "api-key",
      "authDescription": "Use the anon key for public access (respects RLS) or service_role key for admin access. Pass as apikey header or Bearer token.",
      "authExample": "apikey: your-anon-key\nAuthorization: Bearer your-anon-key",
      "baseUrl": "https://{project-id}.supabase.co/rest/v1",
      "docsUrl": "https://supabase.com/docs/guides/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 500,
          "unit": "MB database",
          "period": "forever",
          "note": "50k MAU, 1 GB file storage"
        },
        "tiers": [
          {
            "name": "Free",
            "monthlyCents": 0,
            "included": "500 MB DB, 1 GB storage, 50k MAU"
          },
          {
            "name": "Pro",
            "monthlyCents": 2500,
            "included": "8 GB DB, 100 GB storage, unlimited MAU"
          },
          {
            "name": "Team",
            "monthlyCents": 59900,
            "included": "SOC2, SSO, priority support"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Free: 500MB DB, 1GB storage, 50k MAU. Pro: $25/mo (8GB DB, 100GB storage). Team: $599/mo. Enterprise: custom."
      },
      "rateLimit": "1,000 requests/s (database)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/{table}",
          "description": "Query a table (PostgREST filters)"
        },
        {
          "method": "POST",
          "path": "/{table}",
          "description": "Insert one or more rows"
        },
        {
          "method": "PATCH",
          "path": "/{table}",
          "description": "Update matching rows"
        },
        {
          "method": "DELETE",
          "path": "/{table}",
          "description": "Delete matching rows"
        },
        {
          "method": "POST",
          "path": "/rpc/{function}",
          "description": "Call a Postgres function/RPC"
        }
      ],
      "sampleRequest": "curl \"https://xyz.supabase.co/rest/v1/todos?select=*&completed=eq.false&order=created_at.desc\" \\\n  -H \"apikey: $SUPABASE_ANON_KEY\" \\\n  -H \"Authorization: Bearer $SUPABASE_ANON_KEY\"",
      "sampleResponse": "[\n  {\n    \"id\": 1,\n    \"title\": \"Build the API Map\",\n    \"completed\": false,\n    \"created_at\": \"2024-01-18T12:00:00Z\",\n    \"user_id\": \"uuid-here\"\n  },\n  {\n    \"id\": 2,\n    \"title\": \"Ship to production\",\n    \"completed\": false,\n    \"created_at\": \"2024-01-17T09:00:00Z\",\n    \"user_id\": \"uuid-here\"\n  }\n]",
      "scoreDepth": 78,
      "scoreLatency": 0,
      "scorePricing": 90,
      "score": 58,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:17:50.949Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "pinecone",
      "name": "Pinecone API",
      "provider": "Pinecone",
      "category": "storage",
      "description": "Managed vector database for storing and querying embeddings in AI-powered search applications.",
      "longDescription": "Pinecone is a fully managed vector database optimized for machine learning applications. Store dense vector embeddings and query them at low latency using approximate nearest neighbor (ANN) search with metadata filtering. Supports sparse-dense hybrid search, namespaces for multi-tenant isolation, and real-time upserts. Widely used for semantic search, RAG (retrieval-augmented generation), recommendation systems, and anomaly detection.",
      "color": "#11b981",
      "tags": [
        "vector-database",
        "embeddings",
        "semantic-search",
        "rag",
        "ai",
        "similarity-search"
      ],
      "authType": "api-key",
      "authDescription": "Pass your Pinecone API key in the Api-Key request header.",
      "authExample": "Api-Key: YOUR_API_KEY",
      "baseUrl": "https://api.pinecone.io",
      "docsUrl": "https://docs.pinecone.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "pay-as-you-go",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "2GB storage, 5 indexes (serverless)"
        },
        "tiers": [],
        "details": "Serverless Free: 2GB storage, 1M read units/month. Serverless Standard: $0.033/GB stored + $0.08/1M read units. Pod-based: from $0.096/hour (p1.x1 pod)."
      },
      "rateLimit": "100 requests/sec (free) · Higher on paid plans",
      "endpoints": [
        {
          "method": "POST",
          "path": "/vectors/upsert",
          "description": "Insert or update vectors in an index"
        },
        {
          "method": "POST",
          "path": "/query",
          "description": "Find the K nearest neighbor vectors"
        },
        {
          "method": "GET",
          "path": "/vectors/fetch",
          "description": "Fetch vectors by ID"
        },
        {
          "method": "POST",
          "path": "/vectors/delete",
          "description": "Delete vectors by ID or metadata filter"
        },
        {
          "method": "GET",
          "path": "/indexes",
          "description": "List all indexes in your project"
        },
        {
          "method": "POST",
          "path": "/indexes",
          "description": "Create a new vector index"
        }
      ],
      "sampleRequest": "curl \"https://my-index-abc123.svc.us-east1-gcp.pinecone.io/query\" \\\n  -H \"Api-Key: $PINECONE_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"vector\":[0.1,0.2,0.3],\"topK\":5,\"includeMetadata\":true,\"filter\":{\"category\":{\"$eq\":\"tech\"}}}'",
      "sampleResponse": "{\n  \"matches\": [{\n    \"id\": \"doc-42\",\n    \"score\": 0.9834,\n    \"metadata\": {\n      \"text\": \"Vector databases enable semantic search...\",\n      \"category\": \"tech\",\n      \"url\": \"https://example.com/doc-42\"\n    }\n  }]\n}",
      "scoreDepth": 81,
      "scoreLatency": 38,
      "scorePricing": 75,
      "score": 66,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:52.145Z",
      "verifiedStatus": 401,
      "latencyMs": 713
    },
    {
      "id": "notion",
      "name": "Notion API",
      "provider": "Notion",
      "category": "storage",
      "description": "Read and write Notion pages, databases, and blocks programmatically to build powerful integrations.",
      "longDescription": "The Notion API allows external integrations to read and write Notion content. Query and filter database entries (rows), create and update pages, manipulate block content (text, code, embeds, images), manage page properties, search across workspaces, and handle comments. Used to build CMS integrations, project tracking tools, content pipelines, and data sync applications. Requires a Notion integration with appropriate workspace permissions.",
      "color": "#000000",
      "tags": [
        "productivity",
        "databases",
        "pages",
        "blocks",
        "cms",
        "collaboration",
        "notes"
      ],
      "authType": "bearer",
      "authDescription": "Create an internal integration at notion.so/my-integrations. Share your Notion pages/databases with the integration. Pass the Integration Token as a Bearer token.",
      "authExample": "Authorization: Bearer secret_...\nNotion-Version: 2022-06-28",
      "baseUrl": "https://api.notion.com/v1",
      "docsUrl": "https://developers.notion.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": "pages",
          "period": "forever",
          "note": "Unlimited personal pages"
        },
        "tiers": [
          {
            "name": "Free",
            "monthlyCents": 0,
            "included": "Unlimited personal pages"
          },
          {
            "name": "Plus",
            "monthlyCents": 1000,
            "included": "Per user/mo, unlimited uploads"
          },
          {
            "name": "Business",
            "monthlyCents": 1500,
            "included": "Per user/mo, SAML SSO"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing, advanced security"
          }
        ],
        "details": "Free: unlimited personal pages, limited collaboration. Plus: $10/user/mo. Business: $15/user/mo. Enterprise: custom."
      },
      "rateLimit": "3 requests/sec per integration",
      "endpoints": [
        {
          "method": "POST",
          "path": "/databases/{database_id}/query",
          "description": "Query and filter database entries"
        },
        {
          "method": "POST",
          "path": "/pages",
          "description": "Create a new page in a database or as a subpage"
        },
        {
          "method": "PATCH",
          "path": "/pages/{page_id}",
          "description": "Update page properties"
        },
        {
          "method": "GET",
          "path": "/blocks/{block_id}/children",
          "description": "Get child blocks (content) of a page or block"
        },
        {
          "method": "POST",
          "path": "/search",
          "description": "Search across all accessible pages and databases"
        },
        {
          "method": "GET",
          "path": "/databases/{database_id}",
          "description": "Get database schema and properties"
        }
      ],
      "sampleRequest": "curl \"https://api.notion.com/v1/databases/$NOTION_DB_ID/query\" \\\n  -H \"Authorization: Bearer $NOTION_TOKEN\" \\\n  -H \"Notion-Version: 2022-06-28\" \\\n  -H \"Content-Type: application/json\" \\\n  -X POST \\\n  -d '{\"filter\":{\"property\":\"Status\",\"select\":{\"equals\":\"In Progress\"}},\"sorts\":[{\"property\":\"Created\",\"direction\":\"descending\"}]}'",
      "sampleResponse": "{\n  \"results\": [{\n    \"id\": \"page-uuid-here\",\n    \"properties\": {\n      \"Name\": { \"title\": [{ \"plain_text\": \"Launch API Map\" }] },\n      \"Status\": { \"select\": { \"name\": \"In Progress\" } },\n      \"Priority\": { \"select\": { \"name\": \"High\" } }\n    }\n  }]\n}",
      "scoreDepth": 86,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 70,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:53.315Z",
      "verifiedStatus": 400,
      "latencyMs": 1016
    },
    {
      "id": "airtable",
      "name": "Airtable API",
      "provider": "Airtable",
      "category": "storage",
      "description": "Read, create, update, and delete records in Airtable bases — the spreadsheet-database hybrid.",
      "longDescription": "Airtable's REST API treats every base like a relational database with a spreadsheet interface. Each table has typed fields (text, number, date, select, attachment, linked records, formula, lookup). The API lets you list records with filtering and sorting, create and update multiple records in bulk, manage views and field metadata, trigger automations, and download attachments. Ideal for lightweight data backends, content management, and no-code app data layers.",
      "color": "#18bfff",
      "tags": [
        "spreadsheet",
        "database",
        "no-code",
        "records",
        "views",
        "attachments",
        "automation"
      ],
      "authType": "bearer",
      "authDescription": "Generate a Personal Access Token at airtable.com/create/tokens with the required scopes. Pass it as a Bearer token in the Authorization header.",
      "authExample": "Authorization: Bearer patXXXXXXXXXXXXX...",
      "baseUrl": "https://api.airtable.com/v0",
      "docsUrl": "https://airtable.com/developers/web/api/introduction",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 1000,
          "unit": "records per base",
          "period": "forever",
          "note": "2 GB attachments"
        },
        "tiers": [
          {
            "name": "Free",
            "monthlyCents": 0,
            "included": "1,000 records/base, 2 GB attachments"
          },
          {
            "name": "Team",
            "monthlyCents": 2000,
            "included": "Per user/mo, 50k records/base"
          },
          {
            "name": "Business",
            "monthlyCents": 4500,
            "included": "Per user/mo, 250k records/base"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Free: 1,000 records/base. Plus: $10/user/mo (5k records). Pro: $20/user/mo (50k records). Enterprise: $45/user/mo (unlimited)."
      },
      "rateLimit": "5 requests/sec per base",
      "endpoints": [
        {
          "method": "GET",
          "path": "/{baseId}/{tableIdOrName}",
          "description": "List records with filtering, sorting, and field selection"
        },
        {
          "method": "POST",
          "path": "/{baseId}/{tableIdOrName}",
          "description": "Create one or more records"
        },
        {
          "method": "PATCH",
          "path": "/{baseId}/{tableIdOrName}",
          "description": "Update records (upsert supported)"
        },
        {
          "method": "DELETE",
          "path": "/{baseId}/{tableIdOrName}/{recordId}",
          "description": "Delete a single record"
        },
        {
          "method": "GET",
          "path": "/meta/bases",
          "description": "List all bases accessible to the token"
        },
        {
          "method": "GET",
          "path": "/meta/bases/{baseId}/tables",
          "description": "Get table schemas and field definitions"
        }
      ],
      "sampleRequest": "curl \"https://api.airtable.com/v0/$AIRTABLE_BASE_ID/APIs?filterByFormula=%7BCategory%7D%3D'AI'\" \\\n  -H \"Authorization: Bearer $AIRTABLE_TOKEN\"",
      "sampleResponse": "{\n  \"records\": [{\n    \"id\": \"recXXXXXXXXXXXXXX\",\n    \"createdTime\": \"2024-03-15T10:00:00.000Z\",\n    \"fields\": {\n      \"Name\": \"OpenAI API\",\n      \"Category\": \"AI\",\n      \"Base URL\": \"https://api.openai.com/v1\",\n      \"Has Free Tier\": false\n    }\n  }]\n}",
      "scoreDepth": 86,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 73,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:53.348Z",
      "verifiedStatus": 404,
      "latencyMs": 824
    },
    {
      "id": "box-platform",
      "name": "Box Platform API",
      "provider": "Box Platform",
      "category": "storage",
      "description": "Box Platform API provides cloud storage, file sharing, and collaboration tools for enterprise applications. Manage files, folders, users, shared links, metadata, and workflow automations.",
      "longDescription": "Box Platform provides functionality to provide access to content stored within Box. It provides endpoints for basic manipulation of files and folders, management of users within an enterprise, as well as more complex topics such as legal holds and retention poli",
      "color": "#14b8a6",
      "tags": [
        "developer",
        "maps",
        "storage",
        "cloud storage",
        "files",
        "enterprise",
        "collaboration"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 or JWT (Server Authentication) for machine-to-machine",
      "authExample": "Authorization: Bearer YOUR_ACCESS_TOKEN",
      "baseUrl": "https://api.box.com/2.0",
      "docsUrl": "https://box.dev",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 10,
          "unit": "GB storage",
          "period": "forever"
        },
        "tiers": [
          {
            "name": "Individual",
            "monthlyCents": 0,
            "included": "10 GB storage"
          },
          {
            "name": "Business Starter",
            "monthlyCents": 1500,
            "included": "Per user/mo, unlimited storage"
          },
          {
            "name": "Business",
            "monthlyCents": 2000,
            "included": "Per user/mo, advanced admin"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom."
      },
      "rateLimit": "4,000 API calls/min (authenticated)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/authorize",
          "description": "Authorize user"
        },
        {
          "method": "GET",
          "path": "/collaboration_whitelist_entries",
          "description": "List allowed collaboration domains"
        },
        {
          "method": "POST",
          "path": "/collaboration_whitelist_entries",
          "description": "Add domain to list of allowed collaboration domains"
        },
        {
          "method": "DELETE",
          "path": "/collaboration_whitelist_entries/{collaboration_whitelist_entry_id}",
          "description": "Remove domain from list of allowed collaboration domains"
        },
        {
          "method": "GET",
          "path": "/collaboration_whitelist_entries/{collaboration_whitelist_entry_id}",
          "description": "Get allowed collaboration domain"
        },
        {
          "method": "GET",
          "path": "/collaboration_whitelist_exempt_targets",
          "description": "List users exempt from collaboration domain restrictions"
        },
        {
          "method": "POST",
          "path": "/collaboration_whitelist_exempt_targets",
          "description": "Create user exemption from collaboration domain restrictions"
        },
        {
          "method": "DELETE",
          "path": "/collaboration_whitelist_exempt_targets/{collaboration_whitelist_exempt_target_id}",
          "description": "Remove user from list of users exempt from domain restrictions"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.box.com/2.0/authorize' \\\n  -H 'Authorization: Bearer <access_token>'",
      "sampleResponse": "{}",
      "scoreDepth": 91,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 75,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:54.226Z",
      "verifiedStatus": 401,
      "latencyMs": 705
    },
    {
      "id": "bin-lookup",
      "name": "BIN Lookup API",
      "provider": "BIN Lookup",
      "category": "storage",
      "description": "BIN lookup API, the free api service from bintable.com to lookup card information using it's BIN. the service maintains updated database based on the comunity and other third party services to make sure all BINs in the database are accurate and up to date.",
      "longDescription": "BIN lookup API, the free api service from bintable.com to lookup card information using it's BIN. the service maintains updated database based on the comunity and other third party services to make sure all BINs in the database are accurate and up to date.",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "bintable"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.bintable.com/v1",
      "docsUrl": "https://api.bintable.com/v1",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/balance",
          "description": "Check Balance"
        },
        {
          "method": "GET",
          "path": "/{bin}",
          "description": "Lookup for bin"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.bintable.com/v1/balance' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 44,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 35,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:56.519Z",
      "verifiedStatus": 422,
      "latencyMs": 1201
    },
    {
      "id": "chomp-food-database-api-documentation",
      "name": "Chomp Food Database API Documentation",
      "provider": "Chomp Food Database API Documentation",
      "category": "storage",
      "description": "Important\nAn API key is required for access to this API. Get yours at https://chompthis.com/api.\n\nGetting Started\n  * Subscribe to the API.\n   Scroll down and click the \"Authorize",
      "longDescription": "Important\nAn API key is required for access to this API. Get yours at https://chompthis.com/api.\n\nGetting Started\n  * Subscribe to the API.\n   Scroll down and click the \"Authorize",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "chompthis"
      ],
      "authType": "api-key",
      "authDescription": "API key as a query parameter (api_key)",
      "authExample": "GET /endpoint?api_key=YOUR_KEY",
      "baseUrl": "https://chompthis.com/api/v2",
      "docsUrl": "https://chompthis.com/api/v2",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 10 req/min (UPC lookup). Paid plans from $20/mo for full access."
      },
      "rateLimit": "10 req/min (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/food/branded/barcode.php",
          "description": "Get a branded food item using a barcode"
        },
        {
          "method": "GET",
          "path": "/food/branded/name.php",
          "description": "Get a branded food item by name"
        },
        {
          "method": "GET",
          "path": "/food/branded/search.php",
          "description": "Get data for branded food items using various search parameters"
        },
        {
          "method": "GET",
          "path": "/food/ingredient/search.php",
          "description": "Get raw/generic food ingredient item(s)"
        }
      ],
      "sampleRequest": "curl -X GET 'https://chompthis.com/api/v2/food/branded/barcode.php' \\\n  -H 'GET /endpoint?api_key=YOUR_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 58,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:58.820Z",
      "verifiedStatus": 403,
      "latencyMs": 2902
    },
    {
      "id": "datasette",
      "name": "Datasette API",
      "provider": "Datasette",
      "category": "storage",
      "description": "Execute SQL queries against a Datasette database and return the results as JSON",
      "longDescription": "Execute SQL queries against a Datasette database and return the results as JSON",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "datasette"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "http://datasette.local",
      "docsUrl": "http://datasette.local",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/content.json",
          "description": "Execute a SQLite SQL query against the content database"
        }
      ],
      "sampleRequest": "curl -X GET 'http://datasette.local/content.json' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 24,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 18,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:02.822Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "api-datumbox-com",
      "name": "api.datumbox.com",
      "provider": "api.datumbox.com",
      "category": "storage",
      "description": "Box Platform API provides cloud storage, file sharing, and collaboration tools for enterprise applications. Manage files, folders, users, shared links, metadata, and workflow automations.",
      "longDescription": "Datumbox offers a Machine Learning platform composed of 14 classifiers and Natural Language processing functions. Functions include sentiment analysis, topic classification, readability assessment, language detection, and much more.",
      "color": "#14b8a6",
      "tags": [
        "developer",
        "maps",
        "storage",
        "cloud storage",
        "files",
        "enterprise",
        "collaboration"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 or JWT (Server Authentication) for machine-to-machine",
      "authExample": "Authorization: Bearer YOUR_ACCESS_TOKEN",
      "baseUrl": "http://api.datumbox.com/",
      "docsUrl": "http://api.datumbox.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 10,
          "unit": "GB storage",
          "period": "forever"
        },
        "tiers": [
          {
            "name": "Individual",
            "monthlyCents": 0,
            "included": "10 GB storage"
          },
          {
            "name": "Business Starter",
            "monthlyCents": 1500,
            "included": "Per user/mo, unlimited storage"
          },
          {
            "name": "Business",
            "monthlyCents": 2000,
            "included": "Per user/mo, advanced admin"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom."
      },
      "rateLimit": "4,000 API calls/min (authenticated)",
      "endpoints": [
        {
          "method": "POST",
          "path": "/1.0/AdultContentDetection.json",
          "description": "Classifies the Document as adult or noadult"
        },
        {
          "method": "POST",
          "path": "/1.0/CommercialDetection.json",
          "description": "Classifies the Document as commercial or nocommercial"
        },
        {
          "method": "POST",
          "path": "/1.0/DocumentSimilarity.json",
          "description": "Estimates the similarity between 2 Documents"
        },
        {
          "method": "POST",
          "path": "/1.0/EducationalDetection.json",
          "description": "Classifies the Document as educational or noeducational"
        },
        {
          "method": "POST",
          "path": "/1.0/GenderDetection.json",
          "description": "Gender Detection Service"
        },
        {
          "method": "POST",
          "path": "/1.0/KeywordExtraction.json",
          "description": "Extracts the Keywords of the Document"
        },
        {
          "method": "POST",
          "path": "/1.0/LanguageDetection.json",
          "description": "Identifies the Language of the Document"
        },
        {
          "method": "POST",
          "path": "/1.0/ReadabilityAssessment.json",
          "description": "Evaluates the Readability of the Document"
        }
      ],
      "sampleRequest": "curl -X GET 'http://api.datumbox.com//1.0/AdultContentDetection.json' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 88,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 71,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:58.603Z",
      "verifiedStatus": 500,
      "latencyMs": 1770
    },
    {
      "id": "flat",
      "name": "Flat API",
      "provider": "Flat",
      "category": "storage",
      "description": "The Flat API allows you to easily extend the abilities of the Flat Platform, with a wide range of use cases including the following:\n\n* Creating and importing new music scores using MusicXML, MIDI, Guitar Pro (GP3, GP4, GP5, GPX, GP), PowerTab, TuxGuitar and MuseScore files\n* Brow",
      "longDescription": "The Flat API allows you to easily extend the abilities of the Flat Platform, with a wide range of use cases including the following:\n\n* Creating and importing new music scores using MusicXML, MIDI, Guitar Pro (GP3, GP4, GP5, GPX, GP), PowerTab, TuxGuitar and MuseScore files\n* Brow",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "flat"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 — obtain an access token via the authorization flow",
      "authExample": "Authorization: Bearer <access_token>",
      "baseUrl": "https://api.flat.io/v2",
      "docsUrl": "https://flat.io/developers/docs/api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 1 score, 10 private scores for edu. Pro $9/mo. Music notation collaboration."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/classes",
          "description": "List the classes available for the current user"
        },
        {
          "method": "POST",
          "path": "/classes",
          "description": "Create a new class"
        },
        {
          "method": "POST",
          "path": "/classes/enroll/{enrollmentCode}",
          "description": "Join a class"
        },
        {
          "method": "GET",
          "path": "/classes/{class}",
          "description": "Get the details of a single class"
        },
        {
          "method": "PUT",
          "path": "/classes/{class}",
          "description": "Update the class"
        },
        {
          "method": "POST",
          "path": "/classes/{class}/activate",
          "description": "Activate the class"
        },
        {
          "method": "DELETE",
          "path": "/classes/{class}/archive",
          "description": "Unarchive the class"
        },
        {
          "method": "POST",
          "path": "/classes/{class}/archive",
          "description": "Archive the class"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.flat.io/v2/classes' \\\n  -H 'Authorization: Bearer <access_token>'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 43,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:03.715Z",
      "verifiedStatus": 200,
      "latencyMs": 5283
    },
    {
      "id": "frankie-financial",
      "name": "Frankie Financial API",
      "provider": "Frankie Financial",
      "category": "storage",
      "description": "------  \nThis API allows developers to integrate the Frankie Financial Compliance Utility into their applications. The API allows:\n  - Checking name, address, date of birth against national databases\n  - Validating Australian driver's licences, passports, medicare, visas and other Australian nationa",
      "longDescription": "------  \nThis API allows developers to integrate the Frankie Financial Compliance Utility into their applications. The API allows:\n  - Checking name, address, date of birth against national databases\n  - Validating Australian driver's licences, passports, medicare, visas and other Australian nationa",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "frankiefinancial"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (api_key)",
      "authExample": "api_key: YOUR_API_KEY",
      "baseUrl": "https://api.demo.frankiefinancial.io/compliance/v1.2",
      "docsUrl": "https://api.demo.frankiefinancial.io/compliance/v1.2",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid. KYC and AML compliance API for financial services. Pricing on request."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "POST",
          "path": "/business/international/profile",
          "description": "Retrieve a business profile from any country (AUS included)."
        },
        {
          "method": "POST",
          "path": "/business/international/search",
          "description": "Search for a business from any country (AUS included)."
        },
        {
          "method": "POST",
          "path": "/business/ownership/query",
          "description": "Create Business Entity and Query UBO (AUS Only)"
        },
        {
          "method": "POST",
          "path": "/business/reports",
          "description": "Run Report(s) against a new or existing organisation entity (AUS Only)."
        },
        {
          "method": "POST",
          "path": "/business/{entityId}/verify",
          "description": "Run KYC/AML Checks on Organisation and/or Associated Individuals."
        },
        {
          "method": "POST",
          "path": "/document",
          "description": "Create New Document."
        },
        {
          "method": "POST",
          "path": "/document/new/compare",
          "description": "Create Document and Compare to Original."
        },
        {
          "method": "POST",
          "path": "/document/new/scan",
          "description": "Create and OCR Scan Document."
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.demo.frankiefinancial.io/compliance/v1.2/business/international/profile' \\\n  -H 'api_key: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 37,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:02.457Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "freesound",
      "name": "Freesound",
      "provider": "Freesound",
      "category": "storage",
      "description": "With the Freesound APIv2 you can browse, search, and retrieve information about Freesound users, packs, and the sounds themselves of course. You can find similar sounds to a given target (based on content analysis) and retrieve automatically extracted features from audio files, as well as perform ad",
      "longDescription": "With the Freesound APIv2 you can browse, search, and retrieve information about Freesound users, packs, and the sounds themselves of course. You can find similar sounds to a given target (based on content analysis) and retrieve automatically extracted features from audio files, as well as perform ad",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "freesound"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "http://www.freesound.org/apiv2",
      "docsUrl": "http://groups.google.com/group/freesound-api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/search/text",
          "description": "Search sounds"
        },
        {
          "method": "GET",
          "path": "/sounds/{soundId}",
          "description": "Details of a sound"
        }
      ],
      "sampleRequest": "curl -X GET 'http://www.freesound.org/apiv2/search/text' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 44,
      "scoreLatency": 10,
      "scorePricing": 28,
      "score": 29,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:02.915Z",
      "verifiedStatus": 404,
      "latencyMs": 4095
    },
    {
      "id": "handwrytten",
      "name": "Handwrytten API",
      "provider": "Handwrytten",
      "category": "storage",
      "description": "This is the Handwrytten API for sending cards written in the handwriting of your choice.\nUsing this api, you can send cards to users.  You can also customize cards with logos, which\ncan be saved and then used like any other card in the system.\nFor a \"sandbox\" account, please contact contact@handwryt",
      "longDescription": "This is the Handwrytten API for sending cards written in the handwriting of your choice.\nUsing this api, you can send cards to users.  You can also customize cards with logos, which\ncan be saved and then used like any other card in the system.\nFor a \"sandbox\" account, please contact contact@handwryt",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "handwrytten"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.handwrytten.com/v1",
      "docsUrl": "https://api.handwrytten.com/v1",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "POST",
          "path": "/auth/authorization",
          "description": "Logs in to an existing account"
        },
        {
          "method": "POST",
          "path": "/auth/changePassword",
          "description": "changes a user's password"
        },
        {
          "method": "POST",
          "path": "/auth/logout",
          "description": "logs out a session uid"
        },
        {
          "method": "POST",
          "path": "/auth/register",
          "description": "Registers a new account"
        },
        {
          "method": "POST",
          "path": "/auth/resetPasswordRequest",
          "description": "resets a user's password"
        },
        {
          "method": "POST",
          "path": "/cards/createCustomCard",
          "description": "Create a new custom card"
        },
        {
          "method": "GET",
          "path": "/cards/list",
          "description": "Lists information on cards"
        },
        {
          "method": "POST",
          "path": "/cards/list",
          "description": "Lists information on cards"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.handwrytten.com/v1/auth/authorization' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 43,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:03.781Z",
      "verifiedStatus": 403,
      "latencyMs": 2500
    },
    {
      "id": "mailsquad",
      "name": "Mailsquad",
      "provider": "Mailsquad",
      "category": "storage",
      "description": "Box Platform API provides cloud storage, file sharing, and collaboration tools for enterprise applications. Manage files, folders, users, shared links, metadata, and workflow automations.",
      "longDescription": "MailSquad offers an affordable and super easy way to create, send and track delightful emails.",
      "color": "#14b8a6",
      "tags": [
        "developer",
        "maps",
        "storage",
        "cloud storage",
        "files",
        "enterprise",
        "collaboration"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 or JWT (Server Authentication) for machine-to-machine",
      "authExample": "Authorization: Bearer YOUR_ACCESS_TOKEN",
      "baseUrl": "https://api.inboxroute.com/api",
      "docsUrl": "https://mailsquad.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 10,
          "unit": "GB storage",
          "period": "forever"
        },
        "tiers": [
          {
            "name": "Individual",
            "monthlyCents": 0,
            "included": "10 GB storage"
          },
          {
            "name": "Business Starter",
            "monthlyCents": 1500,
            "included": "Per user/mo, unlimited storage"
          },
          {
            "name": "Business",
            "monthlyCents": 2000,
            "included": "Per user/mo, advanced admin"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom."
      },
      "rateLimit": "4,000 API calls/min (authenticated)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/contacts",
          "description": "Get a paged result of contacts from a list"
        },
        {
          "method": "GET",
          "path": "/contacts/lists",
          "description": "Get a paged result of contact lists."
        },
        {
          "method": "POST",
          "path": "/contacts/lists",
          "description": "Add a new contact list"
        },
        {
          "method": "DELETE",
          "path": "/contacts/lists/{listid}",
          "description": "Delete an existing contact list"
        },
        {
          "method": "PUT",
          "path": "/contacts/lists/{listid}",
          "description": "Update an existing contact list"
        },
        {
          "method": "DELETE",
          "path": "/contacts/{contactid}",
          "description": "Delete an existing contact"
        },
        {
          "method": "PUT",
          "path": "/contacts/{contactid}",
          "description": "Update an existing contact"
        },
        {
          "method": "POST",
          "path": "/subscription/{listid}",
          "description": "Subscribe an email address to a list. This api call has the same behavior as\na r"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.inboxroute.com/api/contacts' \\\n  -H 'Authorization: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 80,
      "scoreLatency": 0,
      "scorePricing": 90,
      "score": 59,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:04.297Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "api-docs-logoraisr-com",
      "name": "API docs | logoraisr.com",
      "provider": "API docs | logoraisr.com",
      "category": "storage",
      "description": "<p style=\"font-size:110%;\">Dig into our logoraisr API reference documentation. We also offer an OpenAPI specification to allow easy integration into your systems. You can download the json file by clicking on the download button.<p><br><p style=\"font-size:110%; font-weight:bold\">OpenAPI 2.0 Validati",
      "longDescription": "<p style=\"font-size:110%;\">Dig into our logoraisr API reference documentation. We also offer an OpenAPI specification to allow easy integration into your systems. You can download the json file by clicking on the download button.<p><br><p style=\"font-size:110%; font-weight:bold\">OpenAPI 2.0 Validati",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "logoraisr"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (Authorization)",
      "authExample": "Authorization: YOUR_API_KEY",
      "baseUrl": "https://api.logoraisr.com/rest-v1",
      "docsUrl": "https://logoraisr.com",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free trial: 5 image upscales. Pay-as-you-go from €0.12/image. AI image upscaling."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/previews/{file_id}/",
          "description": "Get preview image of uploaded file"
        },
        {
          "method": "GET",
          "path": "/processes/",
          "description": "Get process list."
        },
        {
          "method": "GET",
          "path": "/projects/",
          "description": "Get user project list."
        },
        {
          "method": "POST",
          "path": "/projects/",
          "description": "Create a new project."
        },
        {
          "method": "GET",
          "path": "/projects/{project_number}/",
          "description": "Get project details."
        },
        {
          "method": "GET",
          "path": "/reports/",
          "description": "Get user report list."
        },
        {
          "method": "POST",
          "path": "/reports/",
          "description": "Create a new report."
        },
        {
          "method": "GET",
          "path": "/reports/{report_number}/",
          "description": "Get report details."
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.logoraisr.com/rest-v1/previews/{file_id}/' \\\n  -H 'Authorization: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 37,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:05.061Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "netbox",
      "name": "NetBox API",
      "provider": "NetBox",
      "category": "storage",
      "description": "Box Platform API provides cloud storage, file sharing, and collaboration tools for enterprise applications. Manage files, folders, users, shared links, metadata, and workflow automations.",
      "longDescription": "API to access NetBox",
      "color": "#14b8a6",
      "tags": [
        "developer",
        "maps",
        "storage",
        "cloud storage",
        "files",
        "enterprise",
        "collaboration"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 or JWT (Server Authentication) for machine-to-machine",
      "authExample": "Authorization: Bearer YOUR_ACCESS_TOKEN",
      "baseUrl": "https://demo.netbox.dev/api",
      "docsUrl": "https://demo.netbox.dev/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 10,
          "unit": "GB storage",
          "period": "forever"
        },
        "tiers": [
          {
            "name": "Individual",
            "monthlyCents": 0,
            "included": "10 GB storage"
          },
          {
            "name": "Business Starter",
            "monthlyCents": 1500,
            "included": "Per user/mo, unlimited storage"
          },
          {
            "name": "Business",
            "monthlyCents": 2000,
            "included": "Per user/mo, advanced admin"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom."
      },
      "rateLimit": "4,000 API calls/min (authenticated)",
      "endpoints": [
        {
          "method": "DELETE",
          "path": "/circuits/circuit-terminations/",
          "description": "DELETE /circuits/circuit-terminations/"
        },
        {
          "method": "GET",
          "path": "/circuits/circuit-terminations/",
          "description": "GET /circuits/circuit-terminations/"
        },
        {
          "method": "PATCH",
          "path": "/circuits/circuit-terminations/",
          "description": "PATCH /circuits/circuit-terminations/"
        },
        {
          "method": "POST",
          "path": "/circuits/circuit-terminations/",
          "description": "POST /circuits/circuit-terminations/"
        },
        {
          "method": "PUT",
          "path": "/circuits/circuit-terminations/",
          "description": "PUT /circuits/circuit-terminations/"
        },
        {
          "method": "DELETE",
          "path": "/circuits/circuit-terminations/{id}/",
          "description": "DELETE /circuits/circuit-terminations/{id}/"
        },
        {
          "method": "GET",
          "path": "/circuits/circuit-terminations/{id}/",
          "description": "GET /circuits/circuit-terminations/{id}/"
        },
        {
          "method": "PATCH",
          "path": "/circuits/circuit-terminations/{id}/",
          "description": "PATCH /circuits/circuit-terminations/{id}/"
        }
      ],
      "sampleRequest": "curl -X GET 'https://demo.netbox.dev/api/circuits/circuit-terminations/' \\\n  -H 'Authorization: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 76,
      "scoreLatency": 20,
      "scorePricing": 90,
      "score": 63,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:08.606Z",
      "verifiedStatus": 403,
      "latencyMs": 3753
    },
    {
      "id": "nowpayments",
      "name": "NOWPayments API",
      "provider": "NOWPayments",
      "category": "storage",
      "description": "NOWPayments is a non-custodial cryptocurrency payment processing platform. Accept payments in a wide range of cryptos and get them instantly converted into a coin of your choice and sent to your wallet. Keeping it simple – no excess.\n\nSandbox\n\nBefore production usage, you can test our API using th",
      "longDescription": "NOWPayments is a non-custodial cryptocurrency payment processing platform. Accept payments in a wide range of cryptos and get them instantly converted into a coin of your choice and sent to your wallet. Keeping it simple – no excess.\n\nSandbox\n\nBefore production usage, you can test our API using th",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "nowpayments"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.nowpayments.io",
      "docsUrl": "https://api.nowpayments.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/v1/estimate",
          "description": "Get estimated price"
        },
        {
          "method": "GET",
          "path": "/v1/min-amount",
          "description": "Get the minimum payment amount"
        },
        {
          "method": "GET",
          "path": "/v1/payment/",
          "description": "Get list of payments"
        },
        {
          "method": "POST",
          "path": "/v1/payment/{id}/update-merchant-estimate",
          "description": "Get/Update payment estimate"
        },
        {
          "method": "GET",
          "path": "/v1/payment/{payment_id}",
          "description": "Get payment status"
        },
        {
          "method": "POST",
          "path": "/v1/payout/{withdrawals-id}/verify",
          "description": "Verify payout"
        },
        {
          "method": "GET",
          "path": "/v1/sub-partner",
          "description": "Get sub-partners"
        },
        {
          "method": "GET",
          "path": "/v1/sub-partner/balance/{id}",
          "description": "Get sub-partner balance"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.nowpayments.io/v1/estimate' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 46,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:06.761Z",
      "verifiedStatus": 403,
      "latencyMs": 1536
    },
    {
      "id": "pi-web-api-2018-sp1-swagger-spec",
      "name": "PI Web API 2018 SP1 Swagger Spec",
      "provider": "PI Web API 2018 SP1 Swagger Spec",
      "category": "storage",
      "description": "Swagger Spec file that describes PI Web API",
      "longDescription": "Swagger Spec file that describes PI Web API",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "osisoft"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://devdata.osisoft.com/piwebapi",
      "docsUrl": "https://techsupport.osisoft.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "Get top level links for this PI System Web API instance."
        },
        {
          "method": "GET",
          "path": "/analyses",
          "description": "Retrieve an Analysis by path."
        },
        {
          "method": "GET",
          "path": "/analyses/search",
          "description": "Retrieve analyses based on the specified conditions. By default, returns all analyses."
        },
        {
          "method": "DELETE",
          "path": "/analyses/{webId}",
          "description": "Delete an Analysis."
        },
        {
          "method": "GET",
          "path": "/analyses/{webId}",
          "description": "Retrieve an Analysis."
        },
        {
          "method": "PATCH",
          "path": "/analyses/{webId}",
          "description": "Update an Analysis."
        },
        {
          "method": "GET",
          "path": "/analyses/{webId}/categories",
          "description": "Get an Analysis' categories."
        },
        {
          "method": "GET",
          "path": "/analyses/{webId}/security",
          "description": "Get the security information of the specified security item associated with the Analysis for a specified user."
        }
      ],
      "sampleRequest": "curl -X GET 'https://devdata.osisoft.com/piwebapi/' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 57,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 31,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:07.404Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "slicebox",
      "name": "Slicebox API",
      "provider": "Slicebox",
      "category": "storage",
      "description": "Box Platform API provides cloud storage, file sharing, and collaboration tools for enterprise applications. Manage files, folders, users, shared links, metadata, and workflow automations.",
      "longDescription": "Slicebox - safe sharing of medical images",
      "color": "#14b8a6",
      "tags": [
        "maps",
        "entertainment",
        "payments",
        "storage",
        "cloud storage",
        "files",
        "enterprise",
        "collaboration"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 or JWT (Server Authentication) for machine-to-machine",
      "authExample": "Authorization: Bearer YOUR_ACCESS_TOKEN",
      "baseUrl": "http://slicebox.local/api",
      "docsUrl": "http://github.org/slicebox/slicebox",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 10,
          "unit": "GB storage",
          "period": "forever"
        },
        "tiers": [
          {
            "name": "Individual",
            "monthlyCents": 0,
            "included": "10 GB storage"
          },
          {
            "name": "Business Starter",
            "monthlyCents": 1500,
            "included": "Per user/mo, unlimited storage"
          },
          {
            "name": "Business",
            "monthlyCents": 2000,
            "included": "Per user/mo, advanced admin"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom."
      },
      "rateLimit": "4,000 API calls/min (authenticated)",
      "endpoints": [
        {
          "method": "POST",
          "path": "/anonymization/anonymize",
          "description": "anonymize the images corresponding to the supplied list of image IDs (each paire"
        },
        {
          "method": "GET",
          "path": "/anonymization/keys",
          "description": "get a list of anonymization keys, each specifying how vital DICOM attributes hav"
        },
        {
          "method": "GET",
          "path": "/anonymization/keys/export/csv",
          "description": "export all anonymization keys as a csv file"
        },
        {
          "method": "POST",
          "path": "/anonymization/keys/query",
          "description": "submit a query for anonymization keys"
        },
        {
          "method": "DELETE",
          "path": "/anonymization/keys/{id}",
          "description": "delete an anonymization key that is no longer of interest"
        },
        {
          "method": "GET",
          "path": "/anonymization/keys/{id}",
          "description": "get the anonymization key with the supplied ID"
        },
        {
          "method": "GET",
          "path": "/anonymization/keys/{id}/keyvalues",
          "description": "get pointers to the images corresponding to the anonymization key with the suppl"
        },
        {
          "method": "GET",
          "path": "/anonymization/options",
          "description": "list all supported anonymization options defining an anonymization profile"
        }
      ],
      "sampleRequest": "curl -X GET 'http://slicebox.local/api/anonymization/anonymize' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 76,
      "scoreLatency": 0,
      "scorePricing": 90,
      "score": 57,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:16.525Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "taxamo",
      "name": "Taxamo",
      "provider": "Taxamo",
      "category": "storage",
      "description": "Taxamo’s elegant suite of APIs and comprehensive reporting dashboard enables digital merchants to easily comply with EU regulatory requirements on tax calculation, evidence collection, tax return creation and data storage.",
      "longDescription": "Taxamo’s elegant suite of APIs and comprehensive reporting dashboard enables digital merchants to easily comply with EU regulatory requirements on tax calculation, evidence collection, tax return creation and data storage.",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "taxamo"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (Token)",
      "authExample": "Token: YOUR_API_KEY",
      "baseUrl": "https://api.taxamo.com/",
      "docsUrl": "https://api.taxamo.com/",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Pay-as-you-go digital VAT/tax calculation. $0.006/transaction. No monthly minimum."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/api/v1/dictionaries/countries",
          "description": "Countries"
        },
        {
          "method": "GET",
          "path": "/api/v1/dictionaries/currencies",
          "description": "Currencies"
        },
        {
          "method": "GET",
          "path": "/api/v1/dictionaries/product_types",
          "description": "Product types"
        },
        {
          "method": "GET",
          "path": "/api/v1/geoip",
          "description": "Locate IP"
        },
        {
          "method": "GET",
          "path": "/api/v1/geoip/{ip}",
          "description": "Locate provided IP"
        },
        {
          "method": "GET",
          "path": "/api/v1/reports/domestic/summary",
          "description": "Calculate domestic summary"
        },
        {
          "method": "GET",
          "path": "/api/v1/reports/eu/vies",
          "description": "Calculate EU VIES report"
        },
        {
          "method": "GET",
          "path": "/api/v1/settlement/detailed_refunds",
          "description": "Detailed refunds"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.taxamo.com//api/v1/dictionaries/countries' \\\n  -H 'Token: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 68,
      "scoreLatency": 8,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:26.875Z",
      "verifiedStatus": 200,
      "latencyMs": 14105
    },
    {
      "id": "quick-start-telematics-sdk",
      "name": "Quick start - Telematics SDK",
      "provider": "Quick start - Telematics SDK",
      "category": "storage",
      "description": "Introduction\nWe have prepared a set of APIs for quick start to integrate telematics SDK that powers mobile telematics inside 3rd party mobile applications.\n\n* CONTACT US\n* SANDBOX\n* DEV.PORTAL\n* [DEMO APP](ht",
      "longDescription": "Introduction\nWe have prepared a set of APIs for quick start to integrate telematics SDK that powers mobile telematics inside 3rd party mobile applications.\n\n* CONTACT US\n* SANDBOX\n* DEV.PORTAL\n* [DEMO APP](ht",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "telematicssdk"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.telematicssdk.com",
      "docsUrl": "https://api.telematicssdk.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/mobilesdk/stage/track/get_track/v1",
          "description": "Trips - trip details"
        },
        {
          "method": "GET",
          "path": "/statistics/v1/Scorings/consolidated",
          "description": "/v1/Scorings/consolidated"
        },
        {
          "method": "GET",
          "path": "/statistics/v1/Scorings/consolidated/daily",
          "description": "/v1/Scorings/consolidated/daily"
        },
        {
          "method": "GET",
          "path": "/statistics/v1/Scorings/individual/",
          "description": "User safe scoring - Accumulated value - v1/Scorings/individual"
        },
        {
          "method": "GET",
          "path": "/statistics/v1/Scorings/individual/daily",
          "description": "User safe scoring - daily value - /v1/Scorings/individual/daily"
        },
        {
          "method": "GET",
          "path": "/statistics/v1/Statistics/consolidated",
          "description": "/v1/Statistics/consolidated"
        },
        {
          "method": "GET",
          "path": "/statistics/v1/Statistics/consolidated/daily",
          "description": "/v1/Statistics/consolidated/daily"
        },
        {
          "method": "GET",
          "path": "/statistics/v1/Statistics/individual/",
          "description": "User statistics - Accumulated value - /v1/Statistics/individual"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.telematicssdk.com/mobilesdk/stage/track/get_track/v1' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 10,
      "scorePricing": 28,
      "score": 40,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:19.304Z",
      "verifiedStatus": 403,
      "latencyMs": 4208
    },
    {
      "id": "urlbox",
      "name": "Urlbox API",
      "provider": "Urlbox",
      "category": "storage",
      "description": "Box Platform API provides cloud storage, file sharing, and collaboration tools for enterprise applications. Manage files, folders, users, shared links, metadata, and workflow automations.",
      "longDescription": "A plugin that allows the user to capture screenshots of a web page from a URL or HTML using ChatGPT.",
      "color": "#14b8a6",
      "tags": [
        "maps",
        "entertainment",
        "payments",
        "storage",
        "cloud storage",
        "files",
        "enterprise",
        "collaboration"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 or JWT (Server Authentication) for machine-to-machine",
      "authExample": "Authorization: Bearer YOUR_ACCESS_TOKEN",
      "baseUrl": "https://api.urlbox.io",
      "docsUrl": "https://api.urlbox.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 10,
          "unit": "GB storage",
          "period": "forever"
        },
        "tiers": [
          {
            "name": "Individual",
            "monthlyCents": 0,
            "included": "10 GB storage"
          },
          {
            "name": "Business Starter",
            "monthlyCents": 1500,
            "included": "Per user/mo, unlimited storage"
          },
          {
            "name": "Business",
            "monthlyCents": 2000,
            "included": "Per user/mo, advanced admin"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom."
      },
      "rateLimit": "4,000 API calls/min (authenticated)",
      "endpoints": [
        {
          "method": "POST",
          "path": "/v1/render/sync",
          "description": "Render a URL as an image or video"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.urlbox.io/v1/render/sync' \\\n  -H 'Authorization: Bearer YOUR_TOKEN'",
      "sampleResponse": "{}",
      "scoreDepth": 47,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 64,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:20.734Z",
      "verifiedStatus": 200,
      "latencyMs": 1618
    },
    {
      "id": "searchly-api-v1",
      "name": "SearchLy API v1",
      "provider": "SearchLy API v1",
      "category": "storage",
      "description": "Introduction\nThe SearchLy API provides similarity searching based on song lyrics.\n\nOperations\nThe API allows for the /similarity/by_song operation, which allows clients to search the similarity for an existing song in the database. Also, the API has an additional /similarity/by_content endpo",
      "longDescription": "Introduction\nThe SearchLy API provides similarity searching based on song lyrics.\n\nOperations\nThe API allows for the /similarity/by_song operation, which allows clients to search the similarity for an existing song in the database. Also, the API has an additional /similarity/by_content endpo",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "asuarez"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://searchly.asuarez.dev/api/v1",
      "docsUrl": "https://searchly.asuarez.dev/api/v1",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "POST",
          "path": "/similarity/by_content",
          "description": "API endpoint to search similarity using content"
        },
        {
          "method": "GET",
          "path": "/similarity/by_song",
          "description": "API endpoint to search similarity using a song identifier"
        },
        {
          "method": "GET",
          "path": "/song/search",
          "description": "API endpoint to search songs from the database given a query"
        }
      ],
      "sampleRequest": "curl -X GET 'https://searchly.asuarez.dev/api/v1/similarity/by_content' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 52,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 29,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:29.450Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "authorized-partner-api-specification",
      "name": "Authorized Partner API Specification",
      "provider": "Authorized Partner API Specification",
      "category": "storage",
      "description": "To access files in user’s DigiLocker account from your application, you must first obtain user’s authorization.",
      "longDescription": "To access files in user’s DigiLocker account from your application, you must first obtain user’s authorization.",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "digitallocker"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (X-2)",
      "authExample": "X-2: YOUR_API_KEY",
      "baseUrl": "https://betaapi.digitallocker.gov.in/public",
      "docsUrl": "https://betaapi.digitallocker.gov.in/public",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free for authorized partners. API access via partnership agreement."
      },
      "rateLimit": "Based on partner tier",
      "endpoints": [
        {
          "method": "POST",
          "path": "/account/1/pushuri",
          "description": "Push URI to Account"
        },
        {
          "method": "POST",
          "path": "/account/2/verify",
          "description": "Verify Account"
        },
        {
          "method": "GET",
          "path": "/oauth2/1/authorize",
          "description": "Get Authorization Code"
        },
        {
          "method": "POST",
          "path": "/oauth2/1/code",
          "description": "Get Device Code"
        },
        {
          "method": "POST",
          "path": "/oauth2/1/file/upload",
          "description": "Upload file to locker"
        },
        {
          "method": "GET",
          "path": "/oauth2/1/file/{uri}",
          "description": "Get File from URI"
        },
        {
          "method": "GET",
          "path": "/oauth2/1/files/",
          "description": "Get List of Self Uploaded Documents"
        },
        {
          "method": "GET",
          "path": "/oauth2/1/files/issued",
          "description": "Issued Documents"
        }
      ],
      "sampleRequest": "curl -X GET 'https://betaapi.digitallocker.gov.in/public/account/1/pushuri' \\\n  -H 'X-2: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 65,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 34,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:34.427Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "profile",
      "name": "Profile",
      "provider": "Profile",
      "category": "storage",
      "description": "API that provides Profile information about Players.",
      "longDescription": "API that provides Profile information about Players.",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "haloapi"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (Ocp-Apim-Subscription-Key)",
      "authExample": "Ocp-Apim-Subscription-Key: YOUR_API_KEY",
      "baseUrl": "https://www.haloapi.com/profile",
      "docsUrl": "https://www.haloapi.com/profile",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Freemium. User profile service; free tier typically available."
      },
      "rateLimit": "Varies by plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/h5/profiles/{player}/appearance",
          "description": "Halo 5 - Player Appearance"
        },
        {
          "method": "GET",
          "path": "/h5/profiles/{player}/emblem",
          "description": "Halo 5 - Player Emblem Image"
        },
        {
          "method": "GET",
          "path": "/h5/profiles/{player}/spartan",
          "description": "Halo 5 - Player Spartan Image"
        }
      ],
      "sampleRequest": "curl -X GET 'https://www.haloapi.com/profile/h5/profiles/{player}/appearance' \\\n  -H 'Ocp-Apim-Subscription-Key: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 41,
      "scoreLatency": 10,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:36.878Z",
      "verifiedStatus": 404,
      "latencyMs": 7745
    },
    {
      "id": "enanomapper-database",
      "name": "eNanoMapper database",
      "provider": "eNanoMapper database",
      "category": "storage",
      "description": "AMBIT REST web services [eNanoMapper profile] with free text & faceted search",
      "longDescription": "AMBIT REST web services [eNanoMapper profile] with free text & faceted search",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "ideaconsult"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.ideaconsult.net/enanomapper",
      "docsUrl": "https://phabricator.ideaconsult.net",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/enm/{db}/investigation",
          "description": "Details of multiple studies"
        },
        {
          "method": "GET",
          "path": "/enm/{db}/query/compound/{term}/{representation}",
          "description": "Exact chemical structure search"
        },
        {
          "method": "GET",
          "path": "/enm/{db}/query/similarity",
          "description": "Exact similarity search"
        },
        {
          "method": "GET",
          "path": "/enm/{db}/query/smarts",
          "description": "Substructure search"
        },
        {
          "method": "GET",
          "path": "/enm/{db}/query/study",
          "description": "Search endpoint summary"
        },
        {
          "method": "GET",
          "path": "/enm/{db}/substance",
          "description": "List substances"
        },
        {
          "method": "GET",
          "path": "/enm/{db}/substance/{uuid}",
          "description": "Get a substance"
        },
        {
          "method": "GET",
          "path": "/enm/{db}/substance/{uuid}/composition",
          "description": "Substance composition"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.ideaconsult.net/enanomapper/enm/{db}/investigation' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 61,
      "scoreLatency": 4,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:37.751Z",
      "verifiedStatus": 404,
      "latencyMs": 8498
    },
    {
      "id": "mailboxvalidator-free-email-checker",
      "name": "MailboxValidator Free Email Checker",
      "provider": "MailboxValidator Free Email Checker",
      "category": "storage",
      "description": "Box Platform API provides cloud storage, file sharing, and collaboration tools for enterprise applications. Manage files, folders, users, shared links, metadata, and workflow automations.",
      "longDescription": "The MailboxValidator Free Email Checker checks if a single email address is from a free email provider and returns the results in either JSON or XML format. Refer to https://www.mailboxvalidator.com/api-email-freem for further information.",
      "color": "#14b8a6",
      "tags": [
        "maps",
        "entertainment",
        "payments",
        "storage",
        "cloud storage",
        "files",
        "enterprise",
        "collaboration"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 or JWT (Server Authentication) for machine-to-machine",
      "authExample": "Authorization: Bearer YOUR_ACCESS_TOKEN",
      "baseUrl": "https://api.mailboxvalidator.com/",
      "docsUrl": "https://api.mailboxvalidator.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 10,
          "unit": "GB storage",
          "period": "forever"
        },
        "tiers": [
          {
            "name": "Individual",
            "monthlyCents": 0,
            "included": "10 GB storage"
          },
          {
            "name": "Business Starter",
            "monthlyCents": 1500,
            "included": "Per user/mo, unlimited storage"
          },
          {
            "name": "Business",
            "monthlyCents": 2000,
            "included": "Per user/mo, advanced admin"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom."
      },
      "rateLimit": "4,000 API calls/min (authenticated)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/v1/email/free",
          "description": "The Free Email Checker API does validation on a single email address and returns"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.mailboxvalidator.com//v1/email/free' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 51,
      "scoreLatency": 20,
      "scorePricing": 90,
      "score": 53,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:37.654Z",
      "verifiedStatus": 200,
      "latencyMs": 7864
    },
    {
      "id": "archive",
      "name": "Archive API",
      "provider": "Archive",
      "category": "storage",
      "description": "The Archive API provides lists of NYT articles by month going back to 1851.  You can use it to build your own local database of NYT article metadata.",
      "longDescription": "The Archive API provides lists of NYT articles by month going back to 1851.  You can use it to build your own local database of NYT article metadata.",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "nytimes"
      ],
      "authType": "api-key",
      "authDescription": "API key as a query parameter (api-key)",
      "authExample": "GET /endpoint?api-key=YOUR_KEY",
      "baseUrl": "http://api.nytimes.com/svc/archive/v1",
      "docsUrl": "http://api.nytimes.com/svc/archive/v1",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. Internet Archive Wayback Machine API; no paid tiers."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/{year}/{month}.json",
          "description": "Archive API"
        }
      ],
      "sampleRequest": "curl -X GET 'http://api.nytimes.com/svc/archive/v1/{year}/{month}.json' \\\n  -H 'GET /endpoint?api-key=YOUR_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 28,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 20,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:38.420Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "onsched-consumer",
      "name": "OnSched Consumer API",
      "provider": "OnSched Consumer",
      "category": "storage",
      "description": "Box Platform API provides cloud storage, file sharing, and collaboration tools for enterprise applications. Manage files, folders, users, shared links, metadata, and workflow automations.",
      "longDescription": "Build secure and scalable custom apps for Online Booking. Our flexible API provides many options for availability and booking.\r\n<br><br>\r\nTake the API for a test drive. Just click on the Authorize button below and authenticate. \r\nYou can access our demo company profile if you are not a customer, or",
      "color": "#14b8a6",
      "tags": [
        "maps",
        "entertainment",
        "payments",
        "storage",
        "cloud storage",
        "files",
        "enterprise",
        "collaboration"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 or JWT (Server Authentication) for machine-to-machine",
      "authExample": "Authorization: Bearer YOUR_ACCESS_TOKEN",
      "baseUrl": "https://sandbox-api.onsched.com/",
      "docsUrl": "https://sandbox-api.onsched.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 10,
          "unit": "GB storage",
          "period": "forever"
        },
        "tiers": [
          {
            "name": "Individual",
            "monthlyCents": 0,
            "included": "10 GB storage"
          },
          {
            "name": "Business Starter",
            "monthlyCents": 1500,
            "included": "Per user/mo, unlimited storage"
          },
          {
            "name": "Business",
            "monthlyCents": 2000,
            "included": "Per user/mo, advanced admin"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom."
      },
      "rateLimit": "4,000 API calls/min (authenticated)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/consumer/v1/appointments",
          "description": "Get Appointments"
        },
        {
          "method": "POST",
          "path": "/consumer/v1/appointments",
          "description": "Create Appointment"
        },
        {
          "method": "GET",
          "path": "/consumer/v1/appointments/bookingfields",
          "description": "Get Custom Fields Labels"
        },
        {
          "method": "GET",
          "path": "/consumer/v1/appointments/customfields",
          "description": "Get Custom Fields List"
        },
        {
          "method": "DELETE",
          "path": "/consumer/v1/appointments/{id}",
          "description": "Delete Appointment"
        },
        {
          "method": "GET",
          "path": "/consumer/v1/appointments/{id}",
          "description": "Get Appointment"
        },
        {
          "method": "PUT",
          "path": "/consumer/v1/appointments/{id}/book",
          "description": "Book Appointment"
        },
        {
          "method": "PUT",
          "path": "/consumer/v1/appointments/{id}/cancel",
          "description": "Cancel Appointment"
        }
      ],
      "sampleRequest": "curl -X GET 'https://sandbox-api.onsched.com//consumer/v1/appointments' \\\n  -H 'Authorization: Bearer <access_token>'",
      "sampleResponse": "{}",
      "scoreDepth": 91,
      "scoreLatency": 10,
      "scorePricing": 90,
      "score": 66,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:39.429Z",
      "verifiedStatus": 404,
      "latencyMs": 4729
    },
    {
      "id": "daymet-single-pixel-extraction-tool",
      "name": "Daymet Single Pixel Extraction Tool API",
      "provider": "Daymet Single Pixel Extraction Tool",
      "category": "storage",
      "description": "Welcome to the Daymet Single Pixel Extraction Tool API. You can use this API to download daily surface data within the Daymet database in a csv or json format for a single point. This API allows users to query a single geographic point by latitude and longitude in decimal degrees. A routine is e",
      "longDescription": "Welcome to the Daymet Single Pixel Extraction Tool API. You can use this API to download daily surface data within the Daymet database in a csv or json format for a single point. This API allows users to query a single geographic point by latitude and longitude in decimal degrees. A routine is e",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "ornl"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://daymet.ornl.gov/single-pixel",
      "docsUrl": "https://daymet.ornl.gov/single-pixel",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/api/data",
          "description": "Download Daymet Data"
        },
        {
          "method": "GET",
          "path": "/preview",
          "description": "Preview Daymet Data in a web browser"
        },
        {
          "method": "GET",
          "path": "/send/saveData",
          "description": "Download Daymet Data"
        },
        {
          "method": "GET",
          "path": "/visualize",
          "description": "Visualize Daymet Data in a web browser"
        }
      ],
      "sampleRequest": "curl -X GET 'https://daymet.ornl.gov/single-pixel/api/data' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 58,
      "scoreLatency": 8,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:46.108Z",
      "verifiedStatus": 200,
      "latencyMs": 11129
    },
    {
      "id": "doc-converter",
      "name": "Doc Converter",
      "provider": "Doc Converter",
      "category": "storage",
      "description": "This api converts file formats of OpenXml and OpenOffice documents formats to vector files (e.g., svg)",
      "longDescription": "This api converts file formats of OpenXml and OpenOffice documents formats to vector files (e.g., svg)",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "presalytics"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.presalytics.io/doc-converter/",
      "docsUrl": "http://presalytics.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "POST",
          "path": "/svgconvert",
          "description": "converts pptx file to svg image"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.presalytics.io/doc-converter//svgconvert' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 28,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 20,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:39.917Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "dynamicdocs",
      "name": "DynamicDocs",
      "provider": "DynamicDocs",
      "category": "storage",
      "description": "ADVICEment's DynamicDocs API automates your document generation and creates dynamic, optimized, interactive PDFs. Write your templates in LaTeX and call the API with JSON data to get your PDFs in seconds.\n\nThe template files are stored in your dashboard",
      "longDescription": "ADVICEment's DynamicDocs API automates your document generation and creates dynamic, optimized, interactive PDFs. Write your templates in LaTeX and call the API with JSON data to get your PDFs in seconds.\n\nThe template files are stored in your dashboard",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "rapidapi"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (ADVICEment API Key)",
      "authExample": "ADVICEment API Key: YOUR_API_KEY",
      "baseUrl": "https://dynamicdocs.p.rapidapi.com",
      "docsUrl": "https://advicement.io/dynamic-documents-api",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Pay-as-you-go document generation. $0.10/document. Monthly plans available."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "POST",
          "path": "/templates/{template-token}/compile",
          "description": "Compile New Document PDF"
        }
      ],
      "sampleRequest": "curl -X GET 'https://dynamicdocs.p.rapidapi.com/templates/{template-token}/compile' \\\n  -H 'ADVICEment API Key: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 35,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:40.341Z",
      "verifiedStatus": 401,
      "latencyMs": 2889
    },
    {
      "id": "files-com",
      "name": "Files.com API",
      "provider": "Files.com",
      "category": "storage",
      "description": "Enterprise file management platform API for secure file storage, transfer, automation, and user management with comprehensive CRUD operations.",
      "longDescription": "Enterprise file management platform API for secure file storage, transfer, automation, and user management with comprehensive CRUD operations.",
      "color": "#14b8a6",
      "tags": [
        "storage",
        "files",
        "enterprise",
        "transfer"
      ],
      "authType": "api-key",
      "authDescription": "API key in the X-FilesAPI-Key header",
      "authExample": "X-FilesAPI-Key: YOUR_API_KEY",
      "baseUrl": "https://app.files.com/api/rest/v1",
      "docsUrl": "https://www.files.com/docs/",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Enterprise pricing; free trial available."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/folders/{path}",
          "description": "List folder contents"
        },
        {
          "method": "POST",
          "path": "/folders/{path}",
          "description": "Create a folder"
        },
        {
          "method": "GET",
          "path": "/files/{path}",
          "description": "Download a file"
        },
        {
          "method": "POST",
          "path": "/file_actions/begin_upload/{path}",
          "description": "Begin a file upload"
        },
        {
          "method": "GET",
          "path": "/users",
          "description": "List users"
        },
        {
          "method": "POST",
          "path": "/users",
          "description": "Create a user"
        },
        {
          "method": "GET",
          "path": "/api_keys",
          "description": "List API keys"
        },
        {
          "method": "DELETE",
          "path": "/files/{path}",
          "description": "Delete a file or folder"
        }
      ],
      "sampleRequest": "curl -X GET 'https://app.files.com/api/rest/v1/folders/my-folder' \\\n  -H 'X-FilesAPI-Key: YOUR_API_KEY'",
      "sampleResponse": "{\"id\":1,\"path\":\"my-folder\",\"type\":\"directory\",\"files\":[{\"path\":\"my-folder/file.txt\",\"size\":1024}]}",
      "scoreDepth": 74,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 44,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:47.468Z",
      "verifiedStatus": 404,
      "latencyMs": 2406
    },
    {
      "id": "file-io",
      "name": "File.io API",
      "provider": "File.io",
      "category": "storage",
      "description": "Super simple file sharing, convenient, anonymous and secure",
      "longDescription": "Super simple file sharing, convenient, anonymous and secure",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.file.io",
      "docsUrl": "https://www.file.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.file.io'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 57,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:55.064Z",
      "verifiedStatus": 200,
      "latencyMs": 904
    },
    {
      "id": "filestack",
      "name": "Filestack API",
      "provider": "Filestack",
      "category": "storage",
      "description": "Filestack File Uploader & File Upload API",
      "longDescription": "Filestack File Uploader & File Upload API",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.filestack.com",
      "docsUrl": "https://www.filestack.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 100 transformations/mo, 1 GB storage. Growth $49/mo, Scale $149/mo."
      },
      "rateLimit": "Based on plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.filestack.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:55.501Z",
      "verifiedStatus": 200,
      "latencyMs": 1309
    },
    {
      "id": "gyazo",
      "name": "Gyazo API",
      "provider": "Gyazo",
      "category": "storage",
      "description": "Gyazo is the easiest way to record screenshots & videos you can share instantly. Save time with async visual communication that's effortless and engaging.",
      "longDescription": "Gyazo is the easiest way to record screenshots & videos you can share instantly. Save time with async visual communication that's effortless and engaging.",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://gyazo.com",
      "docsUrl": "https://gyazo.com/api/docs",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: unlimited public screenshots. Pro $3.99/mo for API access and private images."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://gyazo.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 37,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:55.308Z",
      "verifiedStatus": 200,
      "latencyMs": 978
    },
    {
      "id": "imgbb",
      "name": "Imgbb API",
      "provider": "Imgbb",
      "category": "storage",
      "description": "Free image hosting and sharing service, upload pictures, photo host. Offers integration solutions for uploading images to forums.",
      "longDescription": "Free image hosting and sharing service, upload pictures, photo host. Offers integration solutions for uploading images to forums.",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://api.imgbb.com",
      "docsUrl": "https://api.imgbb.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open image hosting API. No paid API tiers; 16 MB limit per image."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.imgbb.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:55.766Z",
      "verifiedStatus": 200,
      "latencyMs": 1390
    },
    {
      "id": "pantry",
      "name": "Pantry API",
      "provider": "Pantry",
      "category": "storage",
      "description": "Pantry is a free, API based JSON storage\n                solution for small projects. We help developers build projects\n                quickly",
      "longDescription": "Pantry is a free, API based JSON storage\n                solution for small projects. We help developers build projects\n                quickly",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://getpantry.cloud",
      "docsUrl": "https://getpantry.cloud/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://getpantry.cloud'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 53,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:55.650Z",
      "verifiedStatus": 200,
      "latencyMs": 1245
    },
    {
      "id": "quip",
      "name": "Quip API",
      "provider": "Quip",
      "category": "storage",
      "description": "Quip is real-time collaborative documents, spreadsheets, and chat embedded inside Salesforce to transform any business process.",
      "longDescription": "Quip is real-time collaborative documents, spreadsheets, and chat embedded inside Salesforce to transform any business process.",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://quip.com",
      "docsUrl": "https://quip.com/dev/automation/documentation",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid. Starter $10/user/mo, Plus $25/user/mo, Business $100/user/mo. Salesforce product."
      },
      "rateLimit": "3 req/s (standard)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://quip.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 29,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:57.121Z",
      "verifiedStatus": 200,
      "latencyMs": 2670
    },
    {
      "id": "storj",
      "name": "Storj API",
      "provider": "Storj",
      "category": "storage",
      "description": "Decentralized Open-Source Cloud Storage",
      "longDescription": "Decentralized Open-Source Cloud Storage",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://docs.storj.io",
      "docsUrl": "https://docs.storj.io/dcs/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 150 GB storage, 150 GB egress/month. Pro $4/TB/month storage, $7/TB egress."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.storj.io'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 26,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:56.801Z",
      "verifiedStatus": 200,
      "latencyMs": 2307
    },
    {
      "id": "the-null-pointer",
      "name": "The Null Pointer API",
      "provider": "The Null Pointer",
      "category": "storage",
      "description": "No-bullshit file hosting and URL shortening service",
      "longDescription": "No-bullshit file hosting and URL shortening service",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://0x0.st",
      "docsUrl": "https://0x0.st",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://0x0.st'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 52,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:56.327Z",
      "verifiedStatus": 200,
      "latencyMs": 1830
    },
    {
      "id": "clickup",
      "name": "ClickUp API",
      "provider": "ClickUp",
      "category": "storage",
      "description": "ClickUp is a robust, cloud-based project management tool for boosting productivity",
      "longDescription": "ClickUp is a robust, cloud-based project management tool for boosting productivity",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://clickup.com",
      "docsUrl": "https://clickup.com/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free forever plan (unlimited tasks, members). Unlimited $7/user/mo, Business $12/user/mo."
      },
      "rateLimit": "100 req/min (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://clickup.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:06.018Z",
      "verifiedStatus": 200,
      "latencyMs": 1651
    },
    {
      "id": "clockify",
      "name": "Clockify API",
      "provider": "Clockify",
      "category": "storage",
      "description": "Clockify's REST-based API can be used to push/pull data to/from it & integrate it with other systems",
      "longDescription": "Clockify's REST-based API can be used to push/pull data to/from it & integrate it with other systems",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://clockify.me",
      "docsUrl": "https://clockify.me/developers-api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free forever (unlimited users, projects). Standard $5.49/user/mo, Pro $7.99/user/mo."
      },
      "rateLimit": "100 req/min",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://clockify.me'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 35,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:06.258Z",
      "verifiedStatus": 200,
      "latencyMs": 1827
    },
    {
      "id": "cloudconvert",
      "name": "CloudConvert API",
      "provider": "CloudConvert",
      "category": "storage",
      "description": "Online file converter for audio, video, document, ebook, archive, image, spreadsheet, presentation",
      "longDescription": "Online file converter for audio, video, document, ebook, archive, image, spreadsheet, presentation",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://cloudconvert.com",
      "docsUrl": "https://cloudconvert.com/api/v2",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 25 conversions/day. Packages from $8 (500 conversions). Subscription from $13/mo."
      },
      "rateLimit": "25 conversions/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://cloudconvert.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:05.905Z",
      "verifiedStatus": 200,
      "latencyMs": 1467
    },
    {
      "id": "cloudmersive-document-and-data-conversio",
      "name": "Cloudmersive Document and Data Conversion API",
      "provider": "Cloudmersive Document and Data Conversion",
      "category": "storage",
      "description": "HTML/URL to PDF/PNG, Office documents to PDF, image conversion",
      "longDescription": "HTML/URL to PDF/PNG, Office documents to PDF, image conversion",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://cloudmersive.com",
      "docsUrl": "https://cloudmersive.com/convert-api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 800 API calls/month. Paid from $15/mo (50,000 calls). Document, PDF, data conversion."
      },
      "rateLimit": "800 calls/month (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://cloudmersive.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:06.200Z",
      "verifiedStatus": 200,
      "latencyMs": 1680
    },
    {
      "id": "code-stats",
      "name": "Code::Stats API",
      "provider": "Code::Stats",
      "category": "storage",
      "description": "Code::Stats is a free stats tracking service for programmers",
      "longDescription": "Code::Stats is a free stats tracking service for programmers",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://codestats.net",
      "docsUrl": "https://codestats.net/api-docs",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open-source. Programmer statistics tracking API; no paid tiers."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://codestats.net'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:06.360Z",
      "verifiedStatus": 200,
      "latencyMs": 1827
    },
    {
      "id": "craftmypdf",
      "name": "CraftMyPDF API",
      "provider": "CraftMyPDF",
      "category": "storage",
      "description": "Generate PDF documents from templates with a drop-and-drop editor and a simple API",
      "longDescription": "Generate PDF documents from templates with a drop-and-drop editor and a simple API",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://craftmypdf.com",
      "docsUrl": "https://craftmypdf.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 100 API calls/month. Basic $9/mo (1,000 calls), Pro $29/mo (5,000 calls)."
      },
      "rateLimit": "100 calls/month (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://craftmypdf.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:06.011Z",
      "verifiedStatus": 200,
      "latencyMs": 1320
    },
    {
      "id": "ilovepdf",
      "name": "iLovePDF API",
      "provider": "iLovePDF",
      "category": "storage",
      "description": "Convert, merge, split, extract text and add page numbers for PDFs. Free for 250 documents/month",
      "longDescription": "Convert, merge, split, extract text and add page numbers for PDFs. Free for 250 documents/month",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.ilovepdf.com",
      "docsUrl": "https://developer.ilovepdf.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 5 files/month via API. Basic $6/mo (unlimited for personal). Team $18/mo."
      },
      "rateLimit": "5 files/month (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.ilovepdf.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:07.489Z",
      "verifiedStatus": 200,
      "latencyMs": 2352
    },
    {
      "id": "mattermost",
      "name": "Mattermost API",
      "provider": "Mattermost",
      "category": "storage",
      "description": "An open source platform for developer collaboration",
      "longDescription": "An open source platform for developer collaboration",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://api.mattermost.com",
      "docsUrl": "https://api.mattermost.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free (self-hosted open-source). Cloud free up to 10 users. Professional $10/user/mo."
      },
      "rateLimit": "Configurable per deployment",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.mattermost.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 16,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:19:08.560Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "prexview",
      "name": "PrexView API",
      "provider": "PrexView",
      "category": "storage",
      "description": "Data from XML or JSON to PDF, HTML or Image",
      "longDescription": "Data from XML or JSON to PDF, HTML or Image",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://prexview.com",
      "docsUrl": "https://prexview.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 5 req/month. Starter $9/mo (100 req), Pro $29/mo (500 req). HTML/XML to PDF."
      },
      "rateLimit": "5 req/month (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://prexview.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:06.393Z",
      "verifiedStatus": 200,
      "latencyMs": 1058
    },
    {
      "id": "vector-express",
      "name": "Vector Express v2.0 API",
      "provider": "Vector Express v2.0",
      "category": "storage",
      "description": "Convert your AI, CDR, DWG, DXF, EPS, HPGL, PDF, PLT, PS and SVG vector fast and easily. We also offer a free API!",
      "longDescription": "Convert your AI, CDR, DWG, DXF, EPS, HPGL, PDF, PLT, PS and SVG vector fast and easily. We also offer a free API!",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://vector.express",
      "docsUrl": "https://vector.express",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://vector.express'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 58,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:06.199Z",
      "verifiedStatus": 200,
      "latencyMs": 808
    },
    {
      "id": "wakatime",
      "name": "WakaTime API",
      "provider": "WakaTime",
      "category": "storage",
      "description": "Automated time tracking leaderboards for programmers",
      "longDescription": "Automated time tracking leaderboards for programmers",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://wakatime.com",
      "docsUrl": "https://wakatime.com/developers",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://wakatime.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 52,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:06.446Z",
      "verifiedStatus": 200,
      "latencyMs": 1040
    },
    {
      "id": "ddownload",
      "name": "ddownload API",
      "provider": "ddownload",
      "category": "storage",
      "description": "ddownload.com - Fast and Free File Hosting. Make Money Uploading Files, No Files Deletion, Unlimited Bandwidth, Unlimited Storage, Unlimited File Size",
      "longDescription": "ddownload.com - Fast and Free File Hosting. Make Money Uploading Files, No Files Deletion, Unlimited Bandwidth, Unlimited Storage, Unlimited File Size",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://ddownload.com",
      "docsUrl": "https://ddownload.com/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with account. File hosting and sharing platform API."
      },
      "rateLimit": "Based on account type",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://ddownload.com'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 41,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:50.678Z",
      "verifiedStatus": 200,
      "latencyMs": 841
    },
    {
      "id": "dropbox",
      "name": "Dropbox API",
      "provider": "Dropbox",
      "category": "storage",
      "description": "Box Platform API provides cloud storage, file sharing, and collaboration tools for enterprise applications. Manage files, folders, users, shared links, metadata, and workflow automations.",
      "longDescription": "File Sharing and Storage",
      "color": "#14b8a6",
      "tags": [
        "communication",
        "maps",
        "entertainment",
        "storage",
        "cloud storage",
        "files",
        "enterprise",
        "collaboration"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 or JWT (Server Authentication) for machine-to-machine",
      "authExample": "Authorization: Bearer YOUR_ACCESS_TOKEN",
      "baseUrl": "https://www.dropbox.com",
      "docsUrl": "https://www.dropbox.com/developers",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 10,
          "unit": "GB storage",
          "period": "forever"
        },
        "tiers": [
          {
            "name": "Individual",
            "monthlyCents": 0,
            "included": "10 GB storage"
          },
          {
            "name": "Business Starter",
            "monthlyCents": 1500,
            "included": "Per user/mo, unlimited storage"
          },
          {
            "name": "Business",
            "monthlyCents": 2000,
            "included": "Per user/mo, advanced admin"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom."
      },
      "rateLimit": "4,000 API calls/min (authenticated)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.dropbox.com'",
      "sampleResponse": "{}",
      "scoreDepth": 39,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 65,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:50.569Z",
      "verifiedStatus": 200,
      "latencyMs": 602
    },
    {
      "id": "onedrive",
      "name": "OneDrive API",
      "provider": "OneDrive",
      "category": "storage",
      "description": "Any platform. Any language. Our tools. Develop solutions, on your terms, using Microsoft products and services.",
      "longDescription": "Any platform. Any language. Our tools. Develop solutions, on your terms, using Microsoft products and services.",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.microsoft.com",
      "docsUrl": "https://developer.microsoft.com/onedrive",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 5 GB storage. Microsoft 365 Personal $6.99/mo (1 TB). API access via Microsoft Graph."
      },
      "rateLimit": "10,000 req/10min per user (throttle limits)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.microsoft.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 35,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:51.407Z",
      "verifiedStatus": 200,
      "latencyMs": 1331
    },
    {
      "id": "pinata",
      "name": "Pinata API",
      "provider": "Pinata",
      "category": "storage",
      "description": "Start uploading and retrieving content in no time",
      "longDescription": "Start uploading and retrieving content in no time",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://docs.pinata.cloud",
      "docsUrl": "https://docs.pinata.cloud/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 1 GB IPFS storage, 500 files. Picnic $20/mo (100 GB), Fiesta $200/mo (1 TB)."
      },
      "rateLimit": "180 req/min (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.pinata.cloud'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:51.430Z",
      "verifiedStatus": 200,
      "latencyMs": 1333
    },
    {
      "id": "flowdash",
      "name": "Flowdash API",
      "provider": "Flowdash",
      "category": "storage",
      "description": "Automate business workflows",
      "longDescription": "Automate business workflows",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://docs.flowdash.com",
      "docsUrl": "https://docs.flowdash.com/docs/api-introduction",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free tier available. Workflow automation platform; paid plans for teams."
      },
      "rateLimit": "Varies by plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.flowdash.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 37,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:52.064Z",
      "verifiedStatus": 200,
      "latencyMs": 751
    },
    {
      "id": "pandadoc",
      "name": "PandaDoc API",
      "provider": "PandaDoc",
      "category": "storage",
      "description": "DocGen and eSignatures API",
      "longDescription": "DocGen and eSignatures API",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developers.pandadoc.com",
      "docsUrl": "https://developers.pandadoc.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: eSign only. Essentials $19/user/mo, Business $49/user/mo. API add-on available."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developers.pandadoc.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 37,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:52.071Z",
      "verifiedStatus": 200,
      "latencyMs": 680
    },
    {
      "id": "podio",
      "name": "Podio API",
      "provider": "Podio",
      "category": "storage",
      "description": "File sharing and productivity",
      "longDescription": "File sharing and productivity",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developers.podio.com",
      "docsUrl": "https://developers.podio.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 5 members, 5 apps per workspace. Plus $11.20/user/mo, Premium $19.20/user/mo."
      },
      "rateLimit": "250 req/min",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developers.podio.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:52.571Z",
      "verifiedStatus": 200,
      "latencyMs": 1163
    },
    {
      "id": "zube",
      "name": "Zube API",
      "provider": "Zube",
      "category": "storage",
      "description": "Full stack project management",
      "longDescription": "Full stack project management",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://zube.io",
      "docsUrl": "https://zube.io/docs/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 1 workspace. Pro $6/user/mo. Project management with GitHub integration."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://zube.io'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:52.518Z",
      "verifiedStatus": 200,
      "latencyMs": 1088
    },
    {
      "id": "the-movie-database-tmdb",
      "name": "The Movie Database (TMDb) API",
      "provider": "The Movie Database (TMDb)",
      "category": "storage",
      "description": "The Movie Database (TMDb) API. See documentation for full details.",
      "longDescription": "The Movie Database (TMDb) API. See documentation for full details.",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developers.themoviedb.org",
      "docsUrl": "https://developers.themoviedb.org",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free for non-commercial use with attribution. TMDB Pro starts at ~$4/mo for higher limits."
      },
      "rateLimit": "50 req/s (free tier)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developers.themoviedb.org'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 22,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:15.246Z",
      "verifiedStatus": 200,
      "latencyMs": 4748
    },
    {
      "id": "amazon-simpledb",
      "name": "Amazon SimpleDB API",
      "provider": "Amazon SimpleDB",
      "category": "storage",
      "description": "Amazon SimpleDB is a web service providing the core database functions of data indexing and querying in the cloud. By offloading the time and effort associated with building and operating a web-scale database, SimpleDB provides developers the freedom to focus on application development. <p> A traditional, clustered relational database requires a sizable upfront capital outlay, is complex to design",
      "longDescription": "Amazon SimpleDB is a web service providing the core database functions of data indexing and querying in the cloud. By offloading the time and effort associated with building and operating a web-scale database, SimpleDB provides developers the freedom to focus on application development. <p> A traditional, clustered relational database requires a sizable upfront capital outlay, is complex to design",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "API key in the Authorization header",
      "authExample": "Authorization: YOUR_API_KEY",
      "baseUrl": "http://sdb.amazonaws.com",
      "docsUrl": "https://api.apis.guru/v2/specs/amazonaws.com:sdb/2009-04-15.json",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Pay-as-you-go. $0.14/machine hour, $1.50/GB data transfer out, $0.25/GB storage."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/#Action=BatchDeleteAttributes",
          "description": "<p> Performs multiple DeleteAttributes operations in a single call, which reduce"
        },
        {
          "method": "POST",
          "path": "/#Action=BatchDeleteAttributes",
          "description": "<p> Performs multiple DeleteAttributes operations in a single call, which reduce"
        },
        {
          "method": "GET",
          "path": "/#Action=BatchPutAttributes",
          "description": "<p> The <code>BatchPutAttributes</code> operation creates or replaces attributes"
        },
        {
          "method": "POST",
          "path": "/#Action=BatchPutAttributes",
          "description": "<p> The <code>BatchPutAttributes</code> operation creates or replaces attributes"
        },
        {
          "method": "GET",
          "path": "/#Action=CreateDomain",
          "description": "<p> The <code>CreateDomain</code> operation creates a new domain. The domain nam"
        },
        {
          "method": "POST",
          "path": "/#Action=CreateDomain",
          "description": "<p> The <code>CreateDomain</code> operation creates a new domain. The domain nam"
        },
        {
          "method": "GET",
          "path": "/#Action=DeleteAttributes",
          "description": "<p> Deletes one or more attributes associated with an item. If all attributes of"
        },
        {
          "method": "POST",
          "path": "/#Action=DeleteAttributes",
          "description": "<p> Deletes one or more attributes associated with an item. If all attributes of"
        }
      ],
      "sampleRequest": "curl 'http://sdb.amazonaws.com/#Action=BatchDeleteAttributes' \\\n  -H 'Authorization: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 68,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:14.302Z",
      "verifiedStatus": 400,
      "latencyMs": 1409
    },
    {
      "id": "linkeddata-center",
      "name": "LinkedData.Center API",
      "provider": "LinkedData.Center",
      "category": "storage",
      "description": "a RDF graph database as a service with W3C SPARQL query and SPARQL update apis. | 💸 |",
      "longDescription": "a RDF graph database as a service with W3C SPARQL query and SPARQL update apis. | 💸 |",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://linkeddata.center",
      "docsUrl": "http://linkeddata.center/home/gdaas",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. Linked Data Center semantic web API."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://linkeddata.center'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:18.572Z",
      "verifiedStatus": 200,
      "latencyMs": 3118
    },
    {
      "id": "acoustid",
      "name": "Acoustid API",
      "provider": "Acoustid",
      "category": "storage",
      "description": "Supports searching through their fingerprint database. | !Open Source |",
      "longDescription": "Supports searching through their fingerprint database. | !Open Source |",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://acoustid.org",
      "docsUrl": "https://acoustid.org/webservice",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. AcoustID audio fingerprinting and MusicBrainz lookup; no paid tiers."
      },
      "rateLimit": "3 req/s",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://acoustid.org'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 36,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:18.989Z",
      "verifiedStatus": 200,
      "latencyMs": 1161
    },
    {
      "id": "igdb",
      "name": "IGDB API",
      "provider": "IGDB",
      "category": "storage",
      "description": "Access the International Games Database and get information about video games, characters, companies, genres and many more. Commercial usage is allowed. | N/A |",
      "longDescription": "Access the International Games Database and get information about video games, characters, companies, genres and many more. Commercial usage is allowed. | N/A |",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.igdb.com",
      "docsUrl": "https://www.igdb.com/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Twitch developer account (requires Twitch Client-ID). Up to 4 req/s, 500/month in dev mode."
      },
      "rateLimit": "4 req/s (free with Twitch auth)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.igdb.com'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 38,
      "scorePricing": 28,
      "score": 30,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:19.644Z",
      "verifiedStatus": 403,
      "latencyMs": 732
    },
    {
      "id": "brewereydb",
      "name": "BrewereyDB API",
      "provider": "BrewereyDB",
      "category": "storage",
      "description": "BreweryDB is a database of breweries, beers, beer events and guilds.",
      "longDescription": "BreweryDB is a database of breweries, beers, beer events and guilds.",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://www.brewerydb.com",
      "docsUrl": "http://www.brewerydb.com/developers",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with developer account. Open beer and brewery database API."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://www.brewerydb.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:22.565Z",
      "verifiedStatus": 200,
      "latencyMs": 3148
    },
    {
      "id": "timezones-ical-library",
      "name": "TimeZones iCal Library API",
      "provider": "TimeZones iCal Library",
      "category": "storage",
      "description": "Database of official time zones and corresponding iCal VTIMEZONE blocks                                |    No    |  Yes  | Unknown |",
      "longDescription": "Database of official time zones and corresponding iCal VTIMEZONE blocks                                |    No    |  Yes  | Unknown |",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://tz.add-to-calendar-technology.com",
      "docsUrl": "https://tz.add-to-calendar-technology.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open-source. IANA timezone iCal library; no paid tiers."
      },
      "rateLimit": "Not applicable",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://tz.add-to-calendar-technology.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 35,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:21.192Z",
      "verifiedStatus": 200,
      "latencyMs": 1362
    },
    {
      "id": "chuck-norris-database",
      "name": "Chuck Norris Database API",
      "provider": "Chuck Norris Database",
      "category": "storage",
      "description": "Jokes                                                                                                        |       No        |  No   | Unknown |",
      "longDescription": "Jokes                                                                                                        |       No        |  No   | Unknown |",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://www.icndb.com",
      "docsUrl": "http://www.icndb.com/api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. Chuck Norris jokes API; no paid tiers."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://www.icndb.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 29,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:24.196Z",
      "verifiedStatus": 200,
      "latencyMs": 2688
    },
    {
      "id": "jservice",
      "name": "Jservice API",
      "provider": "Jservice",
      "category": "storage",
      "description": "Jeopardy Question Database                                                                                   |       No        |  No   | Unknown |",
      "longDescription": "Jeopardy Question Database                                                                                   |       No        |  No   | Unknown |",
      "color": "#14b8a6",
      "tags": [
        "storage"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://jservice.io",
      "docsUrl": "http://jservice.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. Jeopardy! questions API; no paid tiers."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://jservice.io'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 23,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:23.942Z",
      "verifiedStatus": 403,
      "latencyMs": 2309
    }
  ]
}