Skip to content
For LLMsView as Markdown·

Cat Facts

Free API serving random cat facts. Great for testing simple GET requests.

DetailValue
CategoryTesting
Base URLhttps://catfact.ninja
AuthenticationNone
Endpoints3
Connector keycatfact

Using Cat Facts in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Cat Facts from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /factGet a random cat fact
GET /factsGet a list of cat facts
GET /breedsGet a list of cat breeds

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /fact

Get a random cat fact

DetailValue
Operation IDtest.getFact
MethodGET
Path/fact

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Cat Facts connection from the Connection dropdown.
  3. In the Operation dropdown, select test.getFact.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Cat Facts API reference.

GET /facts

Get a list of cat facts

DetailValue
Operation IDtest.listFacts
MethodGET
Path/facts

Parameters

NameLocationTypeRequired
limitqueryintegerNo
pagequeryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Cat Facts connection from the Connection dropdown.
  3. In the Operation dropdown, select test.listFacts.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Cat Facts API reference.

GET /breeds

Get a list of cat breeds

DetailValue
Operation IDtest.listBreeds
MethodGET
Path/breeds

Parameters

NameLocationTypeRequired
limitqueryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Cat Facts connection from the Connection dropdown.
  3. In the Operation dropdown, select test.listBreeds.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Cat Facts API reference.