Inngest · Example Payload

Inngest List Functions Example

AI AgentsAgentKitBackground JobsConnectCron JobsDev ServerDurable EndpointsDurable ExecutionEvent-DrivenInsightsOrchestrationQueuesRealtimeSelf-HostingServerlessSignalsStep FunctionsWebhooksWorkflows

Inngest List Functions Example is an example object payload from Inngest, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.inngest.com/v1/functions",
    "headers": {
      "Authorization": "Bearer signkey-prod-***"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": [
        {
          "id": "fn_send_welcome_email",
          "slug": "send-welcome-email",
          "name": "Send Welcome Email",
          "triggers": [
            {"event": "app/user.signed-up"}
          ]
        },
        {
          "id": "fn_nightly_report",
          "slug": "nightly-report",
          "name": "Nightly Report",
          "triggers": [
            {"cron": "0 6 * * *"}
          ]
        },
        {
          "id": "fn_research_agent",
          "slug": "research-agent",
          "name": "Research Agent Workflow",
          "triggers": [
            {"event": "agent/research.requested"}
          ]
        }
      ]
    }
  }
}