A comprehensive REST API for film development data, providing accurate development times, temperature compensation, and compatibility information for various films and developers. Data is sourced from digitaltruth.com and updated regularly.
https://secure-svr.net/darkroom
Development times are automatically adjusted based on temperature using Ilford's standard chart:
Temperature | Adjustment | Example (10min base) |
---|---|---|
17°C | +75% | 17:30 |
18°C | +45% | 14:30 |
19°C | +20% | 12:00 |
20°C | Base | 10:00 |
21°C | -10% | 9:00 |
22°C | -15% | 8:30 |
23°C | -20% | 8:00 |
24°C | -25% | 7:30 |
25°C | -30% | 7:00 |
26°C | -35% | 6:30 |
27°C | -40% | 6:00 |
28°C | -45% | 5:30 |
29°C | -50% | 5:00 |
30°C | -55% | 4:30 |
Get API information and list of all available endpoints.
{
"api_name": "Darkroom Development API",
"version": "1.0.0",
"endpoints": {
"/darkroom/data": "Get all film development data",
"/darkroom/search": "Search films by name or developer",
"/darkroom/film/:name/times": "Get development times for each developer option",
"/darkroom/film/:name/developers": "Get a list of all developers available for a specific film",
"/darkroom/film/:name": "Get detailed film information",
"/darkroom/film/:name/temperature/:temp": "Get temperature-adjusted development times for a film",
"/darkroom/film/:name/isos": "Get available ISO ratings for a film",
"/darkroom/developer/:name/dilutions": "Get all available dilutions for a developer",
"/darkroom/films/format/:format": "Get all films available in a specific format",
"/darkroom/developer/:name/compatible-films": "Get all films compatible with a developer",
"/health": "API health check"
}
}
Check the API's health status.
{
"status": "healthy",
"timestamp": "2025-02-09T22:08:45.000Z"
}
Retrieve the complete film development database.
Parameter | Type | Description |
---|---|---|
includeNotes | boolean | Include development notes in the response |
{
"metadata": {
"last_updated": "2025-02-09T12:00:00Z",
"total_films": 150
},
"films": [
{
"film_name": "HP5 Plus",
"source_url": "https://www.digitaltruth.com/devchart.php?Film=HP5%20Plus&Developer=&mdc=Search&TempUnits=C&TimeUnits=D",
"development_options": [
{
"developer": "D-76",
"dilution": "1:1",
"iso": "ISO 400",
"temperature": "20°C",
"development_times": {
"35mm": "7:30",
"120": "7:30",
"sheet": "7:30"
}
}
]
}
]
}
Search films by name or developer.
Parameter | Type | Description |
---|---|---|
film | string | Film name to search for |
developer | string | Developer name to search for |
includeNotes | boolean | Include development notes in the response |
{
"search_parameters": {
"film": "HP5",
"developer": null
},
"results_count": 1,
"results": [
{
"film_name": "HP5 Plus",
"source_url": "https://www.digitaltruth.com/devchart.php?Film=HP5%20Plus&Developer=&mdc=Search&TempUnits=C&TimeUnits=D",
"development_options": [
{
"developer": "D-76",
"dilution": "1:1",
"iso": "ISO 400",
"temperature": "20°C",
"development_times": {
"35mm": "7:30",
"120": "7:30",
"sheet": "7:30"
}
}
]
}
]
}
Get detailed information about a specific film.
Parameter | Type | Description |
---|---|---|
name | string | Film name |
Parameter | Type | Description |
---|---|---|
includeNotes | boolean | Include development notes in the response |
{
"film_name": "HP5 Plus",
"source_url": "https://www.digitaltruth.com/devchart.php?Film=HP5%20Plus&Developer=&mdc=Search&TempUnits=C&TimeUnits=D",
"development_options": [
{
"developer": "D-76",
"dilution": "1:1",
"iso": "ISO 400",
"temperature": "20°C",
"development_times": {
"35mm": "7:30",
"120": "7:30",
"sheet": "7:30"
},
"notes": "Push processing recommended for low light conditions"
}
]
}
Get development times for each developer option for a specific film.
Parameter | Type | Description |
---|---|---|
name | string | Film name |
{
"film_name": "HP5 Plus",
"development_times": [
{
"developer": "D-76",
"dilution": "1:1",
"temperature": "20°C",
"times": {
"35mm": "7:30",
"120": "7:30",
"sheet": "7:30"
}
}
]
}
Get a list of all developers available for a specific film.
Parameter | Type | Description |
---|---|---|
name | string | Film name |
{
"film_name": "HP5 Plus",
"developers": [
"D-76",
"HC-110",
"Rodinal"
]
}
Get available ISO ratings for a specific film.
Parameter | Type | Description |
---|---|---|
name | string | Film name |
{
"film_name": "HP5 Plus",
"isos": [
"400",
"800",
"1600"
]
}
Get temperature-adjusted development times for a specific film.
Parameter | Type | Description |
---|---|---|
name | string | Film name |
temp | number | Target temperature (17-30°C) |
Parameter | Type | Description |
---|---|---|
developer | string | Filter by developer name |
dilution | string | Filter by dilution ratio |
iso | string | Filter by ISO rating |
{
"film_name": "HP5 Plus",
"temperature_adjustment": {
"base": "20°C",
"target": "24°C"
},
"development_options": [
{
"developer": "D-76",
"dilution": "1:1",
"iso": "ISO 400",
"base_temperature": "20°C",
"target_temperature": "24°C",
"times": {
"35mm": {
"base": "7:30",
"adjusted": "5:30"
},
"120": {
"base": "7:30",
"adjusted": "5:30"
},
"sheet": {
"base": "7:30",
"adjusted": "5:30"
}
}
}
]
}
Get all films available in a specific format.
Parameter | Type | Description |
---|---|---|
format | string | Film format (35mm, 120, or sheet) |
{
"format": "35mm",
"films_count": 2,
"films": [
{
"film_name": "HP5 Plus",
"source_url": "https://www.digitaltruth.com/devchart.php?Film=HP5%20Plus&Developer=&mdc=Search&TempUnits=C&TimeUnits=D"
},
{
"film_name": "Tri-X",
"source_url": "https://www.digitaltruth.com/devchart.php?Film=Tri-X&Developer=&mdc=Search&TempUnits=C&TimeUnits=D"
}
]
}
Get all available dilutions for a specific developer.
Parameter | Type | Description |
---|---|---|
name | string | Developer name |
{
"developer": "D-76",
"dilutions": [
"Stock",
"1:1",
"1:3"
]
}
Get all films compatible with a specific developer.
Parameter | Type | Description |
---|---|---|
name | string | Developer name |
Parameter | Type | Description |
---|---|---|
dilution | string | Filter by dilution ratio |
{
"developer": "D-76",
"dilution": "1:1",
"films_count": 1,
"films": [
{
"film_name": "HP5 Plus",
"source_url": "https://www.digitaltruth.com/devchart.php?Film=HP5%20Plus&Developer=&mdc=Search&TempUnits=C&TimeUnits=D",
"development_options": [
{
"dilution": "1:1",
"iso": "ISO 400",
"temperature": "20°C",
"times": {
"35mm": "7:30",
"120": "7:30",
"sheet": "7:30"
}
}
]
}
]
}
The API uses standard HTTP status codes and returns detailed error messages:
Status Code | Description |
---|---|
400 | Bad Request - Invalid parameters |
404 | Not Found - Resource doesn't exist |
500 | Internal Server Error |
{
"error": "Error type",
"message": "Human-readable error message",
"details": "Additional error context (optional)"
}
Type | Format | Example |
---|---|---|
Development Times | MM:SS | "5:30" |
Temperature | XX°C | "20°C" |
ISO | ISO XXX | "ISO 400" |
Unavailable Times | N/A | "N/A" |
To ensure API stability, please limit requests to:
The data is scraped from digitaltruth.com with a rate limit of 2 requests per second.