Get Single Record

Retrieve detailed information about a specific record by its ID. This includes all form field values, location data, timestamps, and associated metadata.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

API Library Examples

from fulcrum import Fulcrum
fulcrum = Fulcrum('{token}')

record = fulcrum.records.find('{id}')

print(record['record']) # entire record
# print(record['record']['id']) # just the record id
const { Client } = require('fulcrum-app');
const client = new Client('{token}');

client.records.find('{id}')
  .then((record) => {
    console.log(record); // entire record
    // console.log(record.id); // just the record id
  })
  .catch((error) => {
    console.log(error.message);
  });
require 'fulcrum'

client = Fulcrum::Client.new('{token}')
record = client.records.find('{id}')

# puts record # entire record definition
puts record['id'] # just the record id
Path Params
string
required

The unique identifier of the record to retrieve.

Headers
string
Defaults to application/json
Responses

Language
Credentials
Header
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json