{"templateId":"markdown","sharedDataIds":{"sidebar":"sidebar-docs/functions/sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":["partial"]},"type":"markdown"},"seo":{"title":"Developer Documentation","siteUrl":"https://developers.sinch.com","llmstxt":{"title":"Sinch Developer Documentation","description":"LLMs.txt containing a map of all the documentation files for Sinch.","sections":[{"title":"SMS API","description":"The SMS API allows you to send and receive SMS messages with a few easy steps. You can also send bulk SMS messages to multiple customers using the Sinch SMS service.","includeFiles":["docs/sms/**/*.md","docs/sms/**/*.yaml"],"excludeFiles":["docs/sms/index.md"]},{"title":"Numbers API","description":"The Numbers API enables you to search for, view, and activate numbers. It's considered a precursor to other APIs in the Sinch product family. The numbers API can be used in tandem with any of our APIs that perform messaging or calling.","includeFiles":["docs/numbers/**/*.md","docs/numbers/**/*.yaml"],"excludeFiles":["docs/numbers/index.md"]},{"title":"Conversation API","description":"Send and receive messages globally on many popular channels with ease and confidence when using Sinch's Conversation API. Conversation API is the preferred API for sending mobile messages on SMS and other social channels with Sinch. It is a simple API with unified error messages, consistent request payloads, and common webhook payloads that are channel-agnostic.","includeFiles":["docs/conversation/**/*.md","docs/conversation/**/*.yaml"],"excludeFiles":["docs/conversation/index.md"]},{"title":"Voice API","description":"The Voice API works as a big telephony switch. The Voice API handles incoming phone calls (also known as incoming call “legs”), sets up outgoing phone calls (or outgoing call “legs”), and bridges the two. The incoming call leg may come in over a data connection (from a smartphone or web application using the Sinch SDKs) or through a local phone number (from the PSTN network). Similarly, the outgoing call leg can be over data (to another smartphone or web application using the Sinch SDKs) or the PSTN network.","includeFiles":["docs/voice/**/*.md","docs/voice/**/*.yaml"],"excludeFiles":["docs/voice/index.md"]},{"title":"Verification API","description":"The Verification API is a platform for phone number verification. It consists of the API and different software development kits (the Sinch SDKs) that you integrate with your smartphone or web application and cloud based back-end services. Together they enable SMS, Flashcall, Phone Call and Data verification in your application.","includeFiles":["docs/verification/**/*.md","docs/verification/**/*.yaml"],"excludeFiles":["docs/verification/index.md"]},{"title":"Provisioning API","description":"Provisioning API allows you to programmatically set up your senders, accounts and templates on your favorite messaging platforms on the Conversation API. For now, you can create your first WhatsApp channel through Meta's Embedded sign up, you can configure your first SMS App and configure your webhooks. As development continues, we will be adding the most commonly used channels.","includeFiles":["docs/provisioning-api/**/*.md","docs/provisioning-api/**/*.json"],"excludeFiles":["docs/provisioning-api/index.md"]},{"title":"Elastic SIP Trunking API","description":"With Elastic SIP Trunking you can create and manage your SIP trunks and phone numbers programmatically.","includeFiles":["docs/est/**/*.md","docs/est/**/*.yaml"],"excludeFiles":["docs/est/index.md"]},{"title":"Fax API","description":"Send and receive HIPAA compliant faxes on our modern fax platform using our developer-friendly API.","includeFiles":["docs/fax/**/*.md","docs/fax/**/*.yaml"],"excludeFiles":["docs/fax/index.md"]},{"title":"In-app Voice and Video SDK","description":"The In-app Voice and Video SDK enables you to add voice and video calling capabilities directly into your mobile or web application using the Sinch SDKs.","includeFiles":["docs/in-app-calling/**/*.md"],"excludeFiles":["docs/in-app-calling/index.md"]}],"hide":false,"excludeFiles":[]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"integrate-functions-into-your-operations-workflows","__idx":0},"children":["Integrate Functions into Your Operations Workflows"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The Sinch Functions API exposes read-only endpoints for monitoring your deployed functions. Use these to connect functions to your existing operations tooling — PagerDuty, Grafana, custom dashboards, or CI/CD health checks."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Base URL:"]}," ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["https://functions.api.sinch.com"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Authentication:"]}," OAuth 2.0 (the same authentication used by the Sinch dashboard). All requests must include a valid OAuth bearer token scoped to your project."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"available-endpoints","__idx":1},"children":["Available endpoints"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["All endpoints are scoped to a project and function:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"/v1/projects/{projectId}/functions/{functionId}/...\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Your ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["projectId"]}," is visible in the Sinch dashboard and in ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["sinch.json"]},". The ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["functionId"]}," is returned when you deploy via the CLI (",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["sinch functions list"]}," shows all IDs)."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"function-status","__idx":2},"children":["Function status"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Check whether a function is running, stopped, or in a deployment cycle."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"GET /v1/projects/{projectId}/functions/{functionId}/status\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response:"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"{\n  \"functionId\": \"01JKXF00000000000003\",\n  \"status\": \"Running\",\n  \"error\": null,\n  \"url\": \"https://fn-01jkxf00000000000003.functions.sinch.com\"\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Status values:"]}," ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Running"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Stopped"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Failed"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Building"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Deploying"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PreparingBuild"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Queued"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Created"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Use this for health checks and alerting. Poll on an interval or call it from your CI pipeline after a deploy to confirm the function came up healthy."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"real-time-log-streaming-sse","__idx":3},"children":["Real-time log streaming (SSE)"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Open a Server-Sent Events connection to tail logs in real time. Each event contains a full request/response cycle including console output from your function."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"GET /v1/projects/{projectId}/functions/{functionId}/logs/stream\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Query parameters:"]}]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Parameter"},"children":["Parameter"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Type"},"children":["Type"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Description"},"children":["Description"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["since"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["ISO 8601"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Only stream events after this timestamp"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["level"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["debug"]}," | ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["info"]}," | ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["warning"]}," | ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["error"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Filter by minimum log level"]}]}]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example with curl:"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"curl -N -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://functions.api.sinch.com/v1/projects/$PROJECT_ID/functions/$FUNCTION_ID/logs/stream\"\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Each SSE event is a JSON object containing the HTTP request, response, execution time, memory usage, and any console log output from your function code."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Connect this to your log aggregator or alerting system to react to errors in real time."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"historical-logs","__idx":4},"children":["Historical logs"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Query past requests with filtering, search, and pagination."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"GET /v1/projects/{projectId}/functions/{functionId}/logs\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Query parameters:"]}]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Parameter"},"children":["Parameter"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Type"},"children":["Type"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Description"},"children":["Description"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["startTime"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["ISO 8601"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Start of time range"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["endTime"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["ISO 8601"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["End of time range"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["level"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["debug"]}," | ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["info"]}," | ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["warning"]}," | ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["error"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Filter to requests with logs at this level or above"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["search"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["string"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Search request URL, body, or log messages"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["status"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["success"]}," | ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["redirect"]}," | ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["error"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Filter by HTTP status category (2xx, 3xx, 4xx+)"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["page"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["integer"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Page number (default: 1)"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["pageSize"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["integer"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Results per page (default: 100)"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["order"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["asc"]}," | ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["desc"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Sort order (default: ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["desc"]},")"]}]}]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response:"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"{\n  \"requests\": [\n    {\n      \"id\": \"...\",\n      \"httpMethod\": \"POST\",\n      \"url\": \"https://fn-...\",\n      \"statusCode\": 200,\n      \"executionTimeMs\": 42,\n      \"memoryUsedMB\": 64,\n      \"startTime\": \"2026-02-19T14:30:00Z\",\n      \"endTime\": \"2026-02-19T14:30:00.042Z\",\n      \"logs\": [{ \"level\": \"Info\", \"message\": \"ICE: call from +15551234567\", \"timestamp\": \"...\" }]\n    }\n  ],\n  \"pagination\": {\n    \"page\": 1,\n    \"pageSize\": 100,\n    \"totalCount\": 500,\n    \"totalPages\": 5\n  }\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Use this to build custom dashboards, run nightly error reports, or feed logs into your SIEM."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"metrics","__idx":5},"children":["Metrics"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Get aggregated performance metrics for a function over a time range."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"GET /v1/projects/{projectId}/functions/{functionId}/metrics?timeRange=24h\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["timeRange"]}," values:"]}," ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["1h"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["4h"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["24h"]}," (default), ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["7d"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["30d"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response:"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"{\n  \"functionName\": \"ivr-handler\",\n  \"timeRange\": \"24h\",\n  \"summary\": {\n    \"totalRequests\": 1000,\n    \"avgResponseTime\": 120.5,\n    \"errorRate\": 2.3,\n    \"avgMemory\": 64.2,\n    \"avgCpuUsage\": 45.1\n  },\n  \"responseTimeSeries\": [\n    { \"timestamp\": \"...\", \"averageResponseTime\": 110, \"p95ResponseTime\": 250 }\n  ],\n  \"requestVolumeSeries\": [{ \"timestamp\": \"...\", \"totalRequests\": 85 }],\n  \"errorRateSeries\": [{ \"timestamp\": \"...\", \"errorRate\": 1.5 }]\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Use this to build Grafana dashboards, set up threshold-based alerting, or track performance trends over time."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"billing","__idx":6},"children":["Billing"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Get current billing period cost summary."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"GET /v1/projects/{projectId}/billing/current\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Per-function cost breakdown:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"GET /v1/projects/{projectId}/functions/{functionId}/costs?period=month\n"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"list-functions","__idx":7},"children":["List functions"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Get all functions in a project with their current status."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"GET /v1/projects/{projectId}/functions\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response:"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"{\n  \"functions\": [\n    {\n      \"id\": \"01JKXF00000000000003\",\n      \"name\": \"ivr-handler\",\n      \"runtime\": \"node\",\n      \"status\": \"Running\",\n      \"createdAt\": \"2026-01-15T10:00:00Z\",\n      \"updatedAt\": \"2026-02-18T14:30:00Z\"\n    }\n  ],\n  \"total\": 3\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"rate-limits","__idx":8},"children":["Rate limits"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["These endpoints share the project-level rate limits documented in ",{"$$mdtype":"Tag","name":"a","attributes":{"href":"/docs/functions/reference/limits"},"children":["Limits and Constraints"]},". Key limits for operations use:"]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Endpoint"},"children":["Endpoint"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Limit"},"children":["Limit"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Function status, list, metrics"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["100 requests / 60s"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Historical logs"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["200 requests / 60s"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Log streaming (SSE)"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["5 concurrent connections"]}]}]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"coming-soon-opentelemetry-export","__idx":9},"children":["Coming soon: OpenTelemetry export"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["We are adding native OpenTelemetry (OTel) support to Sinch Functions. When available, your functions will be able to export traces, metrics, and logs directly to your own observability backend — Datadog, Grafana Cloud, New Relic, or any OTel-compatible collector."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This will be available as a paid add-on. The endpoints documented on this page remain free and available to all projects."]}]},"headings":[{"value":"Integrate Functions into Your Operations Workflows","id":"integrate-functions-into-your-operations-workflows","depth":1},{"value":"Available endpoints","id":"available-endpoints","depth":2},{"value":"Function status","id":"function-status","depth":2},{"value":"Real-time log streaming (SSE)","id":"real-time-log-streaming-sse","depth":2},{"value":"Historical logs","id":"historical-logs","depth":2},{"value":"Metrics","id":"metrics","depth":2},{"value":"Billing","id":"billing","depth":2},{"value":"List functions","id":"list-functions","depth":2},{"value":"Rate limits","id":"rate-limits","depth":2},{"value":"Coming soon: OpenTelemetry export","id":"coming-soon-opentelemetry-export","depth":2}],"frontmatter":{"seo":{"title":""}},"lastModified":"2026-04-15T14:23:23.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/docs/functions/guides/integrate-operations-api","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}